Commit fdc198b6 by Sweet Zhang

风格优化

parent e653d064
......@@ -2,8 +2,8 @@
position: fixed;
right: 0;
top: 50%;
width: 100px;
height: 100px;
width: 96px;
height: 96px;
#menuListContainer{
li{
height: 50px;
......
......@@ -2,7 +2,7 @@ import { Component, ElementRef, OnDestroy, OnInit } from '@angular/core';
import { AuthService } from "./auth/auth.service";
import { LifeCommonService } from "./common/life-common.service";
import { Subscription } from "rxjs/index";
import {Router, NavigationStart, ActivatedRoute, NavigationEnd} from '@angular/router';
import {Router, NavigationStart, ActivatedRoute, NavigationEnd, ActivationEnd} from '@angular/router';
import { MyService } from './my/my.service';
......@@ -55,7 +55,7 @@ export class AppComponent implements OnInit, OnDestroy {
}
closeDialog(e){
if(e.target.className==='tipsInfoContainer'){
if(e.target.className.indexOf('tipsInfoContainer')>-1){
this.viewStatus = 1;
sessionStorage.setItem('hadView','true')
}
......@@ -77,12 +77,12 @@ export class AppComponent implements OnInit, OnDestroy {
}
});
// 查询是否有续期提醒订单
if(sessionStorage.getItem('hadView')){
this.viewStatus = 1;
}else{
this.queryNoticeList();
}
// 查询是否有续期提醒订单
if(sessionStorage.getItem('hadView')){
this.viewStatus = 1;
}else{
this.queryNoticeList();
}
this.getVersion();
this.router.events.forEach((event) => {
......@@ -106,6 +106,10 @@ export class AppComponent implements OnInit, OnDestroy {
this.selectedMenuKey = 0;
}
}
if(event instanceof ActivationEnd){
this.lifeCommonService.setTitle(`${event.snapshot.data[0].title ? event.snapshot.data[0].title : '银盾保险经纪'}`)
}
});
}
......
<div class="todo_wrapper">
<!-- <div Button (onClick)="showAlert()">customized buttons</div> -->
<div class="top">
<div class="head">
<!-- <div class="head">
<h3 (click)="goBack()" style="position: absolute;left: 10px;">&lt;</h3>
<h3>新建日程</h3>
<div></div>
<div></div> -->
<!-- <div id="add_calendar_wrapper">
<List className="calendar-list" style="backgroundColor: 'white'">
<ListItem (onClick)="clickCalendar()">
......@@ -26,7 +26,7 @@
(onConfirm)="triggerConfirm($event)"
></Calendar>
</div> -->
</div>
<!-- </div> -->
<ul class="nav">
<li *ngFor="let tabItem of tabList;index as i;" [ngClass]="{'selected':tabItem.code === tabType}" (click)="selectTab(tabItem.code,tabItem.taskType)">
<span> {{tabItem.name}} </span>
......
......@@ -60,6 +60,8 @@ ul,ol{
border-radius: 10px;
margin:5px 1%;
position: relative;
white-space: nowrap;
font-size: 12px;
}
li.selected{
background: #1b5b99;
......
......@@ -23,7 +23,7 @@ export class ENoticeComponent implements OnInit,OnDestroy {
}
ngOnInit() {
this.pageType = this.activatedRoute.snapshot.data.type;
this.pageType = this.activatedRoute.snapshot.data[0].type;
if(this.pageType == 1){
this.pageInfo = {
type:6,
......
<header>
<!-- <header>
<i class="iconfont icon-fanhui" (click)="goBack()"></i>
<div style="margin-left: -30px;">全部工具</div>
<div></div>
</header>
</header> -->
<div *ngFor="let item of feartureLists" class="featureListsContent">
<h5>{{item.title}}</h5>
<ul>
......
......@@ -85,6 +85,7 @@
>ul{
display: flex;
overflow-x: scroll;
overflow-y: hidden;
margin-top: 10px;
>li{
width: 0;
......@@ -97,12 +98,13 @@
flex-direction: column;
justify-content: space-between;
.minPrice{
width: 98px;
min-width: 98px;
height: 25px;
line-height: 25px;
border-radius: 12px;
color:#fff;
background-color: #9BBCF8;
font-size: 15px;
font-size: 14px;
text-align: center;
}
&:nth-of-type(3n+1){
......
......@@ -83,42 +83,42 @@ import { MineComponent } from './mine/mine.component';
const myRoutes: Routes = [
{ path: '', component: MyCenterHomeComponent, canActivate: [AuthGuard], data: [{ title: '银盾保险经纪 - 工作台' }] },
{ path: 'material', component: MkMaterialComponent, canActivate: [AuthGuard] },
{ path: 'material/:itemId', component: MkMaterialDetailComponent, canActivate: [AuthGuard] },
{ path: 'fileUpload', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'fileUpload' }] },
{ path: 'training', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'training' }] },
{ path: 'trainingVideo', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'trainingVideo' }] },
{ path: 'prejobTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' }] },
{ path: 'newTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' }] },
{ path: 'advanceTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' }] },
{ path: 'cffpTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' }] },
{ path: 'productTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' }] },
{ path: 'importantAnnouncement', component: ImportantAnnouncementComponent, canActivate: [AuthGuard] },
{ path: 'salesDetail', component: SalesDetailComponent, canActivate: [AuthGuard] },
{ path: 'importantAnnouncement/:id', component: AnnouncementDetailComponent, canActivate: [AuthGuard] },
{ path: 'business', component: MyBusinessComponent, canActivate: [AuthGuard],data:[{type:'business'}] },
{ path: 'linkbusiness', component: MyBusinessComponent, canActivate: [AuthGuard],data:[{type:'linkbusiness'}] },
{ path: 'business/:id', component: MyBusinessDetailComponent, canActivate: [AuthGuard] },
{ path: 'rank', component: SalesRankComponent, canActivate: [AuthGuard] },
{ path: 'teamRank', component: TeamRankComponent, canActivate: [AuthGuard] },
{ path: 'recruiting', component: RecruitingComponent, canActivate: [AuthGuard] ,data:[{type:'recruiting'}]},
{ path: 'linkrecruiting', component: RecruitingComponent, canActivate: [AuthGuard] ,data:[{type:'linkrecruiting'}]},
{ path: 'recruiting/:id', component: RecruitingDetailComponent, canActivate: [AuthGuard] },
{ path: 'thanks', component: ThanksComponent, canActivate: [AuthGuard] },
{ path: 'setting', component: MySettingComponent, canActivate: [AuthGuard] },
{ path: 'setting/:uploadType', component: MySettingDetailComponent, canActivate: [AuthGuard] },
{ path: 'news', component: MyNewsComponent, canActivate: [AuthGuard] },
{ path: 'target', component: MyTargetComponent, canActivate: [AuthGuard] },
{ path: 'teamPanel', component: TeamPanelComponent, canActivate: [AuthGuard] },
{ path: 'teamPanel/:type', component: TeamSalesScoreComponent, canActivate: [AuthGuard] },
{ path: 'scoreDeatil', component: ScoreDetailsComponent, canActivate: [AuthGuard] },
{ path: 'scoreDeatil/:practitionerId', component: ScoreDetailsComponent, canActivate: [AuthGuard] },
{ path: 'businessCard', component: BusinessCardComponent, canActivate: [AuthGuard] },
{ path: 'orderDetail', component: OrderDetailComponent, canActivate: [AuthGuard] },
{ path: 'material', component: MkMaterialComponent, canActivate: [AuthGuard],data:[{title:'产品海报'}] },
{ path: 'material/:itemId', component: MkMaterialDetailComponent, canActivate: [AuthGuard],data:[{title:'产品海报'}] },
{ path: 'fileUpload', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'fileUpload',title:'文件下载' }] },
{ path: 'training', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'training' ,title:'我的培训'}] },
{ path: 'trainingVideo', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'trainingVideo' ,title:'视频培训'}] },
{ path: 'prejobTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type' ,title:'岗前训'}] },
{ path: 'newTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type',title:'新人训' }] },
{ path: 'advanceTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type',title:'提升训' }] },
{ path: 'cffpTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type',title:'CFFP培训' }] },
{ path: 'productTraining', component: FileUploadComponent, canActivate: [AuthGuard], data: [{ type: 'yd_trainning_file_type',title:'产品培训' }] },
{ path: 'importantAnnouncement', component: ImportantAnnouncementComponent, canActivate: [AuthGuard] ,data:[{title:'重要公告'}]},
{ path: 'salesDetail', component: SalesDetailComponent, canActivate: [AuthGuard],data:[{title:'我的保单'}] },
{ path: 'importantAnnouncement/:id', component: AnnouncementDetailComponent, canActivate: [AuthGuard] ,data:[{title:'重要公告'}] },
{ path: 'business', component: MyBusinessComponent, canActivate: [AuthGuard],data:[{type:'business',title:'我的商机'}] },
{ path: 'linkbusiness', component: MyBusinessComponent, canActivate: [AuthGuard],data:[{type:'linkbusiness',title:'我的商机'}] },
{ path: 'business/:id', component: MyBusinessDetailComponent, canActivate: [AuthGuard],data:[{title:'我的商机'}] },
{ path: 'rank', component: SalesRankComponent, canActivate: [AuthGuard],data:[{title:'龙虎榜'}] },
{ path: 'teamRank', component: TeamRankComponent, canActivate: [AuthGuard],data:[{title:'团队排名'}] },
{ path: 'recruiting', component: RecruitingComponent, canActivate: [AuthGuard] ,data:[{type:'recruiting',title:'我的增员'}]},
{ path: 'linkrecruiting', component: RecruitingComponent, canActivate: [AuthGuard] ,data:[{type:'linkrecruiting',title:'增员管理'}]},
{ path: 'recruiting/:id', component: RecruitingDetailComponent, canActivate: [AuthGuard] ,data:[{title:'增员管理'}]},
{ path: 'thanks', component: ThanksComponent, canActivate: [AuthGuard] ,data:[{title:'感谢信'}]},
{ path: 'setting', component: MySettingComponent, canActivate: [AuthGuard],data:[{title:'设置'}] },
{ path: 'setting/:uploadType', component: MySettingDetailComponent, canActivate: [AuthGuard],data:[{title:'设置'}] },
{ path: 'news', component: MyNewsComponent, canActivate: [AuthGuard] ,data:[{title:'我的消息'}]},
{ path: 'target', component: MyTargetComponent, canActivate: [AuthGuard],data:[{title:'目标设置'}] },
{ path: 'teamPanel', component: TeamPanelComponent, canActivate: [AuthGuard],data:[{title:'我的团队'}] },
{ path: 'teamPanel/:type', component: TeamSalesScoreComponent, canActivate: [AuthGuard] ,data:[{title:'活动量得分'}]},
{ path: 'scoreDeatil', component: ScoreDetailsComponent, canActivate: [AuthGuard],data:[{title:'团队战绩'}] },
{ path: 'scoreDeatil/:practitionerId', component: ScoreDetailsComponent, canActivate: [AuthGuard],data:[{title:'团队战绩'}] },
{ path: 'businessCard', component: BusinessCardComponent, canActivate: [AuthGuard] ,data:[{title:'我的名片'}]},
{ path: 'orderDetail', component: OrderDetailComponent, canActivate: [AuthGuard] ,data:[{title:'订单详情'}]},
{ path: 'salary', component: SalaryComponent, canActivate: [AuthGuard],data:[{title:'我的薪资'}] },
{ path: 'todo', component: TodoListComponent, canActivate: [AuthGuard] },
{ path: 'addtask',component:AddTaskComponent,canActivate:[AuthGuard]},
{ path: 'medical_service',component:MedicalServiceComponent,canActivate:[AuthGuard]},
{ path: 'todo', component: TodoListComponent, canActivate: [AuthGuard] ,data:[{title:'日程管理'}]},
{ path: 'addtask',component:AddTaskComponent,canActivate:[AuthGuard],data:[{title:'新建日程'}]},
{ path: 'medical_service',component:MedicalServiceComponent,canActivate:[AuthGuard],data:[{title:'营销活动'}]},
{ path: 'inviter' ,component:InvitationComponent,canActivate:[AuthGuard],data:[{type:'inviter',title: '邀请函'}]},
{ path: 'invitees' ,component:InvitationComponent,data:[{type:'invitees',title: '邀请函'}]},
{ path: 'register' ,component:RegisterComponent,data: [{ title: '注册信息' }]},
......@@ -138,50 +138,50 @@ const myRoutes: Routes = [
{ path: 'eNoticeSignature',component:SignatureComponent,data: [{ title: '客户告知书和保险经纪服务委托协议' }]},
{ path: 'employee_submit',component:EmployeeSubmitComponent,data: [{ title: '已提交' }]},
{ path: 'eNotice_submit',component:EmployeeSubmitComponent,data: [{ title: '已提交' }]},
{ path: 'member_detail/:practitionerId',component:MemberDetailComponent, canActivate: [AuthGuard]},
{ path: 'member_detail/:practitionerId',component:MemberDetailComponent, canActivate: [AuthGuard],data:[{title:'团队成员'}]},
{ path: 'approval_list',component:ApprovalListComponent, data: [{ title: '审批列表' }],canActivate: [AuthGuard]},
{ path: 'approval_comments',component:ApprovalCommentsComponent,canActivate:[AuthGuard]},
{ path: 'approval_comments',component:ApprovalCommentsComponent,canActivate:[AuthGuard],data:[{title:'审批意见'}]},
{ path: 'approval_result_list',component:ApprovalResultListComponent,data: [{ title: '审批流程' }],canActivate:[AuthGuard]},
{ path: 'my_application',component:MyApplicationComponent,data: [{ title: '我的报聘' }],canActivate:[AuthGuard]},
{ path: 'suggestion',component:SuggestionComponent,data: [{ title: '问题反馈' }],canActivate:[AuthGuard]},
{ path: 'historical_rank', component: HistoricalRankComponent, canActivate: [AuthGuard] },
{ path: 'team_area',component:TeamAreaPanelComponent, canActivate: [AuthGuard]},
{ path: 'article/:mdDropOptionId', component:ArticleComponent},
{ path: 'articleDetail/:id',component:ArticleDetailComponent},
{ path: 'article_read/:id',component:ArticleReadComponent,canActivate:[AuthGuard]},
{ path: 'salary_detail',component:SalaryDetailComponent,canActivate:[AuthGuard]},
{ path: 'salary_detail/:id',component:SalaryFirstYearComponent,canActivate:[AuthGuard]},
{ path: 'product',component:ProductComponent,canActivate:[AuthGuard]},
{ path: 'productData/:id',component:ProductDataComponent,canActivate:[AuthGuard]},
{ path: 'commission',component:CommissionComponent,canActivate:[AuthGuard]},
{ path: 'filelist',component:FileListComponent,canActivate:[AuthGuard]},
{ path: 'customer',component:MyCustomerComponent,canActivate:[AuthGuard]},
{ path: 'customer_relation',component:CustomerRelationComponent,canActivate:[AuthGuard]},
{ path: 'customer_policy',component:MyCustomerPolicyComponent,canActivate:[AuthGuard]},
{ path: 'underwriting_knowledge',component:UnderwritingKnowledgeComponent,canActivate:[AuthGuard]},
{ path: 'my_question',component:MyQuestionComponent,canActivate:[AuthGuard]},
{ path: 'ask',component:AskComponent,canActivate:[AuthGuard]},
{ path: 'historical_rank', component: HistoricalRankComponent, canActivate: [AuthGuard] ,data:[{title:'往期历史'}]},
{ path: 'team_area',component:TeamAreaPanelComponent, canActivate: [AuthGuard],data:[{title:'我的团队'}]},
{ path: 'article/:mdDropOptionId', component:ArticleComponent,data:[{title:'文章分享'}]},
{ path: 'articleDetail/:id',component:ArticleDetailComponent,data:[{title:'文章分享'}]},
{ path: 'article_read/:id',component:ArticleReadComponent,canActivate:[AuthGuard],data:[{title:'文章分享'}]},
{ path: 'salary_detail',component:SalaryDetailComponent,canActivate:[AuthGuard],data:[{title:'薪资详情'}]},
{ path: 'salary_detail/:id',component:SalaryFirstYearComponent,canActivate:[AuthGuard],data:[{title:'薪资详情'}]},
{ path: 'product',component:ProductComponent,canActivate:[AuthGuard],data:[{title:'产品库'}]},
{ path: 'productData/:id',component:ProductDataComponent,canActivate:[AuthGuard],data:[{title:'产品资料'}]},
{ path: 'commission',component:CommissionComponent,canActivate:[AuthGuard],data:[{title:'公告佣率'}]},
{ path: 'filelist',component:FileListComponent,canActivate:[AuthGuard],data:[{title:'文件列表'}]},
{ path: 'customer',component:MyCustomerComponent,canActivate:[AuthGuard],data:[{title:'我的客户'}]},
{ path: 'customer_relation',component:CustomerRelationComponent,canActivate:[AuthGuard],data:[{title:'客户关系'}]},
{ path: 'customer_policy',component:MyCustomerPolicyComponent,canActivate:[AuthGuard],data:[{title:'保单'}]},
{ path: 'underwriting_knowledge',component:UnderwritingKnowledgeComponent,canActivate:[AuthGuard],data:[{title:'投核保问题'}]},
{ path: 'my_question',component:MyQuestionComponent,canActivate:[AuthGuard],data:[{title:'我的问题'}]},
{ path: 'ask',component:AskComponent,canActivate:[AuthGuard],data:[{title:'我要提问'}]},
{ path: 'marketing',component:MenuItemComponent,data:[{title:'银盾保经-营销工具',type:'marketing'}],canActivate:[AuthGuard]},
{ path: 'team',component:MenuItemComponent,data:[{title:'银盾保经-我的团队',type:'team'}],canActivate:[AuthGuard]},
{ path: 'exhibition',component:MenuItemComponent,data:[{title:'银盾保经-我的展业',type:'exhibition'}],canActivate:[AuthGuard]},
{ path: 'trainingCenter',component:MenuItemComponent,data:[{title:'银盾保经-教育培训',type:'trainingCenter'}],canActivate:[AuthGuard]},
{ path: 'newPeople',component:MenuItemComponent,data:[{title:'银盾保经-新人入口',type:'newPeople'}],canActivate:[AuthGuard]},
{ path: 'member_list/:systemType',component:MemberListComponent,canActivate:[AuthGuard]},
{ path: 'continuation_rate_commitment',component:ENoticeComponent,canActivate:[AuthGuard],data:{type:2}},
{ path: 'eNoticeSign',component:ENoticeComponent,data:{type:1,title: '客户告知书和保险经纪服务委托协议'}},
{ path: 'renewal_reminder',component:RenewalReminderComponent,canActivate:[AuthGuard],data:{type:1,title: '续期提醒'}},
{ path: 'renewal_reminder_detail/:orderPayId',component:RenewalReminderDetailComponent,canActivate:[AuthGuard],data:{type:1,title: '续期订单提醒'}},
{ path: 'reminder_detail/:orderPayId',component:RenewalReminderDetailComponent,data:{type:2,title: '续期订单详情信息'}},
{ path: 'joint_sales',component:JointSalesComponent,canActivate:[AuthGuard],data:{title: '联合销售列表'}},
{ path: 'joint_sales_detail/:unionSalesId',component:JointSaleDetailComponent,canActivate:[AuthGuard],data:{title: '联合销售签署'}},
{ path: 'integration',component:IntegrationComponent,canActivate:[AuthGuard],data:{title: '我的积分'}},
{ path: 'integration_detail',component:IntegrationDetailComponent,canActivate:[AuthGuard],data:{title: '积分明细'}},
{ path: 'integration_rule',component:IntegrationRuleComponent,canActivate:[AuthGuard],data:{title: '积分规则'}},
{ path: 'video',component:VideoComponent,canActivate:[AuthGuard],data:{title: '视频播放'}},
{ path: 'pdfView',component:VideoComponent,canActivate:[AuthGuard],data:{title: 'PDF查看'}},
{ path: 'newsDetail/:id',component:NewsDetailComponent,canActivate:[AuthGuard],data:{title: '消息详情'}},
{ path: 'moreFeatures',component:MoreFeaturesComponent,canActivate:[AuthGuard],data:{title: '全部工具'}},
{ path: 'mine',component:MineComponent,canActivate:[AuthGuard],data:{title: '全部工具'}},
{ path: 'member_list/:systemType',component:MemberListComponent,canActivate:[AuthGuard],data:[{title:'团队成员'}]},
{ path: 'continuation_rate_commitment',component:ENoticeComponent,canActivate:[AuthGuard],data:[{type:2,title:'继续率承诺书'}]},
{ path: 'eNoticeSign',component:ENoticeComponent,data:[{type:1,title: '客户告知书和保险经纪服务委托协议'}]},
{ path: 'renewal_reminder',component:RenewalReminderComponent,canActivate:[AuthGuard],data:[{type:1,title: '续期提醒'}]},
{ path: 'renewal_reminder_detail/:orderPayId',component:RenewalReminderDetailComponent,canActivate:[AuthGuard],data:[{type:1,title: '续期订单提醒'}]},
{ path: 'reminder_detail/:orderPayId',component:RenewalReminderDetailComponent,data:[{type:2,title: '续期订单详情信息'}]},
{ path: 'joint_sales',component:JointSalesComponent,canActivate:[AuthGuard],data:[{title: '联合销售列表'}]},
{ path: 'joint_sales_detail/:unionSalesId',component:JointSaleDetailComponent,canActivate:[AuthGuard],data:[{title: '联合销售签署'}]},
{ path: 'integration',component:IntegrationComponent,canActivate:[AuthGuard],data:[{title: '我的积分'}]},
{ path: 'integration_detail',component:IntegrationDetailComponent,canActivate:[AuthGuard],data:[{title: '积分明细'}]},
{ path: 'integration_rule',component:IntegrationRuleComponent,canActivate:[AuthGuard],data:[{title: '积分规则'}]},
{ path: 'video',component:VideoComponent,canActivate:[AuthGuard],data:[{title: '视频播放'}]},
{ path: 'pdfView',component:VideoComponent,canActivate:[AuthGuard],data:[{title: 'PDF查看'}]},
{ path: 'newsDetail/:id',component:NewsDetailComponent,canActivate:[AuthGuard],data:[{title: '消息详情'}]},
{ path: 'moreFeatures',component:MoreFeaturesComponent,canActivate:[AuthGuard],data:[{title: '全部工具'}]},
{ path: 'mine',component:MineComponent,canActivate:[AuthGuard],data:[{title: '我的'}]},
];
......
......@@ -44,7 +44,7 @@ export class RenewalReminderDetailComponent implements OnInit {
ngOnInit() {
this.deviceType = this.lifeCommonService.checkDeviceType();
this.orderPayId = this.route.snapshot.params['orderPayId'];
this.type = this.route.snapshot.data.type;
this.type = this.route.snapshot.data[0].type;
this.practitionerId = localStorage.getItem('lifeCustomerInfo')?JSON.parse(localStorage.getItem('lifeCustomerInfo'))['practitionerId']:null;
this.queryNoticeDetail();
}
......

101 KB | W: | H:

114 KB | W: | H:

src/assets/images/ask.gif
src/assets/images/ask.gif
src/assets/images/ask.gif
src/assets/images/ask.gif
  • 2-up
  • Swipe
  • Onion skin

5.4 KB | W: | H:

2.8 KB | W: | H:

src/assets/images/indexIcons/achievement.png
src/assets/images/indexIcons/achievement.png
src/assets/images/indexIcons/achievement.png
src/assets/images/indexIcons/achievement.png
  • 2-up
  • Swipe
  • Onion skin

7.17 KB | W: | H:

3.21 KB | W: | H:

src/assets/images/indexIcons/activityStatistics.png
src/assets/images/indexIcons/activityStatistics.png
src/assets/images/indexIcons/activityStatistics.png
src/assets/images/indexIcons/activityStatistics.png
  • 2-up
  • Swipe
  • Onion skin

7.07 KB | W: | H:

3.33 KB | W: | H:

src/assets/images/indexIcons/aiDoctor.png
src/assets/images/indexIcons/aiDoctor.png
src/assets/images/indexIcons/aiDoctor.png
src/assets/images/indexIcons/aiDoctor.png
  • 2-up
  • Swipe
  • Onion skin

7.07 KB | W: | H:

5.02 KB | W: | H:

src/assets/images/indexIcons/articleShare.png
src/assets/images/indexIcons/articleShare.png
src/assets/images/indexIcons/articleShare.png
src/assets/images/indexIcons/articleShare.png
  • 2-up
  • Swipe
  • Onion skin

9.77 KB | W: | H:

4.55 KB | W: | H:

src/assets/images/indexIcons/cffpTraining.png
src/assets/images/indexIcons/cffpTraining.png
src/assets/images/indexIcons/cffpTraining.png
src/assets/images/indexIcons/cffpTraining.png
  • 2-up
  • Swipe
  • Onion skin

1.76 KB | W: | H:

1.57 KB | W: | H:

src/assets/images/indexIcons/competition.png
src/assets/images/indexIcons/competition.png
src/assets/images/indexIcons/competition.png
src/assets/images/indexIcons/competition.png
  • 2-up
  • Swipe
  • Onion skin

7.64 KB | W: | H:

4.1 KB | W: | H:

src/assets/images/indexIcons/customerNotification.png
src/assets/images/indexIcons/customerNotification.png
src/assets/images/indexIcons/customerNotification.png
src/assets/images/indexIcons/customerNotification.png
  • 2-up
  • Swipe
  • Onion skin

2.49 KB | W: | H:

4.27 KB | W: | H:

src/assets/images/indexIcons/customers.png
src/assets/images/indexIcons/customers.png
src/assets/images/indexIcons/customers.png
src/assets/images/indexIcons/customers.png
  • 2-up
  • Swipe
  • Onion skin

7.7 KB | W: | H:

4.38 KB | W: | H:

src/assets/images/indexIcons/employmentApproval.png
src/assets/images/indexIcons/employmentApproval.png
src/assets/images/indexIcons/employmentApproval.png
src/assets/images/indexIcons/employmentApproval.png
  • 2-up
  • Swipe
  • Onion skin

2.84 KB | W: | H:

2.72 KB | W: | H:

src/assets/images/indexIcons/increaseStaff.png
src/assets/images/indexIcons/increaseStaff.png
src/assets/images/indexIcons/increaseStaff.png
src/assets/images/indexIcons/increaseStaff.png
  • 2-up
  • Swipe
  • Onion skin

8.21 KB | W: | H:

4.9 KB | W: | H:

src/assets/images/indexIcons/insuranceABC.png
src/assets/images/indexIcons/insuranceABC.png
src/assets/images/indexIcons/insuranceABC.png
src/assets/images/indexIcons/insuranceABC.png
  • 2-up
  • Swipe
  • Onion skin

8.48 KB | W: | H:

3.87 KB | W: | H:

src/assets/images/indexIcons/insuranceKnowledgeBase.png
src/assets/images/indexIcons/insuranceKnowledgeBase.png
src/assets/images/indexIcons/insuranceKnowledgeBase.png
src/assets/images/indexIcons/insuranceKnowledgeBase.png
  • 2-up
  • Swipe
  • Onion skin

7.37 KB | W: | H:

4.65 KB | W: | H:

src/assets/images/indexIcons/jobNumber.png
src/assets/images/indexIcons/jobNumber.png
src/assets/images/indexIcons/jobNumber.png
src/assets/images/indexIcons/jobNumber.png
  • 2-up
  • Swipe
  • Onion skin

8.51 KB | W: | H:

4.99 KB | W: | H:

src/assets/images/indexIcons/jointSale.png
src/assets/images/indexIcons/jointSale.png
src/assets/images/indexIcons/jointSale.png
src/assets/images/indexIcons/jointSale.png
  • 2-up
  • Swipe
  • Onion skin

2.15 KB | W: | H:

4.76 KB | W: | H:

src/assets/images/indexIcons/more.png
src/assets/images/indexIcons/more.png
src/assets/images/indexIcons/more.png
src/assets/images/indexIcons/more.png
  • 2-up
  • Swipe
  • Onion skin

7.98 KB | W: | H:

4.96 KB | W: | H:

src/assets/images/indexIcons/newTraining.png
src/assets/images/indexIcons/newTraining.png
src/assets/images/indexIcons/newTraining.png
src/assets/images/indexIcons/newTraining.png
  • 2-up
  • Swipe
  • Onion skin

7.66 KB | W: | H:

2.74 KB | W: | H:

src/assets/images/indexIcons/onlineInsurance.png
src/assets/images/indexIcons/onlineInsurance.png
src/assets/images/indexIcons/onlineInsurance.png
src/assets/images/indexIcons/onlineInsurance.png
  • 2-up
  • Swipe
  • Onion skin

1.9 KB | W: | H:

4.33 KB | W: | H:

src/assets/images/indexIcons/policyLists.png
src/assets/images/indexIcons/policyLists.png
src/assets/images/indexIcons/policyLists.png
src/assets/images/indexIcons/policyLists.png
  • 2-up
  • Swipe
  • Onion skin

9.32 KB | W: | H:

5.02 KB | W: | H:

src/assets/images/indexIcons/potentialCustomers.png
src/assets/images/indexIcons/potentialCustomers.png
src/assets/images/indexIcons/potentialCustomers.png
src/assets/images/indexIcons/potentialCustomers.png
  • 2-up
  • Swipe
  • Onion skin

8.01 KB | W: | H:

4.33 KB | W: | H:

src/assets/images/indexIcons/preJobTraining.png
src/assets/images/indexIcons/preJobTraining.png
src/assets/images/indexIcons/preJobTraining.png
src/assets/images/indexIcons/preJobTraining.png
  • 2-up
  • Swipe
  • Onion skin

9.22 KB | W: | H:

4.63 KB | W: | H:

src/assets/images/indexIcons/product-market.png
src/assets/images/indexIcons/product-market.png
src/assets/images/indexIcons/product-market.png
src/assets/images/indexIcons/product-market.png
  • 2-up
  • Swipe
  • Onion skin

2.29 KB | W: | H:

1.29 KB | W: | H:

src/assets/images/indexIcons/productLibary.png
src/assets/images/indexIcons/productLibary.png
src/assets/images/indexIcons/productLibary.png
src/assets/images/indexIcons/productLibary.png
  • 2-up
  • Swipe
  • Onion skin

6.89 KB | W: | H:

4.25 KB | W: | H:

src/assets/images/indexIcons/productPoster.png
src/assets/images/indexIcons/productPoster.png
src/assets/images/indexIcons/productPoster.png
src/assets/images/indexIcons/productPoster.png
  • 2-up
  • Swipe
  • Onion skin

8.12 KB | W: | H:

4.6 KB | W: | H:

src/assets/images/indexIcons/productTraining.png
src/assets/images/indexIcons/productTraining.png
src/assets/images/indexIcons/productTraining.png
src/assets/images/indexIcons/productTraining.png
  • 2-up
  • Swipe
  • Onion skin

8.55 KB | W: | H:

4.97 KB | W: | H:

src/assets/images/indexIcons/promotionTraining.png
src/assets/images/indexIcons/promotionTraining.png
src/assets/images/indexIcons/promotionTraining.png
src/assets/images/indexIcons/promotionTraining.png
  • 2-up
  • Swipe
  • Onion skin

429 Bytes | W: | H:

875 Bytes | W: | H:

src/assets/images/indexIcons/proposals.png
src/assets/images/indexIcons/proposals.png
src/assets/images/indexIcons/proposals.png
src/assets/images/indexIcons/proposals.png
  • 2-up
  • Swipe
  • Onion skin

2.05 KB | W: | H:

4.66 KB | W: | H:

src/assets/images/indexIcons/renewalManagement.png
src/assets/images/indexIcons/renewalManagement.png
src/assets/images/indexIcons/renewalManagement.png
src/assets/images/indexIcons/renewalManagement.png
  • 2-up
  • Swipe
  • Onion skin

7.78 KB | W: | H:

4.61 KB | W: | H:

src/assets/images/indexIcons/salary.png
src/assets/images/indexIcons/salary.png
src/assets/images/indexIcons/salary.png
src/assets/images/indexIcons/salary.png
  • 2-up
  • Swipe
  • Onion skin

7.3 KB | W: | H:

4.28 KB | W: | H:

src/assets/images/indexIcons/schedule.png
src/assets/images/indexIcons/schedule.png
src/assets/images/indexIcons/schedule.png
src/assets/images/indexIcons/schedule.png
  • 2-up
  • Swipe
  • Onion skin

8.27 KB | W: | H:

4.38 KB | W: | H:

src/assets/images/indexIcons/targetSetting.png
src/assets/images/indexIcons/targetSetting.png
src/assets/images/indexIcons/targetSetting.png
src/assets/images/indexIcons/targetSetting.png
  • 2-up
  • Swipe
  • Onion skin

9.27 KB | W: | H:

4.41 KB | W: | H:

src/assets/images/indexIcons/team.png
src/assets/images/indexIcons/team.png
src/assets/images/indexIcons/team.png
src/assets/images/indexIcons/team.png
  • 2-up
  • Swipe
  • Onion skin

1.5 KB | W: | H:

1.19 KB | W: | H:

src/assets/images/indexIcons/teamCompetition.png
src/assets/images/indexIcons/teamCompetition.png
src/assets/images/indexIcons/teamCompetition.png
src/assets/images/indexIcons/teamCompetition.png
  • 2-up
  • Swipe
  • Onion skin

8.43 KB | W: | H:

4.66 KB | W: | H:

src/assets/images/indexIcons/teamIncreaseStaff.png
src/assets/images/indexIcons/teamIncreaseStaff.png
src/assets/images/indexIcons/teamIncreaseStaff.png
src/assets/images/indexIcons/teamIncreaseStaff.png
  • 2-up
  • Swipe
  • Onion skin

1.26 KB | W: | H:

1.12 KB | W: | H:

src/assets/images/indexIcons/teamLearning.png
src/assets/images/indexIcons/teamLearning.png
src/assets/images/indexIcons/teamLearning.png
src/assets/images/indexIcons/teamLearning.png
  • 2-up
  • Swipe
  • Onion skin

8.76 KB | W: | H:

4.92 KB | W: | H:

src/assets/images/indexIcons/teamPerformance.png
src/assets/images/indexIcons/teamPerformance.png
src/assets/images/indexIcons/teamPerformance.png
src/assets/images/indexIcons/teamPerformance.png
  • 2-up
  • Swipe
  • Onion skin

1.67 KB | W: | H:

1.54 KB | W: | H:

src/assets/images/indexIcons/teamPromotionAssessment.png
src/assets/images/indexIcons/teamPromotionAssessment.png
src/assets/images/indexIcons/teamPromotionAssessment.png
src/assets/images/indexIcons/teamPromotionAssessment.png
  • 2-up
  • Swipe
  • Onion skin

7.79 KB | W: | H:

4.73 KB | W: | H:

src/assets/images/indexIcons/temPEP.png
src/assets/images/indexIcons/temPEP.png
src/assets/images/indexIcons/temPEP.png
src/assets/images/indexIcons/temPEP.png
  • 2-up
  • Swipe
  • Onion skin

4.79 KB | W: | H:

3.98 KB | W: | H:

src/assets/images/indexIcons/training.png
src/assets/images/indexIcons/training.png
src/assets/images/indexIcons/training.png
src/assets/images/indexIcons/training.png
  • 2-up
  • Swipe
  • Onion skin

495 Bytes | W: | H:

809 Bytes | W: | H:

src/assets/images/indexIcons/ydCollege.png
src/assets/images/indexIcons/ydCollege.png
src/assets/images/indexIcons/ydCollege.png
src/assets/images/indexIcons/ydCollege.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -49,7 +49,7 @@
<img src="assets/images/loading.gif" alt="loading" class="img-responsive" style="width: 68px;height: 68px;">
</div> -->
<div id="adv"
style="width: 100%;min-width: 320px;height:100%;max-width: 640px;overflow: hidden;position: fixed;top: 0;right: 0; bottom: 0;left: 0;background: #fff;margin: auto;display: none;">
style="width: 100%;min-width: 320px;height:100%;max-width: 640px;overflow: hidden;position: fixed;top: 0;right: 0; bottom: 0;left: 0;background: #fff;margin: auto;display: none;z-index:3">
<div class="content" style="text-align: center;margin: 0 auto;">
<img style="width:100%;margin-bottom: 15px;" src="assets/images/loading_bg.png">
<!-- <div style="margin-top: 45%;">欢迎回家,先喝碗鸡汤</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