Commit f09cefa9 by Chao Sun

龙虎榜切换样式修改

parent 5dcb4529
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"version": "0.0.0", "version": "0.0.0",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve --host 192.168.1.25", "start": "ng serve --host 192.168.1.25 --port 4205",
"buildDev": "ng build -c=dev --prod", "buildDev": "ng build -c=dev --prod",
"buildStage": "ng build -c=stage --prod", "buildStage": "ng build -c=stage --prod",
"buildProd": "ng build -c=production --prod", "buildProd": "ng build -c=production --prod",
......
...@@ -28,15 +28,19 @@ ...@@ -28,15 +28,19 @@
<li>排名</li> <li>排名</li>
<li>姓名</li> <li>姓名</li>
<li>团队</li> <li>团队</li>
<li *ngIf="searchType=='1'" style="color: #333;font-weight: normal;" (click)="rank(timeType,isOnlineType,2)"> <li *ngIf="searchType=='1'" style="color: #333;font-weight: normal;position: relative;"
首年保费<span class="iconfont icon-xiangxia"></span> (click)="rank(timeType,isOnlineType,2)">
首年保费<img src="assets/images/icon.png"
style="position: relative;width: 20%;right: 0;top: -2px;margin-left: 3px;">
</li> </li>
<li *ngIf="searchType=='2'" style="color: #333;font-weight: normal;" (click)="rank(timeType,isOnlineType,3)"> <li *ngIf="searchType=='2'" style="color: #333;font-weight: normal;position: relative;"
首年佣金<span class="iconfont icon-xiangxia"></span> (click)="rank(timeType,isOnlineType,3)">
首年佣金<img src="assets/images/icon.png"
style="position: relative;width: 20%;right: 0;top: -2px;margin-left: 3px;">
</li> </li>
<li *ngIf="searchType=='3'" style="color: #333;font-weight: normal;margin-right: 0;" <li *ngIf="searchType=='3'" style="color: #333;font-weight: normal;margin-right: 0;position: relative;"
(click)="rank(timeType,isOnlineType,1)"> (click)="rank(timeType,isOnlineType,1)">
件数<span class="iconfont icon-xiangxia"></span> 件数<img src="assets/images/icon.png" style="position: relative;width: 20%;right: 0;top: -2px;margin-left: 3px;">
</li> </li>
</ul> </ul>
<div style="width: 100%;text-align: center;float: left;" *ngIf="rankList?.length <=0">暂无数据</div> <div style="width: 100%;text-align: center;float: left;" *ngIf="rankList?.length <=0">暂无数据</div>
...@@ -68,9 +72,9 @@ ...@@ -68,9 +72,9 @@
<li>{{practitionerInfo?.rank!=null ?practitionerInfo?.rank:'-'}}</li> <li>{{practitionerInfo?.rank!=null ?practitionerInfo?.rank:'-'}}</li>
<li>{{practitionerBasicInfo?.name}}</li> <li>{{practitionerBasicInfo?.name}}</li>
<li>{{practitionerBasicInfo?.subordinateName}}</li> <li>{{practitionerBasicInfo?.subordinateName}}</li>
<li *ngIf="searchType=='1'">{{practitionerInfo?.fyp}}</li> <li *ngIf="searchType=='1'">¥{{practitionerInfo?.fyp | number: "1.2-2"}}</li>
<li *ngIf="searchType=='2'">{{practitionerInfo?.fyc}}</li> <li *ngIf="searchType=='2'">¥{{practitionerInfo?.fyc | number: "1.2-2"}}</li>
<li *ngIf="searchType=='3'">{{practitionerInfo?.count}}</li> <li *ngIf="searchType=='3'">{{practitionerInfo?.count}}</li>
</ul> </ul>
</div> </div>
......
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