Commit dd9a6767 by liuchenxi

update: bug修复

parent d999b9ae
......@@ -88,6 +88,6 @@ export function toTaskCenter(taskId) {
customClass: 'import-link-confirm-content',
type: 'warning'
}).then(() => {
window.open(`http://gicdev.demogic.com/gic-web/#/taskDetail/${taskId}`);
window.open(`/gic-web/#/taskDetail/${taskId}`);
}).catch(() => true);
}
......@@ -9,6 +9,9 @@
<!-- <el-collapseTransition> -->
<!--我的会员分组-->
<ul class="lists" v-show="activeType == '1'">
<li @click="addGroupDialog = true" :limit-code="$buttonCode.memberTagAddCateGory" v-if="$getButtonLimit($buttonCode.memberTagAddCateGory)" style="margin-bottom: 10px">
<el-button type="primary" class="ghost-btn add-group">新增分类</el-button>
</li>
<li v-for="(list, i) in lists" :key="i" :class="['member-list', { 'active-li': i == currentIndex }]" @click="handleChangeIndex(i, list)">
<div>
<i class="iconfont icon-kehufenzu icon"></i>
......@@ -21,9 +24,6 @@
<i slot="reference" class="iconfont icon-gengduo icon"></i>
</el-popover>
</li>
<li @click="addGroupDialog = true" :limit-code="$buttonCode.memberTagAddCateGory" v-if="$getButtonLimit($buttonCode.memberTagAddCateGory)" style="margin-top:10px">
<el-button type="primary" class="ghost-btn add-group">新增分类</el-button>
</li>
</ul>
<!-- </el-collapseTransition> -->
......
......@@ -1479,6 +1479,7 @@ export default {
align-items: stretch;
.left-box {
flex-shrink: 0;
height: 100%;
width: 200px;
background-color: #fff;
border-right: 1px solid rgba(220,223,230,1);
......
......@@ -781,8 +781,11 @@ export default {
},
getShowSystem() {
return isShowSystemTag().then(res => {
this.isShowSystem = res.result;
if(!res.result) this.activeTag='manual';
this.isShowSystem = 0;
if(!res.result) {
this.activeTag='manual';
this.handTag = 1;
};
})
}
},
......
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