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
42a9f0eb
Commit
42a9f0eb
authored
Apr 08, 2019
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
根据ui图调整页面样式
parent
b3d857c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
14 deletions
+35
-14
memberGroupDetail.vue
src/view/memberGroup/memberGroupDetail.vue
+35
-14
No files found.
src/view/memberGroup/memberGroupDetail.vue
View file @
42a9f0eb
...
...
@@ -3,11 +3,21 @@
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"memberGroupDetail-wrap__info m-b-20"
>
<span
class=
"group-name"
>
{{
groupName
}}
</span>
<span
class=
"group-total m-l-20 p-l-20"
>
覆盖人数
<span>
{{
separator
(
total
)
}}
</span>
人
</span>
<span
class=
"inline-block middle m-l-20"
>
<el-button
type=
"primary"
icon=
"el-icon-setting "
@
click=
"showDefined"
></el-button>
</span>
</div>
<div
class=
"memberGroupDetail-wrap__head"
>
<p
class=
"m-b-20"
>
<span
class=
"group-name"
>
{{
groupName
}}
</span
><span
class=
"font-10 real-time inline-block m-l-8"
>
{{
!!
groupIsRealTime
?
'实时'
:
'非实时'
}}
</span>
</p>
<!--
<p
class=
"m-b-20"
>
-->
<!--
<span
class=
"font-10 real-time inline-block m-l-8"
>
{{
!!
groupIsRealTime
?
'实时'
:
'非实时'
}}
</span>
-->
<!--
</p>
-->
<div
class=
"flex"
>
<span
class=
"tag-selected-title"
>
筛选标签
</span>
<div
class=
"inline-block tag-cell-wrap flex-1"
>
...
...
@@ -21,10 +31,6 @@
</div>
</div>
</div>
<div
class=
"memberGroupDetail-wrap__info"
>
<span>
覆盖人数{{ total }}人
</span>
<span
class=
"fr inline-block middle"
><el-button
type=
"primary"
icon=
"el-icon-setting "
@
click=
"showDefined"
></el-button></span>
</div>
<div
class=
"memberGroupDetail-wrap__table"
>
<el-table
v-loading=
"loading"
@
sort-change=
"sortChange"
:data=
"memberGroupDetailData"
style=
"width: 100%"
>
<div
v-for=
"(item, index) in selectedFields"
:key=
"index"
>
...
...
@@ -382,6 +388,14 @@ export default {
methods
:
{
/**
* 千位分隔符
* */
separator
(
num
)
{
let
reg
=
/
\d{1,3}(?=(\d{3})
+$
)
/g
;
num
=
num
+
''
;
return
num
.
replace
(
reg
,
'$&,'
);
},
/**
* 排序
*/
sortChange
({
column
,
prop
,
order
})
{
...
...
@@ -641,10 +655,6 @@ export default {
width
:
60px
;
padding-top
:
10px
;
}
.group-name
{
font-weight
:
500
;
font-size
:
16px
;
}
.real-time
{
padding
:
3px
4px
;
border-radius
:
4px
;
...
...
@@ -667,8 +677,19 @@ export default {
}
.memberGroupDetail-wrap__info
{
height
:
87px
;
line-height
:
87px
;
.group-name
{
font-size
:
18px
;
font-weight
:
bold
;
}
.group-total
{
font-size
:
14px
;
border-left
:
1px
solid
#aaa
;
span
{
padding
:
0
3px
;
font-size
:
16px
;
font-weight
:
bold
;
}
}
}
.memberGroupDetail-wrap__table
{
...
...
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