榆山
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.
 
 

67 lines
3.8 KiB

<!-- 议题处理components/handleSubmit/handleSubmitItem.wxml -->
<!-- 处理操作 -->
<view class="bgfff paddingX24 marginB12">
<view class="flex justify-space-between handle" bindtap="showActionSheet">
<view class="handle-text">处理操作</view>
<view class="handle-more">
<text class="handle-more-text">{{handleSubmitData.text}}</text>
<text>></text>
</view>
</view>
<!-- 吹哨部门 -->
<view wx:if="{{state == '1'}}">
<block wx:for="{{whistlingDeptList}}" wx:key="whistlingDeptList {{index}}">
<view class="flex justify-start align-center dept-result-dtos" data-item="{{item}}" data-index="{{index}}" bindtap="onChangeDeptResultDTOS">
<image class="dept-result-dtos-image" src="{{item.selected ? selectImage : selectNoImage}}"></image>
<view>{{item.deptName}}</view>
</view>
</block>
</view>
</view>
<!-- 满意度评价 -->
<view class="bgfff paddingX24 marginB12" wx:if="{{state == '10'}}">
<view class="evaluate-title">满意度评价</view>
<block wx:for="{{evaluationDeptList}}" wx:key="evaluationDeptList {{index}}">
<view class="flex justify-space-between evaluate" data-item="{{item}}" data-index="{{index}}" bindtap="showActionSheetEvaluate">
<view class="evaluate-text">{{item.deptName}}</view>
<view class="evaluate-more">
<text class="evaluate-more-text">{{item.evaluationLevelName}}</text>
<text>></text>
</view>
</view>
</block>
</view>
<!-- 回复居民意见 -->
<view class="bgfff paddingX24 marginB12 advice">
<view class="advice-title">回复居民意见</view>
<view class="_textarea-view {{isBlock?'block':'none'}}" bindtap="clickTextarea" wx:if="{{viewData}}">
{{viewData}}</view>
<view class="textarea-view {{isBlock?'block':'none'}}" bindtap="clickTextarea" wx:else>请填写居民诉求的处理情况以及答复意见,向居民公开展示</view>
<textarea class="{{isBlock?'none':'block'}}" placeholder-class="place-holder" placeholder="请填写居民诉求的处理情况以及答复意见,向居民公开展示" bindblur="bindInputOutHandleAdvice" maxlength="500" focus='{{focus}}'/>
<view>
<wux-upload listType="picture-card" defaultFileList="{{ fileList }}" max="3" count="3" url="{{BASEURL}}group/topic/upload" bind:change="onChange" bind:complete="onComplete" bind:preview="onPreview" data-type="outHandleImages">
<image src="https://epdc-yushan.elinkservice.cn/files-pro/20210610/1810e711e94e4ed089069f92d968f1d2.png"></image>
</wux-upload>
</view>
</view>
<!-- 项目处理意见 -->
<view class="bgfff paddingX24 marginB12 advice">
<view class="advice-title">项目处理意见</view>
<view class="_textarea-view {{_isBlock?'block':'none'}}" bindtap="_clickTextarea" wx:if="{{_viewData}}">
{{_viewData}}</view>
<view class="textarea-view {{_isBlock?'block':'none'}}" bindtap="_clickTextarea" wx:else>请填写项目的实际办理情况(如自己处理、吹哨报 道、内部协调),便于相关部门了解项目的实际情况</view>
<textarea placeholder="请填写项目的实际办理情况(如自己处理、吹哨报 道、内部协调),便于相关部门了解项目的实际情况" class="{{_isBlock?'none':'block'}}" placeholder-class="place-holder" bindblur="bindInputHandleAdvice" maxlength="500" focus='{{_focus}}'/>
<view>
<wux-upload listType="picture-card" defaultFileList="{{ fileList }}" max="3" count="3" url="{{BASEURL}}group/topic/upload" bind:change="onChange" bind:complete="onComplete" bind:preview="onPreview" data-type="handleImages">
<image src="https://epdc-yushan.elinkservice.cn/files-pro/20210610/1810e711e94e4ed089069f92d968f1d2.png"></image>
</wux-upload>
</view>
</view>
<!-- 确定 -->
<view class="submit" bindtap="bindFormSubmit">确定</view>
<wux-toast id="wux-toast" />