Commit 7d82ee51 authored by 黄奎's avatar 黄奎
parents 217ef038 04997986
......@@ -186,7 +186,7 @@
常用付款对象
<i class="iconfont icon-right1"></i>
</el-dropdown-item>
<el-dropdown-item class="clearfix _dropdown_other" @click.native="goUrlContract()">
<el-dropdown-item class="clearfix _dropdown_other" @click.native="goUrlContract()" v-if="qjGroupId==userInfo.RB_Group_id||F_ContractManagement">
<i class="iconfont icon-hetong" style="color:#f39c12"></i>
合同管理
<i class="iconfont icon-right1"></i>
......@@ -1401,6 +1401,8 @@ export default {
seeVotingBox: false,
//是否显示更多
isShowMore:true,
qjGroupId:-1,
F_ContractManagement:false, //合同权限
};
},
filters: {
......@@ -1717,7 +1719,7 @@ export default {
this.getMyDynamic();
this.getAboutMeDynamic();
this.getWebAllPart();
this.getNoticeList()
this.getNoticeList();
document
.getElementById("allDynamic")
.addEventListener("scroll", function() {
......@@ -1767,7 +1769,9 @@ export default {
this.app_user_workflow_MyAuditCount();
this.refreshSysNoteDate();
this.GetUserIsRead();
this.getNewSaleRnkInfo()
this.getNewSaleRnkInfo();
this.GetSupperOrderEditAuth();
},
created() {
if(!localStorage.getItem("tsNumber")||localStorage.getItem("tsNumber")!=this.tsNumber){
......@@ -1795,6 +1799,15 @@ export default {
}
},
methods: {
GetSupperOrderEditAuth() {
var actiionContract = this.$AuthCode.F_ContractManagement;
// 合同
this.CheckUserAuth(actiionContract, res => {
if (res.data.resultCode == 1 && res.data.data == 1) {
this.F_ContractManagement = true;
}
});
},
CloseTs(){
localStorage.setItem("tsNumber",this.tsNumber);
this.tsState=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