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
6a94a463
Commit
6a94a463
authored
Mar 17, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 去除面包屑
parent
5b886de2
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1 additions
and
293 deletions
+1
-293
manualTagDetail.vue
src/view/manualTag/manualTagDetail.vue
+0
-3
manualTagLib.vue
src/view/manualTag/manualTagLib.vue
+0
-28
manualTagList.vue
src/view/manualTag/manualTagList.vue
+0
-28
syncTagHistory.vue
src/view/manualTag/syncTagHistory.vue
+0
-5
member-group-log.vue
src/view/memberGroup/member-group-log.vue
+1
-23
memberLevelDetail.vue
src/view/memberGroup/memberLevelDetail.vue
+0
-25
myTagDetail.vue
src/view/platformTag/myTag/myTagDetail.vue
+0
-35
myTagLib.vue
src/view/platformTag/myTag/myTagLib.vue
+0
-23
myTagList.vue
src/view/platformTag/myTag/myTagList.vue
+0
-28
platformTagDetail.vue
src/view/platformTag/platformTagDetail.vue
+0
-34
platformTagLib.vue
src/view/platformTag/platformTagLib.vue
+0
-33
platformTagList.vue
src/view/platformTag/platformTagList.vue
+0
-28
No files found.
src/view/manualTag/manualTagDetail.vue
View file @
6a94a463
<
template
>
<div
class=
"myTagDetail-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"checkboxOption-wrap"
>
...
...
@@ -593,7 +592,6 @@
<
script
>
/* eslint-disable */
import
qs
from
'qs'
;
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
checkboxOption
from
'@/components/tags/checkboxOption.vue'
;
import
tagTemporary
from
'@/components/tagTemporary.vue'
;
import
tagShortDetail
from
'@/components/tagShortDetail.vue'
;
...
...
@@ -2463,7 +2461,6 @@ export default {
that
.
addFlag
=
!!
that
.
$route
.
query
.
addFlag
?
true
:
false
;
},
components
:
{
navCrumb
,
checkboxOption
,
tagShortDetail
,
tagTemporary
...
...
src/view/manualTag/manualTagLib.vue
View file @
6a94a463
<
template
>
<div
class=
"manualTagLib-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<tag-lib
:tagCategory=
"tagCategory"
></tag-lib>
...
...
@@ -11,7 +10,6 @@
</
template
>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagLib
from
'@/components/tagLib.vue'
;
import
strLength
from
'@/common/js/strlen'
;
import
showMsg
from
'@/common/js/showmsg'
;
...
...
@@ -22,36 +20,10 @@ export default {
name
:
'manualTagLib'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'手工标签库'
,
path
:
''
}
],
tagCategory
:
'manualTagList'
// 当前标签类别
};
},
/* eslint-disable */
methods
:
{},
mounted
()
{},
components
:
{
navCrumb
,
tagLib
}
};
...
...
src/view/manualTag/manualTagList.vue
View file @
6a94a463
<
template
>
<div
class=
"manualTagList-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<!-- 子类 -->
...
...
@@ -144,7 +143,6 @@
</template>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagCategory
from
'@/components/tagCategory.vue'
;
import
strLength
from
'@/common/js/strlen'
;
import
showMsg
from
'@/common/js/showmsg'
;
...
...
@@ -155,31 +153,6 @@ export default {
name
:
'manualTagList'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'手工标签库'
,
path
:
'/manualTagLib'
},
{
name
:
'手工标签列表'
,
path
:
''
}
],
tagLibName
:
'manualTag'
,
// 面包屑分类需要的参数
tagSearch
:
''
,
// 搜索值绑定的参数
...
...
@@ -808,7 +781,6 @@ export default {
that
.
getUrlParams
();
},
components
:
{
navCrumb
,
tagCategory
}
};
...
...
src/view/manualTag/syncTagHistory.vue
View file @
6a94a463
<
template
>
<div
class=
"common-wrap syncTag"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
v-loading=
"loading"
>
<div
class=
"right-box"
>
<div
class=
"title"
>
...
...
@@ -72,7 +71,6 @@
</template>
<
script
>
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
{
dateformat
}
from
'@/utils/formatTime'
;
import
{
getSyncTag
,
updateSyncTag
}
from
'@/request/api'
;
export
default
{
...
...
@@ -117,9 +115,6 @@ export default {
}
};
},
components
:
{
navCrumb
},
mounted
()
{
this
.
getTableData
();
},
...
...
src/view/memberGroup/member-group-log.vue
View file @
6a94a463
<
template
>
<div
class=
"member-group-log"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"member-group-log__content"
>
<div
class=
"font-0"
>
<el-input
class=
"w-220 m-r-8"
placeholder=
"请输入内容"
prefix-icon=
"el-icon-search"
v-model=
"searchKey"
clearable
@
clear=
"clearSearch"
@
keyup
.
enter
.
native=
"onSearch"
/>
...
...
@@ -54,11 +53,9 @@
</template>
<
script
>
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
{
dateformat
}
from
'@/utils/formatTime'
export
default
{
name
:
'member-group-log'
,
components
:
{
navCrumb
},
data
()
{
return
{
searchKey
:
''
,
...
...
@@ -67,26 +64,7 @@ export default {
total
:
0
,
pageSize
:
20
,
currentPage
:
1
,
loading
:
false
,
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员分组'
,
path
:
'/memberGroupList'
},
{
name
:
'分组操作日志'
,
path
:
''
}
]
loading
:
false
};
},
filters
:
{
...
...
src/view/memberGroup/memberLevelDetail.vue
View file @
6a94a463
<
template
>
<div
class=
"memberGroupDetail-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"memberGroupDetail-wrap__info m-b-20"
>
...
...
@@ -305,7 +304,6 @@
</template>
<
script
>
import
'./memberGroupDetail.less'
;
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
userDefined
from
'@/components/userDefined.vue'
;
// import selectedTagsList from '@/components/selected-tags-list.vue';
import
errMsg
from
'@/common/js/error'
;
...
...
@@ -372,28 +370,6 @@ export default {
};
},
computed
:
{
// 面包屑参数
navpath
()
{
return
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员分组'
,
path
:
'/memberGroupList'
},
{
name
:
'会员分层详情'
,
path
:
''
}
];
},
tips
()
{
let
name
=
this
.
$route
.
query
.
aliasName
;
let
item
=
aliasNames
.
find
(
el
=>
el
.
name
===
name
);
...
...
@@ -710,7 +686,6 @@ export default {
document
.
getElementById
(
'app'
).
style
.
zIndex
=
'auto'
;
},
components
:
{
navCrumb
,
userDefined
}
};
...
...
src/view/platformTag/myTag/myTagDetail.vue
View file @
6a94a463
<
template
>
<div
class=
"myTagDetail-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"checkboxOption-wrap"
>
...
...
@@ -579,7 +578,6 @@
<
script
>
/* eslint-disable */
import
qs
from
'qs'
;
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
checkboxOption
from
'@/components/tags/checkboxOption.vue'
;
import
tagTemporary
from
'@/components/tagTemporary.vue'
;
import
tagShortDetail
from
'@/components/tagShortDetail.vue'
;
...
...
@@ -788,38 +786,6 @@ export default {
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
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
obj
,
{
name
:
'标签详情'
,
path
:
''
}
];
}
},
beforeMount
()
{
const
that
=
this
;
let
host
=
window
.
location
.
origin
;
...
...
@@ -1237,7 +1203,6 @@ export default {
that
.
addFlag
=
!!
that
.
$route
.
query
.
addFlag
?
true
:
false
;
},
components
:
{
navCrumb
,
checkboxOption
,
tagShortDetail
,
tagTemporary
...
...
src/view/platformTag/myTag/myTagLib.vue
View file @
6a94a463
<
template
>
<div
class=
"myTagLib-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<tag-lib
:tagCategory=
"tagCategory"
></tag-lib>
...
...
@@ -11,7 +10,6 @@
</
template
>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagLib
from
'@/components/tagLib.vue'
;
import
strLength
from
'@/common/js/strlen'
;
import
showMsg
from
'@/common/js/showmsg'
;
...
...
@@ -22,26 +20,6 @@ export default {
name
:
'myTagLib'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'我的标签库'
,
path
:
''
}
],
tagCategory
:
'myTagList'
// 当前标签类别
};
},
...
...
@@ -59,7 +37,6 @@ export default {
/* eslint-disable */
mounted
()
{},
components
:
{
navCrumb
,
tagLib
}
};
...
...
src/view/platformTag/myTag/myTagList.vue
View file @
6a94a463
<
template
>
<div
class=
"myTagList-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<!--
<el-button
@
click=
"handleShowTag"
>
显示
</el-button>
-->
...
...
@@ -82,7 +81,6 @@
</template>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagCategory
from
'@/components/tagCategory.vue'
;
import
tagTemporary
from
'@/components/tagTemporary.vue'
;
import
tagShortDetail
from
'@/components/tagShortDetail.vue'
;
...
...
@@ -95,31 +93,6 @@ export default {
name
:
'myTagList'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'我的标签库'
,
path
:
'/myTagLib'
},
{
name
:
'我的标签列表'
,
path
:
''
}
],
showTagDetail
:
false
,
// 标签详情缩小版显示/隐藏
tagShortDetailId
:
''
,
// 标签详情缩写版 id
fromFlag
:
'myTag'
,
// 参数--来源标志
...
...
@@ -380,7 +353,6 @@ export default {
that
.
getUrlParams
();
},
components
:
{
navCrumb
,
tagShortDetail
,
tagCategory
,
tagTemporary
...
...
src/view/platformTag/platformTagDetail.vue
View file @
6a94a463
<
template
>
<div
class=
"myTagDetail-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"checkboxOption-wrap"
>
...
...
@@ -595,7 +594,6 @@
<
script
>
/* eslint-disable */
import
qs
from
'qs'
;
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
checkboxOption
from
'@/components/tags/checkboxOption.vue'
;
import
checkboxOptionAsync
from
'@/components/tags/checkboxOptionAsync.vue'
;
import
tagTemporary
from
'@/components/tagTemporary.vue'
;
...
...
@@ -858,37 +856,6 @@ export default {
};
},
computed
:
{
// 面包屑参数
navpath
()
{
let
navSign
=
this
.
$route
.
query
.
navSign
;
/* eslint-disable */
let
obj
=
navSign
==
'platformTag'
?
{
name
:
'平台标签列表'
,
path
:
'/platformTagList'
}
:
navSign
==
'manualTag'
?
{
name
:
'手工标签列表'
,
path
:
'/manualTagList'
}
:
{
name
:
'我的标签列表'
,
path
:
'/myTagList'
};
return
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
obj
,
{
name
:
'标签详情'
,
path
:
''
}
];
}
},
beforeMount
()
{
var
that
=
this
;
...
...
@@ -2428,7 +2395,6 @@ export default {
that
.
addFlag
=
!!
that
.
$route
.
query
.
addFlag
?
true
:
false
;
},
components
:
{
navCrumb
,
checkboxOption
,
checkboxOptionAsync
,
tagShortDetail
,
...
...
src/view/platformTag/platformTagLib.vue
View file @
6a94a463
<
template
>
<div
class=
"platformTagLib-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<tag-lib
:tagCategory=
"tagCategory"
></tag-lib>
...
...
@@ -10,47 +9,15 @@
</div>
</
template
>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagLib
from
'@/components/tagLib.vue'
;
import
strLength
from
'@/common/js/strlen'
;
import
showMsg
from
'@/common/js/showmsg'
;
import
errMsg
from
'@/common/js/error'
;
import
{
_debounce
}
from
'@/common/js/public'
;
import
{
getRequest
,
postRequest
,
postJson
,
postForm
}
from
'@/api/api'
;
export
default
{
name
:
'platformTagLib'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'平台标签库'
,
path
:
''
}
],
tagCategory
:
'platformTagList'
// 当前标签类别
};
},
/* eslint-disable */
methods
:
{},
mounted
()
{},
components
:
{
navCrumb
,
tagLib
}
};
...
...
src/view/platformTag/platformTagList.vue
View file @
6a94a463
<
template
>
<div
class=
"platformTagList-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<!-- 子类 -->
...
...
@@ -66,7 +65,6 @@
</template>
<
script
>
/* eslint-disable */
import
navCrumb
from
'@/components/nav/nav.vue'
;
import
tagCategory
from
'@/components/tagCategory.vue'
;
// import tagTemporary from '@/components/tagTemporary.vue';
import
strLength
from
'@/common/js/strlen'
;
...
...
@@ -78,31 +76,6 @@ export default {
name
:
'platformTagList'
,
data
()
{
return
{
// 面包屑参数
navpath
:
[
{
name
:
'首页'
,
path
:
`
${
window
.
location
.
origin
}
/report/#/memberSummary`
,
relocation
:
true
},
{
name
:
'会员管理'
,
path
:
''
},
{
name
:
'会员标签'
,
path
:
''
},
{
name
:
'平台标签库'
,
path
:
'/platformTagLib'
},
{
name
:
'平台标签列表'
,
path
:
''
}
],
tagLibName
:
'platformTag'
,
// 面包屑分类需要的参数
tagSearch
:
''
,
// 搜索值绑定的参数
// 标签列表数据
...
...
@@ -277,7 +250,6 @@ export default {
that
.
getUrlParams
();
},
components
:
{
navCrumb
,
tagCategory
// tagTemporary
}
...
...
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