Commit 14a95bc4 authored by youjie's avatar youjie

审核

parent 0cf6e48a
...@@ -1831,6 +1831,7 @@ ...@@ -1831,6 +1831,7 @@
TemplateGetList: [], TemplateGetList: [],
AccList: [], AccList: [],
checkList: [], checkList: [],
checkListId: [],
checkAllList: [], checkAllList: [],
dateStart: "", dateStart: "",
dateEnd: "", dateEnd: "",
...@@ -2036,6 +2037,7 @@ ...@@ -2036,6 +2037,7 @@
handleSelectionChange(val){ handleSelectionChange(val){
this.multipleSelection = [] this.multipleSelection = []
this.checkList = [] this.checkList = []
this.checkListId = []
let type1 = { let type1 = {
type: null, type: null,
id: null, id: null,
...@@ -2051,6 +2053,7 @@ ...@@ -2051,6 +2053,7 @@
} }
val.forEach(x=>{ val.forEach(x=>{
this.checkList.push(x) this.checkList.push(x)
this.checkListId.push(x.FrID)
if(x.Type==1){ if(x.Type==1){
type1 = { type1 = {
type: String(x.Type), type: String(x.Type),
...@@ -2601,9 +2604,9 @@ ...@@ -2601,9 +2604,9 @@
}, },
subBOSSBtnClick: function () { subBOSSBtnClick: function () {
this.loading = true; this.loading = true;
if (this.bossLen && this.bossLen <= this.checkList.length) { if (this.bossLen && this.bossLen <= this.checkListId.length) {
this.BOSSDialogText = true; this.BOSSDialogText = true;
this.AuditOrRefundMsg.WorkFlowId = this.checkList[this.bossLen - 1]; this.AuditOrRefundMsg.WorkFlowId = this.checkListId[this.bossLen - 1];
this.apipost( this.apipost(
"Financial_post_AuditOrRefund", "Financial_post_AuditOrRefund",
this.AuditOrRefundMsg, this.AuditOrRefundMsg,
...@@ -2615,6 +2618,7 @@ ...@@ -2615,6 +2618,7 @@
this.$message.error(res.data.message); this.$message.error(res.data.message);
this.loading = false; this.loading = false;
this.checkList = []; this.checkList = [];
this.checkListId = []
this.getPageList(1); this.getPageList(1);
this.BOSSDialogText = false; this.BOSSDialogText = false;
} }
......
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