Commit 2e81cfca by chenyu

update: update

parent 958af1c0
......@@ -21,7 +21,7 @@
<script src="//web-1251519181.file.myqcloud.com/lib/elementUI/index2.15.1.js"></script>
<!-- 公共组件引用 cdn -->
<script src="//web-1251519181.file.myqcloud.com/components/track.1.0.4.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/header.2.0.58.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/header.2.0.59.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/footer.2.0.02.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/store-new.2.0.71.js"></script>
<!-- <script src="//web-1251519181.file.myqcloud.com/components/datepicker.2.0.00.js"></script> -->
......
......@@ -65,6 +65,14 @@ export const constantRouterMap = [
}
},
{
path: '/manualTagValueEditInfo',
component: _import('manualTag', 'manual-tag-value-edit-info'),
name: '标签值设置',
meta: {
title: '会员标签-会员标签详情'
}
},
{
path: '/syncTagHistory',
component: _import('manualTag', 'syncTagHistory'),
name: '同步标签',
......
......@@ -23,6 +23,9 @@
</div>
<!-- 初始状态和导入完成状态 -->
<template v-else>
<el-button type="text" size="small" class="m-r-20" @click="toTagDetail(scope.row)">
查看
</el-button>
<el-button type="text" size="small" class="m-r-20" :disabled="scope.row.status === 5" @click="showImportPop(scope.$index, scope.row)">
导入会员
</el-button>
......@@ -365,7 +368,10 @@ export default {
});
});
},
// 跳转会员标签人数详情页面
toTagDetail(row){
this.$router.push('/manualTagValueEditInfo')
},
// 显示导入会员的弹窗
showImportPop(index, row) {
// 状态为删除中,不可以导入会员
......
.table-header__handle {
&.cell {
position: absolute !important;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
padding-right: 0;
display: flex !important;
align-items: center;
justify-content: space-between;
.el-icon-setting {
display: flex;
justify-content: center;
align-items: center;
width: 60px;
height: 100%;
font-size: 20px;
color: #666;
cursor: pointer;
background: #eaeaea;
&:hover {
color: #000;
}
}
}
}
......@@ -2,7 +2,7 @@
<!-- 具体标签 -->
<div class="tag-some-list">
<el-table :data="tableData" style="width: 100%">
<el-table-column label="标签名称" prop="tagName" min-width="250">
<el-table-column label="标签名称" prop="tagName" min-width="150">
<template slot-scope="scope">
<span class="tag-name">{{ scope.row.tagName }}</span>
<!-- <el-tooltip class="item" effect="dark" :content="scope.row.refersh ? '更新标签' : '添加标签'" placement="bottom">-->
......@@ -12,12 +12,12 @@
</el-tooltip>
</template>
</el-table-column>
<el-table-column label="标签描述" prop="tagDescribe" min-width="300">
<el-table-column label="标签描述" prop="tagDescribe" min-width="150">
<template slot-scope="scope">
<div>{{ scope.row.tagDescribe ? scope.row.tagDescribe : '--' }}</div>
</template>
</el-table-column>
<el-table-column prop="memberCount" label="覆盖人数" min-width="400" show-overflow-tooltip v-if="handTag">
<el-table-column prop="memberCount" label="覆盖人数" min-width="200" show-overflow-tooltip v-if="handTag">
<template slot="header">
覆盖人数
<el-popover width="260" trigger="hover">
......@@ -29,7 +29,7 @@
</template>
<template slot-scope="scope">
{{ (scope.row.memberCount || 0) | formatNum }}
{{ scope.row.memberCount?(scope.row.memberCount | formatNum) +'人':null}}
</template>
</el-table-column>
<el-table-column label="是否实时" prop="isActive" min-width="150">
......
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