Commit 39626530 by Sweet Zhang

佣金改为直接销售佣金,寿险改为人身险,线上改为财产险

parent 9f719675
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
</ul> </ul>
<div class="insuredsBox" *ngFor="let insured of insuredInfos;index as i"> <div class="insuredsBox" *ngFor="let insured of insuredInfos;index as i">
<h4 class="text-left alignItemCenter" style="margin-top: 10px;"><i class="line"></i>被保人信息{{i+1}}</h4> <h4 class="text-left alignItemCenter" style="margin-top: 10px;"><i class="line"></i>被保人信息{{i+1}}</h4>
<ul> <ul>
...@@ -386,7 +386,7 @@ ...@@ -386,7 +386,7 @@
<span>{{ orderDetail?.erpVehicleOwmer?.idNo}}</span> <span>{{ orderDetail?.erpVehicleOwmer?.idNo}}</span>
</li> </li>
</ul> </ul>
</div> </div>
<div class="insuredsBox" *ngFor="let insured of insuredInfos;index as i"> <div class="insuredsBox" *ngFor="let insured of insuredInfos;index as i">
<h4 class="text-left alignItemCenter" style="margin-top: 10px;"><i class="line"></i>被保人信息{{i+1}}</h4> <h4 class="text-left alignItemCenter" style="margin-top: 10px;"><i class="line"></i>被保人信息{{i+1}}</h4>
<ul> <ul>
...@@ -512,7 +512,7 @@ ...@@ -512,7 +512,7 @@
<span>¥ {{orderDetail?.totalPrice | number:'1.2-2'}}</span> <span>¥ {{orderDetail?.totalPrice | number:'1.2-2'}}</span>
</li> </li>
<li class="list-group-item" *ngIf="orderDetail?.referralInfo?.referralAmount"> <li class="list-group-item" *ngIf="orderDetail?.referralInfo?.referralAmount">
<span style="color: #c9af71;">佣金</span> <span style="color: #c9af71;">直接销售佣金</span>
<span class="light-color">¥{{orderDetail?.referralInfo?.referralAmount | number:'1.2-2'}}</span> <span class="light-color">¥{{orderDetail?.referralInfo?.referralAmount | number:'1.2-2'}}</span>
</li> </li>
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
</li> </li>
</ul> </ul>
<ul class="tab"> <ul class="tab">
<li (click)="platform=2;practitionerPolicyListQuery(2)" [ngClass]="{selected:platform==2}">寿</li> <li (click)="platform=2;practitionerPolicyListQuery(2)" [ngClass]="{selected:platform==2}">人身</li>
<li (click)="platform=1;practitionerPolicyListQuery(1)" [ngClass]="{selected:platform==1}">线上</li> <li (click)="platform=1;practitionerPolicyListQuery(1)" [ngClass]="{selected:platform==1}">财产险</li>
</ul> </ul>
</div> </div>
<div class="salesContent"> <div class="salesContent">
...@@ -38,4 +38,4 @@ ...@@ -38,4 +38,4 @@
</div> </div>
<div style="text-align: center;margin-top: 20px;" *ngIf="salesDetailList?.length<=0">暂无数据</div> <div style="text-align: center;margin-top: 20px;" *ngIf="salesDetailList?.length<=0">暂无数据</div>
</div> </div>
</div> </div>
\ No newline at end of file
...@@ -53,7 +53,7 @@ export class SalesDetailComponent implements OnInit { ...@@ -53,7 +53,7 @@ export class SalesDetailComponent implements OnInit {
jumpToOrderdetail(orderNo, platform, fortuneId,policyNo,relation_id) { jumpToOrderdetail(orderNo, platform, fortuneId,policyNo,relation_id) {
if (platform === 1) { if (platform === 1) {
const customerId = JSON.parse(localStorage.getItem('lifeCustomerInfo')).customerId; const customerId = JSON.parse(localStorage.getItem('lifeCustomerInfo')).customerId;
window.location.href = `https://${window.location.host}/mine/orderdetail/${orderNo}?customerId=${customerId}&isReferral=true&paid=true&fortuneId=${fortuneId}`; window.location.href = `https://${window.location.host}/mine/orderdetail/${orderNo}?customerId=${customerId}&isReferral=true&paid=true&fortuneId=${fortuneId}&from=1`;
} else { } else {
this.router.navigate(['/orderDetail'], { queryParams: { orderNo: orderNo,policyNo:policyNo,relation_id:relation_id } }); this.router.navigate(['/orderDetail'], { queryParams: { orderNo: orderNo,policyNo:policyNo,relation_id:relation_id } });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment