studyplus/pages/feedBack/feedBack.wxml
2018-10-03 13:05:05 +08:00

28 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="top">
<view class="w">
<view class="title">请选择反馈类型*</view>
<view class="chose">
<view class="{{box_1_style?'box1':'box2'}}" bindtap="box_1">程序错误</view>
<view class="{{box_2_style?'box1':'box2'}}" bindtap="box_2">优化改进</view>
<view class="{{box_3_style?'box1':'box2'}}" bindtap="box_3">新功能</view>
</view>
</view>
</view>
<view class="cen">
<view class="w">
<view class="title">
<view>请输入反馈*</view>
<view class="{{feedBack_error?'showError':'showNormal'}}">请输入内容</view>
</view>
<textarea class="item" placeholder="{{placeholder}}" bindinput="fankui" maxlength="300"></textarea>
<view class="title">
<view>联系方式(选填)</view>
<view class="{{qqNum_error?'showError':'showNormal'}}">请输入正确的qq号</view>
</view>
<input class="item_2" placeholder='请填写您的QQ号码以便我们向您反馈处理结果' type='number' bindinput='qqNum'>
</input>
</view>
</view>
<view class="foot">
<view bindtap='submit'>提交</view>
</view>