凭证附件

main
JiilingLee 1 year ago
parent cfac8fb041
commit 2c8182be2a

@ -253,7 +253,6 @@ export default {
title: "", title: "",
// //
open: false, open: false,
fileList: [],
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
@ -408,6 +407,7 @@ export default {
}, },
// //
handleSelectVoucher(val) { handleSelectVoucher(val) {
this.$refs.VoucherSelect.showFlag = true;
this.form.voucherId = val.id; this.form.voucherId = val.id;
this.form.voucherNum = val.voucherNum; this.form.voucherNum = val.voucherNum;
}, },
@ -466,13 +466,11 @@ export default {
}) })
.catch(() => {}); .catch(() => {});
}, },
handleSelectVoucher() {
this.$refs.VoucherSelect.showFlag = true;
},
onVoucherSelected(obj) { onVoucherSelected(obj) {
console.log(obj); console.log(obj);
if (obj != undefined && obj != null) { if (obj != undefined && obj != null) {
this.form.voucherNum = obj.voucherNum; this.form.voucherNum = obj.voucherNum;
this.form.voucherId = obj.id;
} }
}, },
}, },

Loading…
Cancel
Save