|
@@ -171,8 +171,15 @@
|
|
<div class="upLoad">
|
|
<div class="upLoad">
|
|
<el-upload class="avatar-uploader" action="https://www.zthymaoyi.com/upload/admin" :show-file-list="false"
|
|
<el-upload class="avatar-uploader" action="https://www.zthymaoyi.com/upload/admin" :show-file-list="false"
|
|
:on-success="handleAvatarSuccess">
|
|
:on-success="handleAvatarSuccess">
|
|
- <img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
|
|
|
+
|
|
|
|
+ <div v-if='imageUrl.length>0'>
|
|
|
|
+ <div style='display:inline-block;' v-for='item in imageUrl'>
|
|
|
|
+ <img :src="item" class="avatar" />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <i class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
|
+
|
|
|
|
+
|
|
</el-upload>
|
|
</el-upload>
|
|
</div>
|
|
</div>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
@@ -199,8 +206,14 @@
|
|
<div class="upLoad">
|
|
<div class="upLoad">
|
|
<el-upload class="avatar-uploader" action="https://www.zthymaoyi.com/upload/admin" :show-file-list="false"
|
|
<el-upload class="avatar-uploader" action="https://www.zthymaoyi.com/upload/admin" :show-file-list="false"
|
|
:on-success="handleAvatarSuccess">
|
|
:on-success="handleAvatarSuccess">
|
|
- <img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
|
|
|
+ <!-- <img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
|
|
+ <i v-else class="el-icon-plus avatar-uploader-icon"></i> -->
|
|
|
|
+ <div v-if='imageUrl.length>0'>
|
|
|
|
+ <div style='display:inline-block;' v-for='item in imageUrl'>
|
|
|
|
+ <img :src="item" class="avatar" />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <i class="el-icon-plus avatar-uploader-icon"></i>
|
|
</el-upload>
|
|
</el-upload>
|
|
</div>
|
|
</div>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
@@ -448,7 +461,7 @@
|
|
showPayImgs: false,
|
|
showPayImgs: false,
|
|
isShowAdopt: false,
|
|
isShowAdopt: false,
|
|
//上传截图路径
|
|
//上传截图路径
|
|
- imageUrl: '',
|
|
|
|
|
|
+ imageUrl:[],
|
|
payImg: [],
|
|
payImg: [],
|
|
rowData: {},
|
|
rowData: {},
|
|
value2: [],
|
|
value2: [],
|
|
@@ -551,6 +564,7 @@
|
|
message: '导入成功!'
|
|
message: '导入成功!'
|
|
})
|
|
})
|
|
this.selectCollectionWarehousingRecordPage()
|
|
this.selectCollectionWarehousingRecordPage()
|
|
|
|
+ this.getList()
|
|
// debugger
|
|
// debugger
|
|
// if (response.length != 0) {
|
|
// if (response.length != 0) {
|
|
// const h = this.$createElement;
|
|
// const h = this.$createElement;
|
|
@@ -982,7 +996,7 @@
|
|
editCollectionWarehousingRecord(this.customerObj)
|
|
editCollectionWarehousingRecord(this.customerObj)
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
- debugger
|
|
|
|
|
|
+ // debugger
|
|
this.$message({
|
|
this.$message({
|
|
message: '编辑成功!',
|
|
message: '编辑成功!',
|
|
type: 'success',
|
|
type: 'success',
|
|
@@ -1031,7 +1045,7 @@
|
|
|
|
|
|
//上传付款截图
|
|
//上传付款截图
|
|
handleAvatarSuccess(e) {
|
|
handleAvatarSuccess(e) {
|
|
- this.imageUrl = e.url
|
|
|
|
|
|
+ this.imageUrl.push(e.url)
|
|
},
|
|
},
|
|
printBig() {
|
|
printBig() {
|
|
let _list2 = []
|
|
let _list2 = []
|
|
@@ -1067,7 +1081,7 @@
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
this.recordList = response.records
|
|
this.recordList = response.records
|
|
- // this.deptBudgetTotal = response.total
|
|
|
|
|
|
+ this.deptBudgetTotal = response.total
|
|
})
|
|
})
|
|
// getJurisdiction({
|
|
// getJurisdiction({
|
|
// managementType: 1,
|
|
// managementType: 1,
|
|
@@ -1144,7 +1158,7 @@
|
|
collectionWarehousingRecordList: this.modification,
|
|
collectionWarehousingRecordList: this.modification,
|
|
money: this.collectionments.money,
|
|
money: this.collectionments.money,
|
|
collectionDate: this.collectionments.collectionDate,
|
|
collectionDate: this.collectionments.collectionDate,
|
|
- collectionScreenshot: this.imageUrl,
|
|
|
|
|
|
+ collectionScreenshot: this.imageUrl.toString(),
|
|
})
|
|
})
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
@@ -1153,6 +1167,7 @@
|
|
this.collectionDate = ''
|
|
this.collectionDate = ''
|
|
this.collectionScreenshot = ''
|
|
this.collectionScreenshot = ''
|
|
this.collectForm = false
|
|
this.collectForm = false
|
|
|
|
+ this.imageUrl=[]
|
|
this.getList()
|
|
this.getList()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
@@ -1223,7 +1238,7 @@
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- this.payments.paymentScreenshot = this.imageUrl
|
|
|
|
|
|
+ this.payments.paymentScreenshot = this.imageUrl.toString()
|
|
delete this.payments.amountNotPayable
|
|
delete this.payments.amountNotPayable
|
|
// this.payments.cashier = localStorage.getItem('ws-pf_staffName')
|
|
// this.payments.cashier = localStorage.getItem('ws-pf_staffName')
|
|
this.payments.collectionWarehousingRecordList = this.modification
|
|
this.payments.collectionWarehousingRecordList = this.modification
|
|
@@ -1241,6 +1256,7 @@
|
|
title: '成功',
|
|
title: '成功',
|
|
message: '付款成功',
|
|
message: '付款成功',
|
|
})
|
|
})
|
|
|
|
+ this.imageUrl=[]
|
|
this.paymentForm = false
|
|
this.paymentForm = false
|
|
this.getList()
|
|
this.getList()
|
|
})
|
|
})
|
|
@@ -1494,7 +1510,7 @@
|
|
height: 178px;
|
|
height: 178px;
|
|
border: 1px solid #8890b1;
|
|
border: 1px solid #8890b1;
|
|
border-radius: 5px;
|
|
border-radius: 5px;
|
|
- display: block;
|
|
|
|
|
|
+ display: inline-block;
|
|
}
|
|
}
|
|
|
|
|
|
.pay_img {
|
|
.pay_img {
|