Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
994ab4ed
Commit
994ab4ed
authored
Aug 10, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
8e386ee3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
11 deletions
+57
-11
leaderPerformance.vue
src/components/LeaderManagement/leaderPerformance.vue
+57
-11
No files found.
src/components/LeaderManagement/leaderPerformance.vue
View file @
994ab4ed
...
...
@@ -62,7 +62,7 @@
}
.guidPerformance
.leftTop
{
width
:
8
10px
;
width
:
10
10px
;
height
:
360px
;
border
:
1px
solid
#E6E6E6
;
background-color
:
#fff
;
...
...
@@ -83,7 +83,7 @@
.guidPerformance
.bottomList
{
float
:
left
;
width
:
399
px
;
width
:
495
px
;
height
:
230px
;
border
:
1px
solid
#E6E6E6
;
border-radius
:
4px
;
...
...
@@ -329,6 +329,14 @@
<el-option
label=
"回佣人均"
:value=
'5'
></el-option>
<el-option
label=
"人均低于1W"
:value=
'7'
></el-option>
</el-option>
<el-option
label=
"带团次数"
:value=
'8'
></el-option>
</el-option>
<el-option
label=
"自费总金额"
:value=
'9'
></el-option>
</el-option>
<el-option
label=
"自费人均"
:value=
'10'
></el-option>
</el-option>
<el-option
label=
"自费次数"
:value=
'11'
></el-option>
</el-option>
</el-select>
</span>
</li>
...
...
@@ -374,9 +382,25 @@
人均低于1W
<i></i>
</li>
<li
:class=
"msg.Type==8?'Day_active':''"
@
click=
"msg.Type=8,getStatis()"
title=
"带团次数"
>
带团次数
<i></i>
</li>
<li
:class=
"msg.Type==9?'Day_active':''"
@
click=
"msg.Type=9,getStatis()"
title=
"自费总金额"
>
自费总金额
<i></i>
</li>
<li
:class=
"msg.Type==10?'Day_active':''"
@
click=
"msg.Type=10,getStatis()"
title=
"自费人均"
>
自费人均
<i></i>
</li>
<li
:class=
"msg.Type==11?'Day_active':''"
@
click=
"msg.Type=11,getStatis()"
title=
"自费次数"
>
自费次数
<i></i>
</li>
</ul>
<div
class=
"ChampionsLeague clearfix"
>
<template
v-if=
"msg.Type
!=
7"
>
<template
v-if=
"msg.Type
<
7
"
>
<div
class=
"championList"
v-for=
"item in yajun"
:key=
"item.subCode"
>
<div
class=
"runnderUp"
>
<img
v-if=
"!item.EmPhoto"
src=
"../../assets/img/default_head_img.jpg"
>
...
...
@@ -411,26 +435,48 @@
<
template
v-else
>
<table
class=
"singeRowTable"
style=
"margin-top:5px;"
>
<tr>
<th
width=
"100"
>
编号
</th>
<th
width=
"100"
>
姓名
</th>
<th
width=
"200"
>
人均回佣金额
</th>
<th
width=
"100"
>
编号
</th>
<th
width=
"100"
>
姓名
</th>
<th
width=
"200"
>
<template
v-if=
"msg.Type==7"
>
人均回佣金额
</
template
>
<
template
v-if=
"msg.Type==8"
>
带团次数
</
template
>
<
template
v-if=
"msg.Type==9"
>
自费总金额
</
template
>
<
template
v-if=
"msg.Type==10"
>
自费人均
</
template
>
<
template
v-if=
"msg.Type==11"
>
自费次数
</
template
>
</th>
</tr>
<tr
v-for=
"(item,index) in DataList"
>
<td>
{{
index
+
1
}}
{{index+1}}
</td>
<td>
{{item.Name}}
</td>
<td>
¥
{{
item
.
LeaderExtract
}}
<
template
v-if=
"msg.Type==7"
>
¥
</
template
>
{{item.LeaderExtract}}
<
template
v-if=
"msg.Type==8"
>
次
</
template
>
</td>
</tr>
</table>
</template>
</div>
</div>
<
template
v-if=
"msg.Type
!=
7"
>
<
template
v-if=
"msg.Type
<
7"
>
<div
class=
"leftBottom clearfix"
>
<div
class=
"bottomList"
>
<div
class=
"btLittle"
v-for=
"(item,index) in fourToSeven"
:key=
"item.subCode"
>
...
...
@@ -461,7 +507,7 @@
</div>
</
template
>
</div>
<
template
v-if=
"msg.Type
!=
7"
>
<
template
v-if=
"msg.Type
<
7"
>
<div
class=
"rightDiv"
>
<div
class=
"_btTitle"
v-for=
"(item,index) in twelveToTwenty"
:key=
"item.subCode"
>
<div
class=
"tweleindex"
>
{{
12
+
index
}}
</div>
...
...
@@ -539,7 +585,7 @@
this
.
apipost
(
"LeaderSchedule_get_GetLeaderList"
,
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
DataList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
data
));
this
.
DataList
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
data
));
var
nArray
=
JSON
.
parse
(
JSON
.
stringify
(
res
.
data
.
data
));
if
(
nArray
&&
nArray
.
length
>
0
)
{
this
.
Champion
=
nArray
.
splice
(
0
,
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