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
e273e8f0
Commit
e273e8f0
authored
May 20, 2019
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决新增标签页返回后样式不对的问题
parent
b4808b5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
member-tag.vue
src/view/platformTag/member-tag.vue
+8
-2
No files found.
src/view/platformTag/member-tag.vue
View file @
e273e8f0
...
...
@@ -11,7 +11,7 @@
<div
class=
"main-tag"
>
<div
class=
"tag-list"
>
<div
class=
"search-box"
></div>
<p
class=
"user-info
"
@
click=
"allTagList"
>
我的用户
</p>
<p
:class=
"['user-info',
{'light-active': tagRealName === '我的用户'}]
" @click="allTagList">我的用户
</p>
<div
class=
"list-box"
>
<TagType
v-for=
"(list, i) in tagList"
:key=
"i"
:tag-list=
"list"
@
handleFristTag=
"handleFristTag"
>
</TagType>
</div>
...
...
@@ -123,6 +123,7 @@ import TagType from './tag-type';
import
TagContainer
from
'./tag-container'
;
import
{
getMemberTag
,
getMemberTagList
,
addNewGroup
}
from
'@/request/api'
;
import
EditTag
from
'../memberGroup/edit-tag'
;
import
{
mapState
}
from
'vuex'
;
Vue
.
component
(
CollapseTransition
.
name
,
CollapseTransition
);
...
...
@@ -255,7 +256,8 @@ export default {
}
,
marginSixty
()
{
return
this
.
selectedTags
.
length
>
1
;
}
}
,
...
mapState
([
'tagRealName'
])
}
,
methods
:
{
...
...
@@ -563,6 +565,7 @@ export default {
this
.
handTag
=
true
;
}
else
{
this
.
loadMemberTagList
(
this
.
params
);
this
.
$store
.
commit
(
'modiftTagName'
,
'我的用户'
);
}
}
,
mounted
()
{
...
...
@@ -662,6 +665,9 @@ export default {
color
:
#
909399
;
cursor
:
pointer
;
}
.
light
-
active
{
color
:
#
1890
ff
;
}
}
.
tag
-
all
{
flex
:
1
;
...
...
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