- <view class="choose-error">
- <view>选择您要反馈的问题类型</view>
- <view>
- <view bindtap="clickTitle" style="{{error1?'color: #fff;background: #5674F0;':''}}">标题有误</view>
- <view bindtap="clickMsg" style="{{error2?'color: #fff;background: #5674F0;':''}}">描述有误</view>
- </view>
- </view>
- <view class="content">
- <view>反馈内容</view>
- <textarea minlength="{{min}}" maxlength="{{max}}" placeholder="请输入您的反馈意见" bindinput="inputs" bindblur="getContent">
- <text class="currentWordNumber">{{currentWordNumber|0}}/{{max}}</text>
- </textarea>
- </view>
- <view class="submit" bindtap="submit" style="{{isSubmit?'background: #5674F0;':''}}">提交</view>
|