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.
35 lines
1.2 KiB
35 lines
1.2 KiB
6 years ago
|
<view class="change-to-issue">
|
||
|
|
||
|
<view class="choose-classify" bindtap="chooseClassify">
|
||
|
<view class="name">选择分类</view>
|
||
|
<view class="right">
|
||
|
<view class="selected-classify">{{selectedClassify.label}}</view>
|
||
|
<image class="right-sword, {{cascaderVisible ? 'selected' : ''}}" src="../../images/changeToIssue-rrightsword.png" />
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="handle-abdice">
|
||
|
<view class="name">处理意见</view>
|
||
|
<textarea
|
||
|
wx:if="{{!cascaderVisible}}"
|
||
|
disabled="{{cascaderVisible}}"
|
||
|
maxlength="100"
|
||
|
value="{{textareaValue}}"
|
||
|
placeholder="请您填写居民话题转成议题的答复意见,向居民公开展示"
|
||
|
placeholder-class="hover-class"
|
||
|
bindinput="bindTextareaValue"/>
|
||
|
<view wx:else class="textarea">{{textareaValue}}</view>
|
||
|
<view class="topline">{{textareaValue.length}}/100</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="operation">
|
||
|
<button hover-class="hover-change" bindtap="debounceChangeToIssue">转成议题</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<wux-cascader
|
||
|
visible="{{ cascaderVisible }}"
|
||
|
title="所选分类"
|
||
|
options="{{ cascaderOptions }}"
|
||
|
bind:close="onClose"
|
||
|
bind:change="onChange"/>
|