|
@@ -168,6 +168,7 @@
|
|
|
:noRenewalReasonList="noRenewalReasonList"
|
|
|
@refreshReasonList="getNORenewalReasonList"
|
|
|
@saveLabel="saveLabel"
|
|
|
+ equityType="权益客户统计"
|
|
|
/>
|
|
|
<previous-detail :previousDetailDlg.sync="previousDetailDlg" :rowInfo="rowInfo" />
|
|
|
</div>
|
|
@@ -546,7 +547,7 @@ export default {
|
|
|
this.isConfirmNoRenewalShow = true;
|
|
|
},
|
|
|
editReasonLabel(row) {
|
|
|
- dataMainInterface.infoNoRenewedAscribe({ CompanyId: row.CompanyId, ProductId: row.ProductId }).then((res) => {
|
|
|
+ dataMainInterface.contractInfoNoRenewedAscribe({ CompanyContractId: row.CompanyContractId }).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 || "" : "";
|
|
@@ -557,12 +558,11 @@ export default {
|
|
|
},
|
|
|
saveLabel(item) {
|
|
|
let params = {
|
|
|
- CompanyId: this.selectItemRow.CompanyId,
|
|
|
- ProductId: this.selectItemRow.ProductId,
|
|
|
+ CompanyContractId: this.selectItemRow.CompanyContractId,
|
|
|
CompanyAscribeId: item.CompanyAscribeId,
|
|
|
Content: item.Content,
|
|
|
};
|
|
|
- dataMainInterface.addNoRenewedAscribe(params).then((res) => {
|
|
|
+ dataMainInterface.addAscribContract(params).then((res) => {
|
|
|
if (res.Ret == 200) {
|
|
|
this.$message.success("确认成功");
|
|
|
this.isConfirmNoRenewalShow = false;
|