Commit 39626530 by Sweet Zhang

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

parent 9f719675
......@@ -512,7 +512,7 @@
<span>¥ {{orderDetail?.totalPrice | number:'1.2-2'}}</span>
</li>
<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>
</li>
......
......@@ -15,8 +15,8 @@
</li>
</ul>
<ul class="tab">
<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=2;practitionerPolicyListQuery(2)" [ngClass]="{selected:platform==2}">人身</li>
<li (click)="platform=1;practitionerPolicyListQuery(1)" [ngClass]="{selected:platform==1}">财产险</li>
</ul>
</div>
<div class="salesContent">
......
......@@ -53,7 +53,7 @@ export class SalesDetailComponent implements OnInit {
jumpToOrderdetail(orderNo, platform, fortuneId,policyNo,relation_id) {
if (platform === 1) {
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 {
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