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.3 KiB
38 lines
1.3 KiB
<view class="page"> |
|
<view class="title">{{detail.Title}}</view> |
|
<view class="info"> |
|
<view class="date">{{detail.PublishTime}}</view> |
|
<view class="eye"> |
|
<image class="icon" src="{{imageUrl}}icon9.png?t={{Timestamp}}"></image> |
|
{{detail.ReadCount}} |
|
</view> |
|
</view> |
|
<view class="file-card" wx:for="{{detail.FileList}}" bind:tap="handlePopup" data-index="{{index}}"> |
|
<image class="icon" src="{{imageUrl}}{{fileIcon[item.FileType] || 'none'}}.png?t={{Timestamp}}"></image> |
|
<view class="wrap"> |
|
<view class="content">{{item.FileName}}</view> |
|
<view class="size">{{item.FileSizeName}}</view> |
|
</view> |
|
<view class="btn">下载</view> |
|
</view> |
|
|
|
<view class="mp-html"> |
|
<mp-html container-style="overflow: hidden;word-break:all" content="{{detail.Content}}"></mp-html> |
|
</view> |
|
|
|
<view class="page-footer"> |
|
<image class="avatar" src="{{imageUrl}}icon10.png?t={{Timestamp}}"></image> |
|
<view class="title">TED规范化诊治中心</view> |
|
<button class="share" open-type="share" wx:if="{{showShare}}"> |
|
<image class="icon" src="{{imageUrl}}icon22.png?t={{Timestamp}}"></image> |
|
</button> |
|
</view> |
|
</view> |
|
|
|
<popup |
|
show="{{popupShow}}" |
|
type="{{popupType}}" |
|
params="{{popupParams}}" |
|
bind:ok="handlePopupOk" |
|
bind:cancel="handlePopupCancel" |
|
></popup>
|
|
|