|
@@ -41,10 +41,10 @@
|
|
|
effect="dark"
|
|
|
:content="
|
|
|
item.label === '新签客户'
|
|
|
- ? '新签合同的起始时间在所选时间段内的客户'
|
|
|
+ ? '起始时间在所选时间段内的新签合同'
|
|
|
: item.label === '续约客户'
|
|
|
- ? '续约合同的起始时间在所选时间段内的客户'
|
|
|
- : '筛选时间段内有过正式转试用记录,且当前为非正式、非永续状态的客户'
|
|
|
+ ? '起始时间在所选时间段内的续约合同'
|
|
|
+ : '合同截止时间在所选时间段内的非正式、非永续客户s'
|
|
|
"
|
|
|
placement="top"
|
|
|
>
|
|
@@ -92,7 +92,7 @@
|
|
|
</div>
|
|
|
<el-table :data="tableData" border style="margin-top: 20px; min-height: 400px" v-loading="isShowloadding" element-loading-text="数据加载中...">
|
|
|
<template v-for="item in incrementTableColums">
|
|
|
- <el-table-column :key="item.label" :label="item.label" :width="item.widthsty" align="center">
|
|
|
+ <el-table-column :key="item.label" :label="item.label" :width="item.widthsty" align="center" v-if="item.key != 'AscribeContent'">
|
|
|
<template slot-scope="scope">
|
|
|
<span :style="item.textsty" @click="jumpHandle(scope.row, item)" v-if="item.key === 'CreateTime'">
|
|
|
{{ scope.row[item.key] | formatTime }}
|
|
@@ -132,6 +132,13 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column :key="item.label" :label="item.label" :width="item.widthsty" align="center" v-else-if="item.key == 'AscribeContent' && isNotRenewedConfirm == 1">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span style="color: #409eff; cursor: pointer" @click="editReasonLabel(scope.row)">
|
|
|
+ {{ scope.row[item.key] }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</template>
|
|
|
<el-table-column label="操作" width="180px" align="center" v-if="canConfirmNotRenewed && !isNotRenewedConfirm && filterObj.data_type == '未续约客户'">
|
|
|
<template slot-scope="scope">
|