mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-06 22:26:42 +08:00
全局替换标保为期交
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<th>姓名</th>
|
||||
<th class="company">营销服务部</th>
|
||||
<th>预收规保</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
</tr>
|
||||
<tr v-for="(item, index) in showData.topList" :key="item.code">
|
||||
<td>{{ item.rank }}</td>
|
||||
@@ -29,7 +29,7 @@
|
||||
<th>姓名</th>
|
||||
<th class="company">营销服务部</th>
|
||||
<th>预收规保</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
</tr>
|
||||
<tr v-for="(item, index) in showData.topList" :key="item.code" :class="{ top3: index <= 2 }">
|
||||
<td>{{ item.rank }}</td>
|
||||
@@ -56,7 +56,7 @@
|
||||
</div>
|
||||
</van-col>
|
||||
<van-col span="12" class="detail">
|
||||
<div class="m-title mt15">本月承保标保</div>
|
||||
<div class="m-title mt15">本月承保期交</div>
|
||||
<div class="m-number mt12">
|
||||
<span class="c-gray-darker fs26 fw500"> {{ showData.achievement.selfAcceptStand }}</span>
|
||||
<span class="m-gray fs12 c-gray-dark ml20">万元</span>
|
||||
@@ -78,7 +78,7 @@
|
||||
</div>
|
||||
</van-col>
|
||||
<van-col span="12" class="detail" style="border-right: 1px solid #ff4040;">
|
||||
<div class="m-title mt15">承保标保排名</div>
|
||||
<div class="m-title mt15">承保期交排名</div>
|
||||
<div class="m-number mt12">
|
||||
<span class="m-gray fs12 c-gray-dark mr20">第</span>
|
||||
<span class="c-gray-darker fs26 fw500">{{ showData.achievement.rankingBb }}</span>
|
||||
@@ -86,7 +86,7 @@
|
||||
</div>
|
||||
</van-col>
|
||||
<van-col span="12" class="detail">
|
||||
<div class="m-title mt15">距上一名承保标保差距</div>
|
||||
<div class="m-title mt15">距上一名承保期交差距</div>
|
||||
<div class="m-number mt12">
|
||||
<span class="c-gray-darker fs26 fw500">{{ showData.achievement.previousCbbbGap }}</span>
|
||||
<span class="m-gray fs12 c-gray-dark ml20">元</span>
|
||||
|
||||
@@ -59,7 +59,7 @@ export default {
|
||||
for (var i = 0; i < myseries.data.length; i++) {
|
||||
if (myseries.data[i].name == params.name) {
|
||||
res += myseries.data[i].comName + '</br>'
|
||||
res += '承保标保' + ' : ' + myseries.data[i].sum + '万元</br>'
|
||||
res += '承保期交' + ' : ' + myseries.data[i].sum + '万元</br>'
|
||||
res += '目标达成率' + ' : ' + myseries.data[i].rate + '%</br>'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -132,7 +132,7 @@ export default {
|
||||
// 实时筛选时间条件
|
||||
timeCondition: dateUtil.formatDate(currentDate, 'yyyy-MM-dd HH:mm'),
|
||||
dayTimeCondition: currentDate,
|
||||
// 0: 标保, 1: 人力, 2: 产品
|
||||
// 0: 期交, 1: 人力, 2: 产品
|
||||
typeIndex: 0,
|
||||
//子组件机构名称的角标等于this.availableLevel - 3
|
||||
active: 0,
|
||||
|
||||
@@ -74,8 +74,8 @@
|
||||
<tr v-if="curMainType == '01'" class="title">
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2" style="height: 1.2em;width:8.6em">机构</th>
|
||||
<th>预收标保</th>
|
||||
<th>承保标保</th>
|
||||
<th>预收期交</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -176,8 +176,8 @@ export default {
|
||||
// 数据
|
||||
personalDate: [],
|
||||
timeVal: '',
|
||||
sortTypeText: '预收标保',
|
||||
queryColumns: ['预收件数', '预收标保', '承保件数', '承保标保', '承保标保'],
|
||||
sortTypeText: '预收期交',
|
||||
queryColumns: ['预收件数', '预收期交', '承保件数', '承保期交', '承保期交'],
|
||||
// 人力排名
|
||||
// sortTypeText: '活动人力',
|
||||
// queryColumns: ['活动人力', '合格人力', '桂冠人力', '新增人力'],
|
||||
@@ -318,18 +318,18 @@ export default {
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
case '预收标保':
|
||||
case '预收期交':
|
||||
this.sortType = '2'
|
||||
break
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保标保':
|
||||
this.sortType = '5'
|
||||
break
|
||||
// case '承保期交':
|
||||
// this.sortType = '5'
|
||||
// break
|
||||
//
|
||||
case '活动人力':
|
||||
this.sortType = '6'
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -150,7 +150,7 @@ export default {
|
||||
tableData: [],
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -293,7 +293,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -303,7 +303,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -147,7 +147,7 @@ export default {
|
||||
tableData: [],
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -289,7 +289,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -299,7 +299,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -147,7 +147,7 @@ export default {
|
||||
tableData: [],
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -290,7 +290,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -300,7 +300,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -146,7 +146,7 @@ export default {
|
||||
bzbfTotol: 0,
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -279,7 +279,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -289,7 +289,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -147,7 +147,7 @@ export default {
|
||||
bzbfTotol: 0,
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -290,7 +290,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -300,7 +300,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
<th class="td-1" style="height: 1.2em;">排名</th>
|
||||
<th class="td-2">机构</th>
|
||||
<th>预收保费</th>
|
||||
<th>承保标保</th>
|
||||
<th>承保期交</th>
|
||||
<th>承保保费</th>
|
||||
<th>预收件数</th>
|
||||
<th>承保件数</th>
|
||||
@@ -147,7 +147,7 @@ export default {
|
||||
tableData: [],
|
||||
timeVal: '',
|
||||
sortTypeText: '预收保费',
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保标保', '承保保费'],
|
||||
queryColumns: ['预收件数', '预收保费', '承保件数', '承保期交', '承保保费'],
|
||||
showPicker: false,
|
||||
// 年月日选择器
|
||||
showDatePicker: false,
|
||||
@@ -288,7 +288,7 @@ export default {
|
||||
onConfirm(value, index) {
|
||||
this.sortTypeText = value
|
||||
switch (value) {
|
||||
// '预收件数', '预收标保', '承保件数', '承保标保', '承保标保
|
||||
// '预收件数', '预收期交', '承保件数', '承保期交', '承保期交
|
||||
case '预收件数':
|
||||
this.sortType = '1'
|
||||
break
|
||||
@@ -298,7 +298,7 @@ export default {
|
||||
case '承保件数':
|
||||
this.sortType = '3'
|
||||
break
|
||||
case '承保标保':
|
||||
case '承保期交':
|
||||
this.sortType = '4'
|
||||
break
|
||||
case '承保保费':
|
||||
|
||||
@@ -123,7 +123,7 @@ export default {
|
||||
// 实时筛选时间条件
|
||||
timeCondition: dateUtil.formatDate(currentDate, 'MM-dd HH:mm'),
|
||||
dayTimeCondition: currentDate,
|
||||
// 0: 标保, 1: 人力, 2: 产品
|
||||
// 0: 期交, 1: 人力, 2: 产品
|
||||
typeIndex: 0,
|
||||
dataTypes: ['期交', '人力指标', '产品'],
|
||||
active: 0,
|
||||
|
||||
@@ -80,7 +80,7 @@ export default {
|
||||
tableData: [],
|
||||
items: [],
|
||||
bzbfTotol: 0,
|
||||
queryColumns: ['预收保费','承保标保 ', '承保保费', '预收件数', '承保件数'],
|
||||
queryColumns: ['预收保费','承保期交 ', '承保保费', '预收件数', '承保件数'],
|
||||
active: 0,
|
||||
// 当前的机构编码
|
||||
curCode: '',
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<div class="name">直辖组</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="name">承保标保(元)</div>
|
||||
<div class="name">承保期交(元)</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="date">寿险承保件数</div>
|
||||
@@ -54,7 +54,7 @@
|
||||
<div class="date">综合开拓承保保费(元)</div>
|
||||
</td>-->
|
||||
<td>
|
||||
<div class="date">本月预收标保</div>
|
||||
<div class="date">本月预收期交</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="date">本月预收件数</div>
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
<div>
|
||||
<div class="h50 bg-white content mh-auto fs13 fw500 mt5">
|
||||
<div class="pl10 pr10 pt15 flex justify-content-s align-items-c">
|
||||
<div>本月{{ filterStatusName }}标保(元)</div>
|
||||
<div>本月{{ filterStatusName }}期交(元)</div>
|
||||
<div v-if="filterStatus == 1" class="red">{{ ysbb }}</div>
|
||||
<div v-else-if="filterStatus == 2" class="red">{{ cbbb }}</div>
|
||||
</div>
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
<div class="mt20">
|
||||
<div class="h50 bg-white content mh-auto fs13 fw500">
|
||||
<div class="pl10 pr10 pt15 flex justify-content-s align-items-c">
|
||||
<div>个人承保标保(元)</div>
|
||||
<div>个人承保期交(元)</div>
|
||||
<div class="red">{{cbbb}}</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -78,7 +78,7 @@
|
||||
</div>-->
|
||||
<div class="h50 bg-white content mh-auto fs13 fw500 mt5" v-if="isShow">
|
||||
<div class="pl10 pr10 pt15 flex justify-content-s align-items-c">
|
||||
<div>本月预收标保(元)</div>
|
||||
<div>本月预收期交(元)</div>
|
||||
<div class="red">{{ysbb}}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
<div class="mt20">
|
||||
<div class="h50 bg-white content mh-auto fs13 fw500">
|
||||
<div class="pl10 pr10 pt15 flex justify-content-s align-items-c">
|
||||
<div>{{teamName}}承保标保(元)</div>
|
||||
<div>{{teamName}}承保期交(元)</div>
|
||||
<div class="red">{{cbbb}}</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -56,7 +56,7 @@
|
||||
</div>-->
|
||||
<div class="h50 bg-white content mh-auto fs13 fw500 mt5" v-if="isShow">
|
||||
<div class="pl10 pr10 pt15 flex justify-content-s align-items-c">
|
||||
<div>本月预收标保(元)</div>
|
||||
<div>本月预收期交(元)</div>
|
||||
<div class="red">{{ysbb}}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -158,7 +158,7 @@ export default {
|
||||
isPersonalInsu: true, // 是否个险渠道
|
||||
isInner: false,
|
||||
organizationTheads: ['排名', '机构', '当日预收(期交)', '月预收期交', '日承保期交', '月承保期交'],
|
||||
performanceTheads: ['排名', '姓名', '营销服务部', '预收标保', '承保标保'],
|
||||
performanceTheads: ['排名', '姓名', '营销服务部', '预收期交', '承保期交'],
|
||||
organizationData: [],
|
||||
performanceData: [],
|
||||
organizationImgUrl: '', // 机构排名图片
|
||||
|
||||
Reference in New Issue
Block a user