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.
12 lines
470 B
12 lines
470 B
1 year ago
|
<!--package/advisoryNotice/detail/detail.wxml-->
|
||
|
<view class="card">
|
||
|
<view style="text-align: center;margin-bottom:20rpx">{{detailData.title}}</view>
|
||
|
<view>{{detailData.content}}</view>
|
||
|
<view style="position: absolute; right: 0; margin-top: 20rpx; margin-right:20rpx ;">发布时间:{{time}}</view>
|
||
|
|
||
|
<view wx:for="{{imgList}}" wx:for-item="img" wx:key="*this" >
|
||
|
<image class="img" src="{{imgUrl+img}}" mode="aspectFit" />
|
||
|
</view>
|
||
|
|
||
|
</view>
|