Files
sphc/pages/my/my_feedback/my_feedback.wxml
2024-05-06 15:34:15 +08:00

21 lines
935 B
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="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>