Commit 483c7801 authored by youjie's avatar youjie

no message

parent fe926973
......@@ -273,7 +273,7 @@
</el-col>
<el-col :span="4">
<el-form-item label="出团公司:">
<el-select filterable v-model='msg.RB_Branch_Id' class="">
<el-select filterable v-model='msg.RB_Branch_Id' class="" :disabled="!isF_Query_AllIncomPay">
<el-option :value="-1" label="不限"></el-option>
<el-option v-for='item in CompanyList'
:label='item.BName'
......@@ -504,7 +504,7 @@ export default {
pageSize:5,
TCID: '',
TCNUM: '',
RB_Branch_Id: '',
RB_Branch_Id: -1,
QStartDate: '',
QEndDate: '',
ReTCID: 0,// 跨天数 (默认0天)
......@@ -567,7 +567,8 @@ export default {
trigger: "blur"
}],
},
coinGetList:[]
coinGetList:[],
isF_Query_AllIncomPay: false
}
},
created(){
......@@ -576,6 +577,12 @@ export default {
},
mounted(){
let userInfo=this.getLocalStorage();
let ActionMenuCode = userInfo.ActionMenuCode;
if (ActionMenuCode.indexOf('F_Query_AllIncomPay') != -1){
this.isF_Query_AllIncomPay = true
}else{
this.msg.RB_Branch_Id= Number(userInfo.RB_Branch_id);
}
this.getCompanyMsg.RB_Group_Id= userInfo.RB_Group_id; //集团ID
this.financeinfo_post_GetList()
this.getCompanyList();
......
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