flat: 暂存

This commit is contained in:
Apcallover
2024-05-16 17:12:34 +08:00
parent 0113864d1c
commit 73e8bd5bb6
4 changed files with 13 additions and 0 deletions

View File

@@ -14,6 +14,14 @@ import {
import website from "@/config/website.js" import website from "@/config/website.js"
export async function uploadFile(file) { export async function uploadFile(file) {
if (file.size > 20971520) {
uni.showToast({
title: '图片过大,应该小于20m',
duration: 1000,
icon: 'none',
})
return
}
uni.showLoading({ uni.showLoading({
title: '上传中' title: '上传中'
}) })

View File

@@ -4730,6 +4730,7 @@ const experience = {
"10年以上": "10年以上", "10年以上": "10年以上",
}; };
const laborType = [ const laborType = [
"正常求职人员",
"农村劳动力", "农村劳动力",
"失业登记人员", "失业登记人员",
"就业困难人员", "就业困难人员",

View File

@@ -31,6 +31,9 @@
<view class="list_text"> <view class="list_text">
{{ item.worktypes }}{{ item.skills }} {{ item.worktypes }}{{ item.skills }}
</view> </view>
<view>
<image src="../../../static/img/left_right.png" mode=""></image>
</view>
</view> </view>
</m-slide-list> </m-slide-list>
</view> </view>
@@ -486,6 +489,7 @@
border-bottom: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between;
} }
.title image { .title image {

BIN
static/img/left_right.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB