|
@@ -133,15 +133,15 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
<div class="tabs-box" v-if="filterObj.data_type=='未续约客户'">
|
|
|
- <el-radio-group v-model="isNotRenewedConfirm" class="tabs-box-confirm" @change="getTableData">
|
|
|
- <el-radio-button :label="true">已确认</el-radio-button>
|
|
|
+ <el-radio-group v-model="isNotRenewedConfirm" class="tabs-box-confirm" @change="notRenewedConfirmChange">
|
|
|
+ <el-radio-button :label="1">已确认</el-radio-button>
|
|
|
<div class="center-line"></div>
|
|
|
- <el-radio-button :label="false">待确认</el-radio-button>
|
|
|
+ <el-radio-button :label="0">待确认</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
<div class="tabs-box-status" v-show="isNotRenewedConfirm">
|
|
|
- <el-select v-model="noRenewalReason" placeholder="请选择不续约归因"
|
|
|
+ <el-select v-model="noRenewalReasonId" placeholder="请选择不续约归因"
|
|
|
clearable @change="getTableData" style="width: 240px;margin-right: 50px;">
|
|
|
- <el-option :label="item.reasonName" :value="item.reasonId"
|
|
|
+ <el-option :label="item.AscribeContent" :value="item.CompanyAscribeId"
|
|
|
v-for="item in noRenewalReasonList" :key="item.reasonId"></el-option>
|
|
|
</el-select>
|
|
|
<span @click="tabsHandler(item)" :class="tabsActiveName===item.value ? 'active':''"
|
|
@@ -163,7 +163,7 @@
|
|
|
:label="item.label"
|
|
|
:width="item.widthsty"
|
|
|
align="center"
|
|
|
- v-if="!item.dataType || item.dataType === filterObj.data_type">
|
|
|
+ v-if="controlTableColumnShow(item)">
|
|
|
<template slot-scope="scope">
|
|
|
<span
|
|
|
:style="item.textsty"
|
|
@@ -190,6 +190,17 @@
|
|
|
{{scope.row.PackageDifference}}
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-else-if="item.key==='Remark' " class="remark-row">
|
|
|
+ <span class="remark-text" @click="viewHistoryRemarkFun(scope.row)" v-if="scope.row.IsShowNoRenewedNote">...</span>
|
|
|
+ <span class="operation-button" v-show="canConfirmNotRenewed && (!isNotRenewedConfirm)"
|
|
|
+ style="margin-right: 0;" @click="addRemarkFun(scope.row)">添加</span>
|
|
|
+ </div>
|
|
|
+ <div v-else-if="item.key=='AscribeContent'">
|
|
|
+ <span style="color: #409EFF;cursor: pointer;"
|
|
|
+ @click="editReasonLabel(scope.row)" >
|
|
|
+ {{scope.row[item.key]}}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
<span
|
|
|
v-else
|
|
|
:style="item.textsty"
|
|
@@ -198,11 +209,6 @@
|
|
|
scope.row[item.key]
|
|
|
}}
|
|
|
</span>
|
|
|
- <div v-if="item.key==='Remark' " class="remark-row">
|
|
|
- <span class="remark-text" @click="viewHistoryRemarkFun(scope.row)">...</span>
|
|
|
- <span class="operation-button" v-show="canConfirmNotRenewed && (!isNotRenewedConfirm)"
|
|
|
- style="margin-right: 0;" @click="addRemarkFun(scope.row)">添加</span>
|
|
|
- </div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
@@ -234,7 +240,7 @@
|
|
|
<viewRemark :isShow.sync="isViewRemarkShow" :tableData="historyRemarkList" />
|
|
|
<!-- 确认不续约弹窗 -->
|
|
|
<confirmedNoRenewal :isShow.sync="isConfirmNoRenewalShow" :dataForm="confirmNoRenewalForm"
|
|
|
- :noRenewalReasonList="noRenewalReasonList" />
|
|
|
+ :noRenewalReasonList="noRenewalReasonList" @refreshReasonList="getNORenewalReasonList" @saveLabel="saveLabel" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -365,10 +371,10 @@ export default {
|
|
|
tabsActiveName:'试用',
|
|
|
NotRenewalNotTryOut:0,//冻结流失的人数
|
|
|
NotRenewalTryOut:0,//试用的人数
|
|
|
- isNotRenewedConfirm:true,//未续约的是否已确认
|
|
|
+ isNotRenewedConfirm:1,//未续约的是否已确认
|
|
|
noRenewalReasonList:[],
|
|
|
- noRenewalReason:'',
|
|
|
- selectItemId:0,// 当前选中的Id
|
|
|
+ noRenewalReasonId:'',
|
|
|
+ selectItemRow:{},// 当前选中的row
|
|
|
// 添加备注
|
|
|
isAddRemarkShow:false,
|
|
|
//历史备注
|
|
@@ -401,6 +407,11 @@ export default {
|
|
|
next()
|
|
|
},
|
|
|
methods: {
|
|
|
+ controlTableColumnShow(item){
|
|
|
+ return !item.dataType ||
|
|
|
+ (item.dataType === this.filterObj.data_type &&
|
|
|
+ (!item.notRenewedConfirm || item.notRenewedConfirm==this.isNotRenewedConfirm)) // 已确认和待确认
|
|
|
+ },
|
|
|
// 搜索
|
|
|
handleSearch(){
|
|
|
if(!this.searchVal){
|
|
@@ -438,6 +449,12 @@ export default {
|
|
|
//tabs 的点击事件
|
|
|
tabsHandler(item) {
|
|
|
this.tabsActiveName = item.value;
|
|
|
+ this.noRenewalReasonId=''
|
|
|
+ this.page_no = 1;
|
|
|
+ this.getTableData()
|
|
|
+ },
|
|
|
+ notRenewedConfirmChange(){
|
|
|
+ this.noRenewalReasonId=''
|
|
|
this.page_no = 1;
|
|
|
this.getTableData()
|
|
|
},
|
|
@@ -462,6 +479,8 @@ export default {
|
|
|
StartDate: this.start_date,
|
|
|
DataType: this.filterObj.data_type == '新增试用客户' ? '新增试用' : this.filterObj.data_type,
|
|
|
TryOutType:this.filterObj.data_type=='未续约客户'? this.tabsActiveName : '',
|
|
|
+ IsConfirm:this.filterObj.data_type=='未续约客户'?this.isNotRenewedConfirm:-1,
|
|
|
+ CompanyAscribeId:this.noRenewalReasonId
|
|
|
}
|
|
|
dataMainInterface.incrementalList(params).then(res => {
|
|
|
if(res.Ret === 200) {
|
|
@@ -508,7 +527,8 @@ export default {
|
|
|
/* 切换数据类型 */
|
|
|
toggleType(label) {
|
|
|
this.filterObj.data_type = label;
|
|
|
- if(label == "未续约客户" && (! this.noRenewalReasonList || !this.noRenewalReasonList.length>=0)){
|
|
|
+ this.noRenewalReasonId=''
|
|
|
+ if(label == "未续约客户"){
|
|
|
this.getNORenewalReasonList()
|
|
|
}
|
|
|
this.tabsActiveName = '试用';
|
|
@@ -552,8 +572,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
getNORenewalReasonList(){
|
|
|
- //TODO: 获取不续约归因列表
|
|
|
- this.noRenewalReasonList=[{reasonId:1,reasonName:"不想"},{reasonId:2,reasonName:"没钱"},{reasonId:3,reasonName:"没有"},{reasonId:4,reasonName:"无聊"}]
|
|
|
+ dataMainInterface.getAscribList().then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.noRenewalReasonList=res.Data.List||[]
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
// 未续约说明更多按钮
|
|
|
renewalReasonMore(row){
|
|
@@ -564,27 +587,68 @@ export default {
|
|
|
this.isRenewalShow=true
|
|
|
},
|
|
|
// 添加备注
|
|
|
- addRemarkFun(){
|
|
|
+ addRemarkFun(row){
|
|
|
+ this.selectItemRow=row
|
|
|
this.isAddRemarkShow=true
|
|
|
},
|
|
|
// 添加备注 保存
|
|
|
saveRemark(remark){
|
|
|
- console.log(remark);
|
|
|
- //TODO: 添加备注接口
|
|
|
- this.isAddRemarkShow=false
|
|
|
+ // console.log(remark);
|
|
|
+ let params={
|
|
|
+ CompanyId:this.selectItemRow.CompanyId,
|
|
|
+ ProductId:this.selectItemRow.ProductId,
|
|
|
+ Content:remark
|
|
|
+ }
|
|
|
+ dataMainInterface.addNotRenewedRemark(params).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.$message.success("添加成功")
|
|
|
+ this.isAddRemarkShow=false
|
|
|
+ this.selectItemRow={}
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
// 查看历史备注
|
|
|
viewHistoryRemarkFun(row){
|
|
|
- // this.selectItemId = row
|
|
|
- // TODO: 历史备注信息接口
|
|
|
- this.historyRemarkList = [{text:"噶分士大夫尔萨分昂工号刚发的合同合同梵蒂冈发读后感烦得很刚发的和规范的和规范的规范大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},
|
|
|
- {text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},
|
|
|
- {text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"},
|
|
|
- {text:"大消费",time:"2023-05-29 19:04:35"},{text:"大消费",time:"2023-05-29 19:04:35"}]
|
|
|
- this.isViewRemarkShow=true
|
|
|
+ dataMainInterface.getNotRenewedRemarkList({CompanyId:row.CompanyId,ProductId:row.ProductId})
|
|
|
+ .then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.historyRemarkList=res.Data.List || []
|
|
|
+ this.isViewRemarkShow=true
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
- confirmedNoRenewalFun(){
|
|
|
+ confirmedNoRenewalFun(row){
|
|
|
+ this.confirmNoRenewalForm.reason = ""
|
|
|
+ this.confirmNoRenewalForm.detailReason = ""
|
|
|
+ this.selectItemRow = row
|
|
|
this.isConfirmNoRenewalShow=true
|
|
|
+ },
|
|
|
+ editReasonLabel(row){
|
|
|
+ dataMainInterface.infoNoRenewedAscribe({CompanyId:row.CompanyId,ProductId:row.ProductId})
|
|
|
+ .then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.confirmNoRenewalForm.reason = res.Data.Detail?res.Data.Detail.CompanyAscribeId||"":""
|
|
|
+ this.confirmNoRenewalForm.detailReason = res.Data.Detail?res.Data.Detail.Content||"":""
|
|
|
+ this.selectItemRow=row
|
|
|
+ this.isConfirmNoRenewalShow=true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ saveLabel(item){
|
|
|
+ let params={
|
|
|
+ CompanyId:this.selectItemRow.CompanyId,
|
|
|
+ ProductId:this.selectItemRow.ProductId,
|
|
|
+ CompanyAscribeId:item.CompanyAscribeId,
|
|
|
+ Content:item.Content
|
|
|
+ }
|
|
|
+ dataMainInterface.addNoRenewedAscribe(params).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.$message.success("确认成功")
|
|
|
+ this.isConfirmNoRenewalShow=false
|
|
|
+ this.selectItemRow={}
|
|
|
+ this.getTableData()
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
created() {},
|