Commit 22e7fce1 authored by 黄奎's avatar 黄奎

11

parent ef12e58c
...@@ -1626,10 +1626,14 @@ ...@@ -1626,10 +1626,14 @@
methods: { methods: {
//删除账单附件 //删除账单附件
DeleteOfferBill(offerBillArray, index) { DeleteOfferBill(offerBillArray, index) {
var that = this;
if (offerBillArray && offerBillArray.length > 0) { if (offerBillArray && offerBillArray.length > 0) {
offerBillArray.splice(index, 1); var tipMsg = "是否要删除此附件?";
that.Confirm(tipMsg, function () {
offerBillArray.splice(index, 1);
that.SaveOfferBill(offerBillArray);
});
} }
this.SaveOfferBill(offerBillArray);
}, },
UploadAttachment(file) { //上传 UploadAttachment(file) { //上传
var that = this; var that = this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment