Commit 71e63128 by liuchenxi

update: 线上bug

parent 317a1073
......@@ -1672,7 +1672,7 @@ export default {
*/
getAsyncList(url, data) {
const para = {
key: this.tagData.tagType == 1 ? this.tagData.tagId : this.currentKey,
key: [1,2].includes(this.tagData.tagType) ? this.tagData.tagId : this.currentKey,
requestProject: 'gic-member-tag-web'
};
this.axios.post(`${this.baseUrl}${url}`, qs.stringify(para))
......
......@@ -181,6 +181,7 @@
</div>
<tag-container
:data="tagsGroupList"
resource="memberGroupEdit"
:refersh="refreshList"
@addTag="selectedTag"
style="height: 475px;overflow-y: auto;"
......
......@@ -64,7 +64,7 @@
<span v-else>--</span>
</template>
</el-table-column>
<el-table-column label="操作" v-if="(getCodeAuth('edit') || getCodeAuth('setValue') || getCodeAuth('delete'))" min-width="200" fixed="right">
<el-table-column label="操作" v-if="((getCodeAuth('edit') || getCodeAuth('setValue') || getCodeAuth('delete')) && resource != 'memberGroupEdit')" min-width="200" fixed="right">
<template slot-scope="scope">
<div class="font-0">
<el-button class="m-r-12" type="text" v-if="!isWeim && getCodeAuth('edit')" :limit-code="getCode('edit')" @click="editHandTag(scope.row)">编辑</el-button>
......@@ -100,7 +100,8 @@ export default {
},
groupId: String,
refersh: Object,
isWeim: Boolean
isWeim: Boolean,
resource: String
},
data() {
......
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