Newer
Older
<ion-header>
<ion-navbar>
<ion-title>我的审核</ion-title>
</ion-navbar>
</ion-header>
<ion-refresher (ionRefresh)="doRefresh($event)">
<ion-refresher-content pullingText="下拉刷新"
refreshingSpinner="bubbles">
</ion-refresher-content>
</ion-refresher>
<span class="{{publishStatus == 2?'duty-title':''}}">未审核</span>
</div>
<span class="{{publishStatus == 3?'duty-title':''}}">已审核</span>
</div>
</div>
<ion-col col-8 class="news-left">
<p class="news-title">
{{new.title}}
</p>
<p class="news-end">
<span class="margin-right-10" *ngIf="publishStatus == 2">提交人:<span>{{new.submitterName }}</span> </span>
<span *ngIf="publishStatus == 2">提交时间:<span>{{new.createTime | date:'yyyy-MM-dd'}}</span></span>
<span *ngIf="publishStatus == 3">发布时间:</span><span>{{new.publishTime | date:'yyyy-MM-dd'}}</span>
<span class="recall" float-right *ngIf="publishStatus == 3" tappable (click)="recall(new,$event)">退回</span>
</p>
</ion-col>
<ion-col col-4 class="news-right">
<img src="{{picture+new.imgUrl}}">
</ion-col>
</ion-row>
<ion-col col-12 class="news-left">
<p class="news-title">
{{new.title}}
</p>
<p class="news-end">
<span class="margin-right-10" *ngIf="publishStatus == 2">提交人:<span>{{new.submitterName }}</span> </span>
<span *ngIf="publishStatus == 2">提交时间:<span>{{new.createTime | date:'yyyy-MM-dd'}}</span></span>
<span *ngIf="publishStatus == 3">发布时间:</span><span>{{new.publishTime | date:'yyyy-MM-dd'}}</span>
<span class="recall" float-right *ngIf="publishStatus == 3" tappable (click)="recall(new,$event)">退回</span>
</p>
</ion-col>
</ion-row>
</ng-container>
</ng-container>
<ion-list text-center style="margin-top: 10rem" *ngIf="!isLoad && checkList.length == 0">
<img style="width: 20%;" src="./assets/imgs/no-info.png" alt="">
<p text-center>
暂无审核
</p>
</ion-list>
</div>