Commit 20a0ff37 authored by 黄奎's avatar 黄奎

页面修改

parent fce612a0
...@@ -312,7 +312,7 @@ ...@@ -312,7 +312,7 @@
<el-option :key="-1" label="全部" :value="-1"></el-option> <el-option :key="-1" label="全部" :value="-1"></el-option>
<el-option v-for="item in yearList" :key="item" :label="item" :value="item"></el-option> <el-option v-for="item in yearList" :key="item" :label="item" :value="item"></el-option>
</el-select> </el-select>
<el-select v-model="msg.Month" > <el-select v-model="msg.Month">
<el-option :key="-1" label="全部" :value="-1"></el-option> <el-option :key="-1" label="全部" :value="-1"></el-option>
<el-option v-for="item in monthList" :key="item" :label="item" :value="item"></el-option> <el-option v-for="item in monthList" :key="item" :label="item" :value="item"></el-option>
</el-select> </el-select>
...@@ -327,6 +327,7 @@ ...@@ -327,6 +327,7 @@
<el-option label="总榜" :value='6'></el-option> <el-option label="总榜" :value='6'></el-option>
<el-option label="人均" :value='4'></el-option> <el-option label="人均" :value='4'></el-option>
<el-option label="回佣人均" :value='5'></el-option> <el-option label="回佣人均" :value='5'></el-option>
<el-option label="人均低于1W" :value='7'></el-option>
</el-option> </el-option>
</el-select> </el-select>
</span> </span>
...@@ -369,8 +370,13 @@ ...@@ -369,8 +370,13 @@
回佣人均 回佣人均
<i></i> <i></i>
</li> </li>
<li :class="msg.Type==7?'Day_active':''" @click="msg.Type=7,getStatis()" title="回佣人均低于1W">
人均低于1W
<i></i>
</li>
</ul> </ul>
<div class="ChampionsLeague clearfix"> <div class="ChampionsLeague clearfix">
<template v-if="msg.Type!=7">
<div class="championList" v-for="item in yajun" :key="item.subCode"> <div class="championList" v-for="item in yajun" :key="item.subCode">
<div class="runnderUp"> <div class="runnderUp">
<img v-if="!item.EmPhoto" src="../../assets/img/default_head_img.jpg"> <img v-if="!item.EmPhoto" src="../../assets/img/default_head_img.jpg">
...@@ -401,8 +407,30 @@ ...@@ -401,8 +407,30 @@
<div class="championName">{{item.Name}}</div> <div class="championName">{{item.Name}}</div>
<div class="championMoney cmoney">{{item.LeaderExtract}}</div> <div class="championMoney cmoney">{{item.LeaderExtract}}</div>
</div> </div>
</template>
<template v-else>
<table class="singeRowTable" style="margin-top:5px;">
<tr>
<th width="100">编号</th>
<th width="100">姓名</th>
<th width="200">人均回佣金额</th>
</tr>
<tr v-for="(item,index) in DataList">
<td>
{{index+1}}
</td>
<td>
{{item.Name}}
</td>
<td>
{{item.LeaderExtract}}
</td>
</tr>
</table>
</template>
</div> </div>
</div> </div>
<template v-if="msg.Type!=7">
<div class="leftBottom clearfix"> <div class="leftBottom clearfix">
<div class="bottomList"> <div class="bottomList">
<div class="btLittle" v-for="(item,index) in fourToSeven" :key="item.subCode"> <div class="btLittle" v-for="(item,index) in fourToSeven" :key="item.subCode">
...@@ -431,7 +459,9 @@ ...@@ -431,7 +459,9 @@
</div> </div>
</div> </div>
</div> </div>
</template>
</div> </div>
<template v-if="msg.Type!=7">
<div class="rightDiv"> <div class="rightDiv">
<div class="_btTitle" v-for="(item,index) in twelveToTwenty" :key="item.subCode"> <div class="_btTitle" v-for="(item,index) in twelveToTwenty" :key="item.subCode">
<div class="tweleindex">{{12+index}}</div> <div class="tweleindex">{{12+index}}</div>
...@@ -445,6 +475,7 @@ ...@@ -445,6 +475,7 @@
</div> </div>
</div> </div>
</div> </div>
</template>
</div> </div>
</div> </div>
</template> </template>
...@@ -465,7 +496,7 @@ ...@@ -465,7 +496,7 @@
}, },
//工作类型 //工作类型
workTypeList: [], workTypeList: [],
DataList: "", DataList: [],
//冠军 //冠军
Champion: [], Champion: [],
//亚军 //亚军
...@@ -493,11 +524,10 @@ ...@@ -493,11 +524,10 @@
Type: this.msg.Type, Type: this.msg.Type,
QLeaderType: this.msg.QLeaderType, QLeaderType: this.msg.QLeaderType,
QMonthStr: this.msg.MonthStr, QMonthStr: this.msg.MonthStr,
ShoppingID:this.msg.ShoppingID ShoppingID: this.msg.ShoppingID
}; };
if(msg.Type==4||msg.Type==5) if (msg.Type == 4 || msg.Type == 5 || msg.Type == 7) {
{ msg.QMonthStr = this.msg.Year + "-" + this.msg.Month;
msg.QMonthStr=this.msg.Year+","+this.msg.Month;
} }
this.Champion = []; this.Champion = [];
this.yajun = []; this.yajun = [];
...@@ -505,16 +535,19 @@ ...@@ -505,16 +535,19 @@
this.fourToSeven = []; this.fourToSeven = [];
this.eightToeleven = []; this.eightToeleven = [];
this.twelveToTwenty = []; this.twelveToTwenty = [];
this.DataList = [];
this.apipost("LeaderSchedule_get_GetLeaderList", msg, res => { this.apipost("LeaderSchedule_get_GetLeaderList", msg, res => {
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
if (res.data.data.length > 0) { this.DataList =JSON.parse(JSON.stringify(res.data.data));
this.Champion = res.data.data.splice(0, 1); var nArray = JSON.parse(JSON.stringify(res.data.data));
this.yajun = res.data.data.splice(0, 1); if (nArray && nArray.length > 0) {
this.jijun = res.data.data.splice(0, 1); this.Champion = nArray.splice(0, 1);
this.fourToSeven = res.data.data.splice(0, 4); this.yajun = nArray.splice(0, 1);
this.eightToeleven = res.data.data.splice(0, 4); this.jijun = nArray.splice(0, 1);
this.twelveToTwenty = res.data.data.splice(0, 9); this.fourToSeven = nArray.splice(0, 4);
this.eightToeleven = nArray.splice(0, 4);
this.twelveToTwenty = nArray.splice(0, 9);
} }
} }
}, },
...@@ -550,8 +583,8 @@ ...@@ -550,8 +583,8 @@
}, },
mounted() { mounted() {
var Year = new Date().getFullYear(); var Year = new Date().getFullYear();
this.msg.Year= new Date().getFullYear(); this.msg.Year = new Date().getFullYear();
this.msg.Month= new Date().getMonth() + 1; this.msg.Month = new Date().getMonth() + 1;
let count = Year - (Year - 8); let count = Year - (Year - 8);
for (let i = 0; i <= count; i++) { for (let i = 0; i <= count; i++) {
this.yearList.push(Year - i); this.yearList.push(Year - i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment