Commit 8088104c authored by youjie's avatar youjie

no message

parent 14a95bc4
......@@ -1831,7 +1831,6 @@
TemplateGetList: [],
AccList: [],
checkList: [],
checkListId: [],
checkAllList: [],
dateStart: "",
dateEnd: "",
......@@ -2037,7 +2036,6 @@
handleSelectionChange(val){
this.multipleSelection = []
this.checkList = []
this.checkListId = []
let type1 = {
type: null,
id: null,
......@@ -2052,8 +2050,7 @@
OrderSource: null
}
val.forEach(x=>{
this.checkList.push(x)
this.checkListId.push(x.FrID)
this.checkList.push(x.FrID)
if(x.Type==1){
type1 = {
type: String(x.Type),
......@@ -2073,6 +2070,7 @@
this.multipleSelection.push(JSON.parse(JSON.stringify(type2)))
}
})
console.log(this.multipleSelection.length,'----')
},
uploadFileInvoiceBtn(file) { //上传
if (file.file.size > 1024 * 1024 * 10) {
......@@ -2604,9 +2602,9 @@
},
subBOSSBtnClick: function () {
this.loading = true;
if (this.bossLen && this.bossLen <= this.checkListId.length) {
if (this.bossLen && this.bossLen <= this.checkList.length) {
this.BOSSDialogText = true;
this.AuditOrRefundMsg.WorkFlowId = this.checkListId[this.bossLen - 1];
this.AuditOrRefundMsg.WorkFlowId = this.checkList[this.bossLen - 1];
this.apipost(
"Financial_post_AuditOrRefund",
this.AuditOrRefundMsg,
......@@ -2618,7 +2616,8 @@
this.$message.error(res.data.message);
this.loading = false;
this.checkList = [];
this.checkListId = []
this.multipleSelection = []
this.toggleSelection()
this.getPageList(1);
this.BOSSDialogText = false;
}
......@@ -2930,6 +2929,7 @@
"Financial_post_GetPageList",
this.msg,
res => {
this.toggleSelection()
if (this.msg.Conditon == 7) {
this.getMyRejectFinanceCount();
}
......
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