Commit d76d585e authored by zhengke's avatar zhengke

增加过滤审批项

parent 969355f7
......@@ -1006,7 +1006,7 @@ export default {
this.loading= true
this.checkAllList =[];
this.checkList = [];
if (t) {
if (t&&this.BOSSBtn) {
this.msg.pageSize = 1000;
} else {
this.msg.pageSize = 6;
......@@ -1033,7 +1033,19 @@ export default {
if(!this.msg.AccountType)this.msg.AccountType=0;
this.apipost('Financial_post_GetPageList',this.msg,res=>{
if(res.data.resultCode == 1) {
let data = res.data.data.pageData;
let data = [];
if(t==1&&this.BOSSBtn&&this.msg.Conditon==3){
let dataList = res.data.data.pageData;
let newData = [];
dataList.forEach(x=>{
if(x.IsBatchAudit==0){
newData.push(x);
}
})
data = newData;
}else{
data = res.data.data.pageData;
}
this.total = res.data.data.count;
if(this.total==0){
this.DataList=[];
......
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