63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
<view class="report">
|
|
<view class="row">
|
|
<view class="row-name">
|
|
<text>*</text>
|
|
信访标题
|
|
</view>
|
|
<view class="row-main">
|
|
{{reportDetail.visitsTitle}}
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="row-name">
|
|
<text>*</text>
|
|
是否匿名
|
|
</view>
|
|
<view class="row-main">
|
|
<radio-group>
|
|
<label>
|
|
<radio checked="{{reportDetail.isAnonymous == '1'}}" disabled></radio>匿名
|
|
</label>
|
|
<label>
|
|
<radio value="0" checked="{{reportDetail.isAnonymous == '0'}}" disabled></radio>不匿名
|
|
</label>
|
|
</radio-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="file">
|
|
<view class="title">
|
|
详细信息
|
|
</view>
|
|
<view class="file-box">
|
|
<view class="file-title">
|
|
<text>*</text>
|
|
信访内容
|
|
</view>
|
|
<view class="file-content">
|
|
{{reportDetail.visitsContent}}
|
|
</view>
|
|
</view>
|
|
<view class="file-box" wx:key="{{reportDetail.visitsPhoto.length > 0}}">
|
|
<view class="file-title">
|
|
事件图片
|
|
</view>
|
|
<view class="file-content">
|
|
<view class="img-box" wx:for="{{reportDetail.visitsPhoto}}" wx:key="index">
|
|
<view class="img-view">
|
|
<image src="{{reportUrl + baseImgUrl + item}}" mode="heightFix"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="file-box" wx:if="{{reportDetail.visitsVideo}}">
|
|
<view class="file-title">
|
|
视频
|
|
</view>
|
|
<view class="file-content">
|
|
<view class="video-box" >
|
|
<video src="{{reportUrl + baseImgUrl + reportDetail.visitsVideo}}"></video>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |