Commit 4ae89c6b by huaying

fix: 导出标签值按钮权限

parent b8bc0f33
......@@ -12,7 +12,7 @@
<i class="iconfont icon-shangc" />
导入多标签值会员
</el-button>
<el-button type="primary" class="ghost-btn" @click="importTagValue" :limit-code="$buttonCode.importTagValueBtnCode" v-if="$getButtonLimit($buttonCode.importTagValueBtnCode)" >
<el-button type="primary" class="ghost-btn" @click="importTagValue" :limit-code="getCode1" v-if="getCodeAuth1" >
<i class="iconfont icon-xiazai" />
导出标签值
</el-button>
......@@ -185,6 +185,14 @@ export default {
};
},
computed: {
getCodeAuth1() {
let code = "importTagValueBtnCode";
return this.$getButtonLimit(this.$buttonCode[code]);
},
getCode1() {
let code = "importTagValueBtnCode";
return this.$buttonCode[code];
},
getCodeAuth() {
let code = "memberTagImportMember";
return this.$getButtonLimit(this.$buttonCode[code]);
......
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