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.
20 lines
1.7 KiB
20 lines
1.7 KiB
5 years ago
|
<!-- pages/issueDetail/issueDetail.wxml -->
|
||
|
<!-- 议题详情(包括表达态度) -->
|
||
|
<event-detail-component detailData="{{detailData}}" issueState="{{issueState}}"></event-detail-component>
|
||
|
<!-- 处理进度 -->
|
||
|
<issue-process-list-component processList="{{processList}}" wx:if="{{issueState == '1' || issueState == '3'}}"></issue-process-list-component>
|
||
|
<!-- 议题处理-待处理 -->
|
||
|
<handle-submit-component wx:if="{{issueState == '1'}}" handleSubmitData="{{handleSubmitData}}" bind:showActionSheet="onShowActionSheet" bind:bindFormSubmit="onBindFormSubmit"></handle-submit-component>
|
||
|
<!-- 事件审核-待回应 -->
|
||
|
<handle-wait-response-component wx:if="{{issueState == '0'}}" waitResponseData="{{handleSubmitData}}" optionsCascader="{{optionsCascader}}" bind:showActionSheet="onShowActionSheet" bind:onOpenCascader="onOpenCascader" bind:bindFormSubmit="onBindFormSubmit"></handle-wait-response-component>
|
||
|
<!-- 议题处理中调用上拉列表(与议题处理组件共同使用) -->
|
||
|
<wux-actionsheet id="wux-actionsheet" wx:if="{{issueState == '0' || issueState == '1'}}" />
|
||
|
<!-- 审核后提醒 -->
|
||
|
<wux-popup closable visible="{{ visible }}" title="议题审核" content="居民将接收到审核通知,议题显示在居民端党群议事" bind:close="onClose" wx:if="{{issueState == '0'}}">
|
||
|
<view slot="footer" class="popup__button" bindtap="onClose">确定</view>
|
||
|
</wux-popup>
|
||
|
<!-- 处理后提醒 -->
|
||
|
<wux-popup closable visible="{{ visible }}" title="议题处理" content="用户将接收到处理进展通知" bind:close="onClose" wx:if="{{issueState == '1'}}">
|
||
|
<view slot="footer" class="popup__button" bindtap="onClose">确定</view>
|
||
|
</wux-popup>
|
||
|
<wux-toast id="wux-toast" />
|