12345678910111213141516171819 |
- <!--pages/writeSuggestion/writeSuggestion.wxml-->
- <view>
- <!-- 建议标题 -->
- <view class="suggestWrapper">
- <text class="suggestTitle">建议标题</text>
- <textarea name="建议标题" cols="30" rows="10" maxlength="50" suggestTitle placeholder="不超过50字" class="titleInput" bindinput="getSuggestTitle"></textarea>
- </view>
- <!-- 建议内容 -->
- <view class="suggestWrapper">
- <text class="suggestTitle">建议内容</text>
- <textarea name="建议内容" cols="30" rows="10" maxlength="512" suggestTitle placeholder="不超过512字" class="contentInput" bindinput="getSuggestContent"></textarea>
- </view>
- </view>
- <!-- 取消和提交按钮 -->
- <view class="suggestBtn">
- <view class="confirmBtn" bindtap="toCancel">取消</view>
- <view class="confirmBtn" bindtap="toConfirm">提交</view>
- </view>
|