子公司不能添加司机

This commit is contained in:
2023-08-24 10:53:22 +08:00
parent a4ab5eb55c
commit bb73bd7847
8 changed files with 31 additions and 16 deletions

View File

@ -203,15 +203,14 @@
<div style="display: flex;margin-bottom: 5px">
<img v-for="(item,index) in supplierPhotoList" :key="index" class="supplierImg" :src="item.url" @click="delSupplierPhoto(item)">
</div>
<div style="display: flex">
<div style="display: flex" >
<van-uploader
v-model="files"
:after-read="handleFileRead"
multiple
:preview-size="54"
accept="image"
capture="camera"
accept="image "
/>
</div>
</td>
@ -361,8 +360,8 @@ export default {
},
},
methods:{
handleFileRead() {
// console.log("file",file)
handleFileRead(file) {
console.log("file",file)
},
goback(){
this.$router.push({
@ -536,6 +535,7 @@ export default {
let res = await updateAccountRecordInfo( {
...this.form,
accountStatus: accountStatus,
postfix:this.postfix,
supplierBridgeAmount:parseInt(this.form.supplierBridgeAmountAb || 0) + parseInt(this.form.supplierBridgeAmountBc || 0) + parseInt(this.form.supplierBridgeAmountCa || 0)
});
const formData = new FormData();