fix: 个险业绩排行修改点

1. 标题名称修改
This commit is contained in:
mengxiaolong
2020-12-01 10:07:19 +08:00
parent bd9c3eadc5
commit 4bf9993299
3 changed files with 8 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
<div class="table-wrapper">
<table class="myTable mb30" cellspacing="0" cellpadding="0">
<tr>
<th class="sticky">排名</th>
<th class="sticky" style="width: 3em;">排名</th>
<th v-for="(column, index) in columns" :key="index" :class="{ fixedWidth: index === 0 }">
{{ column.name }}
</th>
@@ -110,6 +110,7 @@ export default {
],
[
{ name: '机构', key: 'name' },
{ name: '活动人力(人)', key: 'hdrl' },
{ name: '合格人力(人)', key: 'hgrl' },
{ name: '桂冠人力(人)', key: 'ggrl' },
{ name: '桂冠正式会员(人)', key: 'gghy' },

View File

@@ -36,9 +36,13 @@
<div class="table-wrapper">
<table class="myTable" cellspacing="0" cellpadding="0">
<tr>
<th style="width: 50%;">活动人力</th>
<th style="width: 50%;">人力指标</th>
<th>达成()</th>
</tr>
<tr>
<td class="bleft bright">活动人力</td>
<td class="bright">{{ manpower.hdrl | blankFilter }}</td>
</tr>
<tr>
<td class="bleft bright">合格人力</td>
<td class="bright">{{ manpower.hgrl | blankFilter }}</td>

View File

@@ -125,7 +125,7 @@ export default {
dayTimeCondition: currentDate,
// 0: 标保, 1: 人力, 2: 产品
typeIndex: 0,
dataTypes: ['标保', '活动人力', '产品'],
dataTypes: ['标保', '人力指标', '产品'],
active: 0,
// 侧边栏是否显示
isSideBarShow: false,