Commit f4b59caa by sunchao

我的展业二级菜单调整&核保问题库支持富文本

parent 7d7d3ae8
...@@ -10,6 +10,17 @@ ...@@ -10,6 +10,17 @@
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
padding: 15px 0; padding: 15px 0;
position: relative;
span{
display: inline-block;
width: 10px;
height: 10px;
position: absolute;
background: red;
border-radius: 50%;
right: 40%;
top: 20%;
}
img{ img{
width: 80px; width: 80px;
} }
......
...@@ -68,12 +68,12 @@ export class MenuItemComponent implements OnInit { ...@@ -68,12 +68,12 @@ export class MenuItemComponent implements OnInit {
title: '我的展业', title: '我的展业',
type:'exhibition', type:'exhibition',
content: [ content: [
{ no: 23, subtitle: '新人入口', icon: 'pin', path: '', routerLink: 'newPeople' ,showSubMenu:true},
{ no: 24, subtitle: '目标设置', icon: 'set', path: '', routerLink: 'target',showSubMenu:true },
{ no: 12, subtitle: '销售保单', icon: 'policy', path: '', routerLink: '',showSubMenu:true }, { no: 12, subtitle: '销售保单', icon: 'policy', path: '', routerLink: '',showSubMenu:true },
{ no: 20, subtitle: '我的客户', icon: 'customer', path: '', routerLink: 'customer',showSubMenu:true }, { no: 20, subtitle: '我的客户', icon: 'customer', path: '', routerLink: 'customer',showSubMenu:true },
// { no: 14, subtitle: '我的佣金', icon: 'commission', path: '', routerLink: '',showSubMenu:true }, // { no: 14, subtitle: '我的佣金', icon: 'commission', path: '', routerLink: '',showSubMenu:true },
{ no: 19, subtitle: '薪资单', icon: 'salary', path: '', routerLink: 'salary',showSubMenu:this.isShowSalay }, { no: 19, subtitle: '薪资单', icon: 'salary', path: '', routerLink: 'salary',showSubMenu:this.isShowSalay },
{ no: 23, subtitle: '新人入口', icon: 'pin', path: '', routerLink: 'newPeople' ,showSubMenu:true},
{ no: 24, subtitle: '目标设置', icon: 'set', path: '', routerLink: 'target',showSubMenu:true },
{ no: 26, subtitle: '投核保知识库', icon: 'ask', path: '', routerLink: 'underwriting_knowledge' ,showSubMenu:true}, { no: 26, subtitle: '投核保知识库', icon: 'ask', path: '', routerLink: 'underwriting_knowledge' ,showSubMenu:true},
// { no: 25, subtitle: '', icon: 'default', path: '', routerLink: '' ,showSubMenu:true}, // { no: 25, subtitle: '', icon: 'default', path: '', routerLink: '' ,showSubMenu:true},
// { no: 26, subtitle: '', icon: 'default', path: '', routerLink: '' ,showSubMenu:!this.isShowSalay} // { no: 26, subtitle: '', icon: 'default', path: '', routerLink: '' ,showSubMenu:!this.isShowSalay}
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
></span> ></span>
</h4> </h4>
<div class="answerDate" *ngIf="listItem.spread">{{listItem.submitDate}}</div> <div class="answerDate" *ngIf="listItem.spread">{{listItem.submitDate}}</div>
<div class="answer" *ngIf="listItem.spread">{{listItem.answer}}</div> <div class="answer rich_media_content" *ngIf="listItem.spread" [innerHtml]="listItem.answer | safeHtml"></div>
<div class="answerDate" *ngIf="listItem.spread">{{listItem.firstAnswerDate}}</div> <div class="answerDate" *ngIf="listItem.spread">{{listItem.firstAnswerDate}}</div>
</div> </div>
<div *ngIf="!List?.length" style="margin-top: 10%;text-align: center;font-size: 20px;">暂无投核保问题</div> <div *ngIf="!List?.length" style="margin-top: 10%;text-align: center;font-size: 20px;">暂无投核保问题</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