123456789101112131415161718192021222324252627 |
- <!--pages/waterabnormal/feedback/feedback.wxml-->
- <view class="feedback">
- <mp-navigation-bar loading="{{loading}}" show="{{show}}" animated="{{animated}}" color="{{color}}"
- background="{{background}}" title="{{title}}" back="{{false}}">
- <view slot="left" bindtap="toBack">
- <image class="back" src="/static/img/btn_close.png"></image>
- </view>
- </mp-navigation-bar>
- <view class="title">请根据实际情况进行如下反馈:</view>
- <view class="item">
- <radio-group bindchange="fieldChange" data-field="feedbackStatus">
- <label class="radio">
- <radio value="1" checked="true" />
- 确认水量持续异常情况为实际情况,无需再次预警。
- </label>
- <label class="radio">
- <radio value="2" />
- 用水量确实存在异常,反馈描述如下:
- </label>
- </radio-group>
- <view class="desc">
- <textarea placeholder="请输入反馈信息内容" bindinput="contentChange" value="{{formData.feedbackContent}}" maxlength="20" placeholder-style="color: rgba(188, 191, 202, 1)" />
- <text class="limit-length">{{formData.feedbackContent.length}}/20</text>
- </view>
- <button class="btn-big" bindtap="submit">提交</button>
- </view>
- </view>
|