|
@@ -98,14 +98,34 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="Money" sortable="custom" label="合同金额" width="110"> </el-table-column>
|
|
|
- <el-table-column align="center" prop="PermissionName" label="签约套餐"> </el-table-column>
|
|
|
+ <el-table-column align="center" prop="PermissionName" label="签约套餐"></el-table-column>
|
|
|
+ <el-table-column align="center" prop="ThisMonthAmount" label="本月服务量" width="100">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <span @click="billClickHandler(row, 1, '月')" class="editsty">{{ row.ThisMonthAmount }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="LastMonthQoq" label="上月环比">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <span :style="{ color: row.LastMonthQoqIsRed ? 'red' : '#333' }">{{ row.LastMonthQoq }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="LastMonthAmount" label="上月服务量" width="100">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <span @click="billClickHandler(row, 2, '月')" class="editsty">{{ row.LastMonthAmount }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="TwoMonthAmount" label="上上月服务量" width="118">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <span @click="billClickHandler(row, 3, '月')" class="editsty">{{ row.TwoMonthAmount }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" prop="ThisWeekAmount" width="118">
|
|
|
<template slot="header" slot-scope="{}">
|
|
|
<p>本周服务量</p>
|
|
|
<p>{{ getWeekRange(0) }}</p>
|
|
|
</template>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <span @click="billClickHandler(row, 1)" class="editsty">{{ row.ThisWeekAmount }}</span>
|
|
|
+ <span @click="billClickHandler(row, 1, '周')" class="editsty">{{ row.ThisWeekAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="LastWeekAmount" width="118">
|
|
@@ -114,7 +134,7 @@
|
|
|
<p>{{ getWeekRange(-1) }}</p>
|
|
|
</template>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <span @click="billClickHandler(row, 2)" class="editsty">{{ row.LastWeekAmount }}</span>
|
|
|
+ <span @click="billClickHandler(row, 2, '周')" class="editsty">{{ row.LastWeekAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="TwoWeekAmount" width="118">
|
|
@@ -123,7 +143,7 @@
|
|
|
<p>{{ getWeekRange(-2) }}</p>
|
|
|
</template>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <span @click="billClickHandler(row, 3)" class="editsty">{{ row.TwoWeekAmount }}</span>
|
|
|
+ <span @click="billClickHandler(row, 3, '周')" class="editsty">{{ row.TwoWeekAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="ThreeWeekAmount" width="118">
|
|
@@ -132,7 +152,7 @@
|
|
|
<p>{{ getWeekRange(-3) }}</p>
|
|
|
</template>
|
|
|
<template slot-scope="{ row }">
|
|
|
- <span @click="billClickHandler(row, 4)" class="editsty">{{ row.ThreeWeekAmount }}</span>
|
|
|
+ <span @click="billClickHandler(row, 4, '周')" class="editsty">{{ row.ThreeWeekAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="操作" width="80" v-if="isRoleType == 'admin' || isRoleType == '权益'">
|
|
@@ -155,6 +175,7 @@
|
|
|
TagId: this.tagId,
|
|
|
ServeTypeId: this.filterObj.serviceType,
|
|
|
WhatWeek: this.whatWeek,
|
|
|
+ WhatMonth: this.whatMonth,
|
|
|
}"
|
|
|
/>
|
|
|
<historical-notes-dlg :historicalNotesDlgVisible.sync="historicalNotesDlgVisible" :CompanyId.sync="historicalNotesId" />
|
|
@@ -205,7 +226,8 @@ export default {
|
|
|
lableOptions: [],
|
|
|
tagType: "",
|
|
|
tagId: "",
|
|
|
- whatWeek: "",
|
|
|
+ whatWeek: "", // 周度的
|
|
|
+ whatMonth: "", // 月度的
|
|
|
customSellerList: [],
|
|
|
searchVal: "", //客户名称
|
|
|
|
|
@@ -380,8 +402,9 @@ export default {
|
|
|
this.dlgForm = item;
|
|
|
},
|
|
|
// 点击了明细
|
|
|
- billClickHandler(item, type) {
|
|
|
- this.whatWeek = type;
|
|
|
+ billClickHandler(item, type, what) {
|
|
|
+ this.whatWeek = what == "周" ? type : "";
|
|
|
+ this.whatMonth = what == "月" ? type : "";
|
|
|
this.isServiceDetailsShow = true;
|
|
|
this.dlgForm = item;
|
|
|
},
|