Commit 483c7801 authored by youjie's avatar youjie

no message

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