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

38 lines
2.0 KiB

<!-- components/event/handleSubmit/waitResponse/waitResponse.wxml -->
<!-- 审核操作 -->
<view class="bgfff paddingX24 marginB12 flex justify-space-between handle" bindtap="showActionSheetEvent">
<view class="handle-text">审核操作</view>
<view class="handle-more">
<text class="handle-more-text">{{waitResponseData.eventName}}</text>
<text>></text>
</view>
</view>
<!-- 选择分类 -->
<view wx:if="{{waitResponseData.eventState =='4'}}" class="bgfff paddingX24 marginB12 flex justify-space-between handle" bindtap="onOpenCascader">
<view class="handle-text">选择分类</view>
<view class="handle-more">
<text class="handle-more-text">{{waitResponseData.categoryName}}</text>
<text>></text>
</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 class="{{isBlock?'none':'block'}}" placeholder-class="place-holder" placeholder="请填写居民诉求的处理情况以及答复意见,向居民公开展示" bindblur="bindInputAdvice" 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:success="onSuccess" bind:fail="onFail" bind:complete="onComplete" bind:preview="onPreview">
<image src="../../../../images/uploadImg3.png"></image>
</wux-upload>
</view>
</view>
<!-- 确定 -->
<view class="submit" bindtap="bindFormSubmit">确定</view>
<!-- 事件分类-待回应 -->
<wux-cascader visible="{{ visibleCascader }}" title="选择分类" options="{{ optionsCascader }}" bind:close="onCloseCascader" bind:change="onChangeCascader" />