Commit 14a95bc4 authored by youjie's avatar youjie

审核

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