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
2f0af57b
Commit
2f0af57b
authored
Nov 20, 2018
by
xiaohai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue fix
parent
c804b686
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
85 additions
and
40 deletions
+85
-40
manualTagLib.vue
src/view/manualTag/manualTagLib.vue
+4
-0
manualTagList.vue
src/view/manualTag/manualTagList.vue
+5
-1
memberGroupDetail.vue
src/view/memberGroup/memberGroupDetail.vue
+6
-3
memberGroupEdit.vue
src/view/memberGroup/memberGroupEdit.vue
+20
-15
memberGroupList.vue
src/view/memberGroup/memberGroupList.vue
+6
-3
myTagDetail.vue
src/view/myTag/myTagDetail.vue
+26
-16
myTagLib.vue
src/view/myTag/myTagLib.vue
+4
-0
myTagList.vue
src/view/myTag/myTagList.vue
+4
-0
platformTagLib.vue
src/view/platformTag/platformTagLib.vue
+5
-1
platformTagList.vue
src/view/platformTag/platformTagList.vue
+5
-1
No files found.
src/view/manualTag/manualTagLib.vue
View file @
2f0af57b
...
...
@@ -25,6 +25,10 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
...
...
src/view/manualTag/manualTagList.vue
View file @
2f0af57b
...
...
@@ -53,7 +53,7 @@
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<router-link
:to=
"
{path:'/myTagDetail',query:{tagId:scope.row.tagId,addFlag:scope.row.isAdd,form:'notMyTag'}}" class="edit-btn el-button--text">详情
</router-link>
<router-link
:to=
"
{path:'/myTagDetail',query:{tagId:scope.row.tagId,addFlag:scope.row.isAdd,form:'notMyTag'
,navSign: 'manualTag'
}}" class="edit-btn el-button--text">详情
</router-link>
<router-link
:to=
"
{path:'/manualTagEdit',query:{tagId:scope.row.tagId}}" class="edit-btn el-button--text p-l-20">编辑
</router-link>
<el-button
type=
"text"
...
...
@@ -177,6 +177,10 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
...
...
src/view/memberGroup/memberGroupDetail.vue
View file @
2f0af57b
...
...
@@ -253,13 +253,17 @@
navpath
:
[
{
name
:
'首页'
,
path
:
''
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员
标签
'
,
name
:
'会员
管理
'
,
path
:
''
},
{
name
:
"会员分组"
,
path
:
'/memberGroupList'
},
{
name
:
'会员分组详情'
,
path
:
''
}
...
...
@@ -592,7 +596,6 @@
width
:
calc
(
100%
-
60px
);
white-space
:
pre-wrap
;
word-break
:
break-word
;
vertical-align
:
top
;
}
.tag-cell
{
...
...
src/view/memberGroup/memberGroupEdit.vue
View file @
2f0af57b
...
...
@@ -130,21 +130,6 @@
}
};
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'会员分组编辑'
,
path
:
''
}
],
// 编辑数据
ruleForm
:
{
...
...
@@ -227,6 +212,26 @@
}
},
computed
:
{
// 面包屑参数
navpath
()
{
let
memberTagGroupId
=
this
.
$route
.
query
.
memberTagGroupId
;
return
[
{
name
:
'首页'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
memberTagGroupId
?
'会员分组编辑'
:
'新增会员分组'
,
path
:
''
}
];
}
},
methods
:
{
/**
* 路由跳转
...
...
src/view/memberGroup/memberGroupList.vue
View file @
2f0af57b
...
...
@@ -17,7 +17,7 @@
v-model=
"statusSelect"
@
change=
"searchByStatus"
placeholder=
"请选择"
class=
"w-220"
>
class=
"w-220
m-l-20
"
>
<el-option
:key=
"0"
label=
"失效"
...
...
@@ -196,12 +196,15 @@
path
:
''
},
{
name
:
'会员
标签
'
,
name
:
'会员
管理
'
,
path
:
''
},
{
name
:
'会员分组
列表
'
,
name
:
'会员分组'
,
path
:
''
},
{
name
:
'会员分组详情'
}
],
...
...
src/view/myTag/myTagDetail.vue
View file @
2f0af57b
...
...
@@ -498,22 +498,6 @@ import qs from 'qs';
name
:
"myTagDetail"
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'标签详情'
,
path
:
''
}
],
tagId
:
''
,
// 获取当前标签的 id
tagFlag
:
false
,
// 判断是否添加暂存架还是添加我的标签库的标志,true: 暂存库,false: 我的标签
addFlag
:
false
,
// 是否添加到我的标签库
...
...
@@ -748,6 +732,32 @@ import qs from 'qs';
baseUrl
:
''
,
// url
}
},
computed
:
{
// 面包屑参数
navpath
(){
let
navSign
=
this
.
$route
.
query
.
navSign
;
let
obj
=
navSign
==
'platformTag'
?
{
name
:
'平台标签列表'
,
path
:
'/platformTagList'
}
:
navSign
==
'manualTag'
?
{
name
:
'手工标签列表'
,
path
:
'/manualTagList'
}
:
{
name
:
'我的标签列表'
,
path
:
'/myTagList'
};
return
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
obj
,
{
name
:
'标签详情'
,
path
:
''
}
];
}
},
beforeMount
()
{
var
that
=
this
;
var
host
=
window
.
location
.
origin
;
...
...
src/view/myTag/myTagLib.vue
View file @
2f0af57b
...
...
@@ -25,6 +25,10 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
...
...
src/view/myTag/myTagList.vue
View file @
2f0af57b
...
...
@@ -113,6 +113,10 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
...
...
src/view/platformTag/platformTagLib.vue
View file @
2f0af57b
...
...
@@ -65,13 +65,17 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
{
name
:
'平台标签库'
,
path
:
''
}
...
...
src/view/platformTag/platformTagList.vue
View file @
2f0af57b
...
...
@@ -51,7 +51,7 @@
<el-table-column
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<router-link
:to=
"
{path:'/myTagDetail',query:{tagId:scope.row.tagId,addFlag:scope.row.isAdd,form:'notMyTag'}}" class="edit-btn el-button--text">详情
</router-link>
<router-link
:to=
"
{path:'/myTagDetail',query:{tagId:scope.row.tagId,addFlag:scope.row.isAdd,form:'notMyTag'
,navSign: 'platformTag'
}}" class="edit-btn el-button--text">详情
</router-link>
<el-button
type=
"text"
size=
"small"
...
...
@@ -98,6 +98,10 @@
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
origin
}
/report/#/memberSummary`
},
{
name
:
'会员管理'
,
path
:
''
},
{
...
...
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