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.
31 lines
1.2 KiB
31 lines
1.2 KiB
<wxs module="filter" src="../../../../utils/filter.wxs"></wxs>
|
|
<view class="notice-detail">
|
|
<view class="selfContent" wx:if="{{!preloadVisible}}">
|
|
<view class="detail-title">
|
|
<view>{{noticeObj.noticeTitle}}</view>
|
|
<view class="detail-title-img">
|
|
<image wx:if="{{noticeObj.mobile != '' && noticeCategory == 'notice_navigation_hot'}}" src="../../images/phone.png" data-mobile="{{noticeObj.mobile}}" bindtap="mobile"/>
|
|
</view>
|
|
</view>
|
|
<view class="detail-subtitle">
|
|
<view class="left">
|
|
<span>{{noticeObj.deptName}}</span>
|
|
<span>{{filter.formatTime(noticeObj.noticeTime, '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> -->
|
|
<parser html="{{noticeObjContent}}"></parser>
|
|
</view>
|
|
</view>
|
|
<view class="preload" wx:else>
|
|
<view class="preload-title"></view>
|
|
<view class="preload-content"></view>
|
|
</view>
|
|
</view>
|