Initial Commit
This commit is contained in:
21
pages/my/my_feedback/my_feedback.wxml
Normal file
21
pages/my/my_feedback/my_feedback.wxml
Normal file
@ -0,0 +1,21 @@
|
||||
<view class="all">
|
||||
<view class='title' style='margin-top:0;'>请输入你的问题</view>
|
||||
<view class='textarea'>
|
||||
<textarea placeholder='请输入文字(记得不要输入表情哦~)' bindinput="num" maxlength="200" placeholder-style='color: #cccccc;'></textarea>
|
||||
<view class='num'>{{num}}/200字</view>
|
||||
</view>
|
||||
<view class='title'>请上传照片<text>(不超过4张)</text></view>
|
||||
<view class='photo'>
|
||||
<view class='photo_cont' wx:for="{{photo}}" wx:key="index">
|
||||
<image src='{{item}}'></image>
|
||||
</view>
|
||||
<view class='photo_upload' catchtap='revise_img'>
|
||||
<image src='/icon/my_feedback_photo.png'></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class='title'>请输入手机号</view>
|
||||
<view class='input'>
|
||||
<input type="number" bindinput="phone" placeholder='请输入手机号,便于联系您' placeholder-style='color: #cccccc;'></input>
|
||||
</view>
|
||||
</view>
|
||||
<view class='submit' catchtap='submitBut'>提交反馈</view>
|
Reference in New Issue
Block a user