Commit 4905e5e5 by liuchenxi

update: 分组

parent f48b2e3f
......@@ -533,6 +533,9 @@ export default {
}
li:hover {
background-color: #EBEFFE;
span {
color: #2f54eb;
}
.icon {
color: #2f54eb;
}
......
......@@ -10,7 +10,7 @@
<div class="right-content">
<!-- 左边的会员分组 -->
<div class="left-box" v-show="activeType != 3 || !isNew">
<group-list :addGroupDialog.sync="addGroupDialog" :activeType="activeType" @getRecommend="getRecommend" @second-list="getsecondList"></group-list>
<group-list ref="groupList" :addGroupDialog.sync="addGroupDialog" :activeType="activeType" @getRecommend="getRecommend" @second-list="getsecondList"></group-list>
<div @click="addGroupDialog = true" :limit-code="$buttonCode.memberTagAddCateGory" v-if="$getButtonLimit($buttonCode.memberTagAddCateGory) && activeType != 3" class="add-category">
<el-button v-show="activeType == 1" type="primary" class="ghost-btn add-group">新增分类</el-button>
</div>
......@@ -818,6 +818,7 @@ export default {
(res.result || []).length || this.$message.success({
message: '删除成功'
});
this.$refs.groupList.getMemberGroupList();
this.getGroupList();
this.handleDelGroupMsg(res.result);
}
......@@ -1469,6 +1470,7 @@ export default {
(res.result || []).length || this.$message.success({
message: '删除成功'
});
this.$refs.groupList.getFixedMemberGroupList();
this.getGroupList();
this.handleDelGroupMsg(res.result);
}
......
......@@ -148,7 +148,7 @@
</el-radio-group>
</div>
<div :class="['form-item', 'm-t-10']" v-if="tagConfig.fixedType">
<label for="">固化生效时间{{ tagConfig.isRealTime }}</label>
<label for="">固化生效时间</label>
<el-date-picker
:clearable="false"
:picker-options="tagConfig.isRealTime ? realTimeOptions : fixedTimeOptions"
......
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