日照项目的居民端小程序
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.

73 lines
2.9 KiB

<view wx:if="{{ iniLoaded }}">
<view class="m-info">
<view class="title {{ info.issueStatus=='closed' ? 'z-closed' : '' }}">
{{ info.issueTitle }}
</view>
<view class="content-hint">针对话题</view>
<view class="content">
<fold-text>
<text>{{ topicInfo.topicContent }}</text>
</fold-text>
</view>
<view class="pics">
<image mode="aspectFill" bind:tap="previewImg" data-index="{{ index }}" wx:key="*this" wx:for="{{ topicImgList }}" src="{{ item }}"></image>
</view>
</view>
<view class="m-info">
<view class="content-hint">建议采用如下方式处理</view>
<view class="content">
<fold-text>
<text>{{ info.issueSuggestion }}</text>
</fold-text>
</view>
<view class="else">所属网格:{{ info.gridName }}</view>
<view class="else">话题发表人:{{ topicInfo.publishedUser }}</view>
<view class="else">
话题发表时间:
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ topicInfo.publishedTime }}" />
</view>
<view class="else">议题发表人:{{ info.issuePublisher }}</view>
</view>
<view>
<view class="m-list" hidden="{{ progressList.length==0 }}">
<view class="title">审核历史</view>
<view class="list">
<view class="item {{ index===0 ? 'z-on' : '' }}" wx:for="{{ progressList }}">
<view class="name">【{{ item.actionTypeName}}】</view>
<view class="date">
<text>{{item.actionTimeField}}</text>
<date-show format="yyyy-MM-dd hh:mm:ss" timestamp="{{ item.operateTime }}" />
</view>
<view class="detail" wx:if="{{false}}">
<view class="detail-field">驳回人:</view>
<view class="detail-value">{{ item.staffName}}</view>
</view>
<view class="detail" wx:if="{{item.actionType=='rejected'}}">
<view class="detail-field">驳回理由:</view>
<view class="detail-value">
<fold-text row="{{ 3 }}">{{ item.reason }}</fold-text>
</view>
</view>
<view class="detail" wx:if="{{item.actionType=='approved' && item.reason}}">
<view class="detail-field">通过理由:</view>
<view class="detail-value">
<fold-text row="{{ 3 }}">{{ item.reason }}</fold-text>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="u-bottom-placeholder" wx:if="{{progressList.length>0 && progressList[0].actionType=='rejected'}}"></view>
<view class="m-operate" wx:if="{{progressList.length>0 && progressList[0].actionType=='rejected'}}">
<view class="btn yl" bind:tap="back">返回</view>
<view class="btn zyt" bind:tap="reedit">重新编辑</view>
</view>
</view>
<loading showed="{{!iniLoaded}}" />
<modal id="modal"></modal>