Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
memberTag
memberTag-web
Commits
2e81cfca
Commit
2e81cfca
authored
Oct 12, 2021
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: update
parent
958af1c0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
6 deletions
+50
-6
index.html
index.html
+1
-1
index.js
src/router/index.js
+8
-0
manual-tag-value-edit-info.vue
src/view/manualTag/manual-tag-value-edit-info.vue
+0
-0
manual-tag-value-edit.vue
src/view/manualTag/manual-tag-value-edit.vue
+7
-1
memberGroupDetail.less
src/view/manualTag/memberGroupDetail.less
+30
-0
tag-container.vue
src/view/platformTag/tag-container.vue
+4
-4
No files found.
index.html
View file @
2e81cfca
...
...
@@ -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.5
8
.js"
></script>
<script
src=
"//web-1251519181.file.myqcloud.com/components/header.2.0.5
9
.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> -->
...
...
src/router/index.js
View file @
2e81cfca
...
...
@@ -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
:
'同步标签'
,
...
...
src/view/manualTag/manual-tag-value-edit-info.vue
0 → 100644
View file @
2e81cfca
This diff is collapsed.
Click to expand it.
src/view/manualTag/manual-tag-value-edit.vue
View file @
2e81cfca
...
...
@@ -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
)
{
// 状态为删除中,不可以导入会员
...
...
src/view/manualTag/memberGroupDetail.less
0 → 100644
View file @
2e81cfca
.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;
}
}
}
}
src/view/platformTag/tag-container.vue
View file @
2e81cfca
...
...
@@ -2,7 +2,7 @@
<!-- 具体标签 -->
<div
class=
"tag-some-list"
>
<el-table
:data=
"tableData"
style=
"width: 100%"
>
<el-table-column
label=
"标签名称"
prop=
"tagName"
min-width=
"
2
50"
>
<el-table-column
label=
"标签名称"
prop=
"tagName"
min-width=
"
1
50"
>
<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=
"
30
0"
>
<el-table-column
label=
"标签描述"
prop=
"tagDescribe"
min-width=
"
15
0"
>
<
template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
tagDescribe
?
scope
.
row
.
tagDescribe
:
'--'
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"memberCount"
label=
"覆盖人数"
min-width=
"
4
00"
show-overflow-tooltip
v-if=
"handTag"
>
<el-table-column
prop=
"memberCount"
label=
"覆盖人数"
min-width=
"
2
00"
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"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment