You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.6 KiB
38 lines
1.6 KiB
<wxs module="filter" src="../../../../utils/filter.wxs"></wxs>
|
|
<view class="notice-detail">
|
|
<view class="selfContent">
|
|
<view class="detail-title">{{noticeObj.newsTitle}}</view>
|
|
<view class="detail-subtitle">
|
|
<view class="left">
|
|
<span>{{noticeObj.deptName}}</span>
|
|
<span>{{filter.formatTime(noticeObj.newsStartTime, 'yyyy-MM-dd')}}</span>
|
|
</view>
|
|
<view class="right">
|
|
<view class="readNum">
|
|
<image src="../../images/ic_yueduliang.png" />
|
|
</view>
|
|
<view class="num">{{noticeObj.readingAmount}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="richContent">
|
|
<rich-text space="nbsp" nodes="{{noticeObjContent}}"></rich-text>
|
|
</view>
|
|
<view class="operation">
|
|
<view class="button {{supportStatus == 'supported' ? 'active' : ''}}" data-state="0" data-byself="true" bindtap="newsPosition">
|
|
<view>
|
|
<image src="{{supportStatus == 'supported' ? '../../images/zanliang.png' : '../../images/zanbuliang.png'}}" />
|
|
</view>
|
|
<span>支持{{noticeObj.likeNumber}}</span>
|
|
</view>
|
|
<view class="button {{dispportStatus == 'dispported' ? 'active' : ''}}" data-state="1" data-byself="true" bindtap="newsPosition">
|
|
<view>
|
|
<image src="{{dispportStatus == 'dispported' ? '../../images/cailiang.png' : '../../images/caibuliang.png'}}" />
|
|
</view>
|
|
<span>不支持{{noticeObj.unlikeNumber}}</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<completeInfo-dialog
|
|
completeInfoDialogVisible="{{completeInfoDialogVisible}}">
|
|
</completeInfo-dialog>
|