Commit f76e2823 authored by liudong1993's avatar liudong1993

账户统计增加查询项

parent 4e6fbc2d
...@@ -104,6 +104,14 @@ ...@@ -104,6 +104,14 @@
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" :gutter="35">
<el-form-item label="费用类型">
<el-select filterable v-model='msg.CostTypeID' >
<el-option :value="0" label="不限"></el-option>
<el-option v-for="item in GetCostTypeList" :key="item.ID" :value="item.ID" :label="item.Name"></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
<ul> <ul>
...@@ -330,6 +338,7 @@ export default { ...@@ -330,6 +338,7 @@ export default {
pageIndex:1, pageIndex:1,
pageSize:5, pageSize:5,
ClientID:'', ClientID:'',
CostTypeID:0,
sTradeDate:'', sTradeDate:'',
eTradeDate:'', eTradeDate:'',
QStartDate:'', QStartDate:'',
...@@ -348,6 +357,7 @@ export default { ...@@ -348,6 +357,7 @@ export default {
productionDate:[], productionDate:[],
productionDateByTC:[], productionDateByTC:[],
ClientAccountList:[], ClientAccountList:[],
GetCostTypeList:[],
loading:false, loading:false,
date:'', date:'',
accType:'', accType:'',
...@@ -829,12 +839,22 @@ export default { ...@@ -829,12 +839,22 @@ export default {
// this.listAllMoney = this.listAllMoney + x.allMoney // this.listAllMoney = this.listAllMoney + x.allMoney
// }) // })
}, },
financeinfo_post_GetCostTypeList(){ // 费用类型
this.apipost('financeinfo_post_GetCostTypeList',{Name:'',type:0,DepartIDs:this.DepartIDs},res=>{
if(res.data.resultCode==1){
this.GetCostTypeList = res.data.data;
}else{
}
},err=>{})
},
},mounted(){ },mounted(){
let userInfo=this.getLocalStorage(); let userInfo=this.getLocalStorage();
this.getAccountTypeList(); this.getAccountTypeList();
this.AccountType_post_GetList(); this.AccountType_post_GetList();
this.BankAccount_post_GetAccountType(); this.BankAccount_post_GetAccountType();
this.financeinfo_post_GetClientAccountList(); this.financeinfo_post_GetClientAccountList();
this.financeinfo_post_GetCostTypeList();
} }
} }
</script> </script>
\ No newline at end of file
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