daofu-applet/pages/the-masses/escalation/index.wxml

22 lines
899 B
Plaintext
Raw Normal View History

2024-06-04 14:45:44 +08:00
<title-bar title="上报诉求"></title-bar>
<scroll-view scroll-y refresher-enabled style="height: calc(100vh - {{topBarH}}px);">
<view class="item">
<!-- 内容 -->
<view class="h-div v-center header">
<text class="single"></text>
<text class="title">困难诉求</text>
</view>
<textarea bindinput="inputContent" data-name="content" value="{{postData.content}}" style="color: #333333;" class="put v-div" placeholder="请输入困难诉求"></textarea>
</view>
<view class="space"></view>
</scroll-view>
<view class="option" wx:if="{{!postData.difficultyState}}">
<view catchtap="push" class="btn">上报</view>
</view>
<view class="option" wx:else="">
<view class="option_div">
<view catchtap="cancellation" class="btn" wx:if="{{postData.difficultyState == 1}}">取消上报</view>
<view catchtap="delete" class="btn">删除</view>
</view>
</view>