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.
15 lines
968 B
15 lines
968 B
5 years ago
|
<!-- pages/itemDetail/itemDetail.wxml -->
|
||
|
<!-- 项目详情(包括表达态度) -->
|
||
|
<event-detail-component detailData="{{detailData}}" itemState="{{itemState}}"></event-detail-component>
|
||
|
<!-- 处理进度 -->
|
||
|
<item-process-list-component processList="{{processList}}"></item-process-list-component>
|
||
|
<!-- 项目处理 -->
|
||
|
<handle-submit-item-component handleSubmitData="{{handleSubmitData}}" itemId="{{itemId}}" bind:showActionSheet="onShowActionSheet" bind:bindFormSubmit="onBindFormSubmit"></handle-submit-item-component>
|
||
|
<!-- 项目处理中调用上拉列表(与项目处理组件共同使用) -->
|
||
|
<wux-actionsheet id="wux-actionsheet" />
|
||
|
<!-- 提交后提醒 -->
|
||
|
<wux-popup closable visible="{{ visible }}" title="项目处理" content="用户将接收到处理进展通知部门将接收到新的待处理项目" bind:close="onClose">
|
||
|
<view slot="footer" class="popup__button" bindtap="onClose">确定</view>
|
||
|
</wux-popup>
|
||
|
|
||
|
<wux-toast id="wux-toast" />
|