员工管理添加员工列表优惠券完善

This commit is contained in:
唐明明
2021-09-14 17:22:04 +08:00
parent f5e99ca292
commit 291ce57704
22 changed files with 7141 additions and 3586 deletions

View File

@@ -4,8 +4,8 @@
<view class="info-card">
<view class="cover">
<view class="cover-add vertical" @click="updCover">
<block v-if="cover != ''">
<image :src="cover" mode="aspectFill"></image>
<block v-if="cover.showpath != ''">
<image :src="cover.showpath" mode="aspectFill"></image>
</block>
<block v-else>
<image class="cover-default" src="@/static/icons/add-icon.png" mode="widthFix"></image>
@@ -64,7 +64,10 @@
permissions : [],
permissionIds: [],
sectionIndex : 0,
cover : '',
cover : {
showpath : '',
path : ''
},
name : '',
phone : '',
job : ''
@@ -94,7 +97,10 @@
uploads([{
uri : path.tempFilePaths[0]
}]).then(res => {
this.cover = res.url[0]
this.cover = {
showpath: res.url[0],
path : res.path[0]
}
}).catch(err => {
uni.showToast({
title: err.message,
@@ -110,16 +116,17 @@
name : this.name,
mobileNo : this.phone,
job : this.job,
cover : this.cover,
cover : this.cover.path,
position : 1,
order : 0,
store_id : this.section[this.sectionIndex].store_id,
permission : this.permissionIds
}).then(res => {
uni.showModal({
title : '提示',
content : res,
success : () => {
title : '提示',
content : res,
showCancel : false,
success : () => {
this.$Router.back()
}
})