12345678910111213141516171819 |
- <!--pages/writeComplaint/writeComplaint.wxml-->
- <view>
- <!-- 投诉标题 -->
- <view class="complaintWrapper">
- <text class="complaintTitle">投诉标题</text>
- <textarea name="投诉标题" cols="30" rows="10" maxlength="50" placeholder="不超过50字" class="titleInput" bindinput="getComplaintTitle"></textarea>
- </view>
- <!-- 投诉内容 -->
- <view class="complaintWrapper">
- <text class="complaintTitle">投诉内容</text>
- <textarea name="投诉内容" cols="30" rows="10" maxlength="512" placeholder="不超过512字" class="contentInput" bindinput="getComplaintContent"></textarea>
- </view>
- </view>
- <!-- 取消和提交按钮 -->
- <view class="suggestBtn">
- <view class="confirmBtn" bindtap="toCancel">取消</view>
- <view class="confirmBtn" bindtap="toConfirm">提交</view>
- </view>
|