You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

33 lines
1.4 KiB

<!--pages/user/address/add/index.wxml-->
<view class="container-view">
<view>
<title-header title="投诉建议"></title-header>
<!-- <view class="tips">此投诉为本小程序自有投诉渠道,非微信官方投诉渠道</view> -->
<view class="input-box">
<view class="input-item">
<text class="input-label">姓名:</text>
<input bindinput="nameInput" value="{{formData.username}}" class="weui-input" auto-focus placeholder="请填写您的姓名" />
</view>
<view class="input-item">
<text class="input-label">手机号:</text>
<input bindinput="telInput" type="number" value="{{formData.mobile}}" class="weui-input" placeholder="请填写您的联系方式" />
</view>
<view class="input-item" style="border-bottom: none;">
<text class="input-label">反馈内容:</text>
</view>
<view class="textarea-container">
<textarea bindinput="contentInput" maxlength="500" value="{{formData.content}}" class="weui-input" placeholder="请填写具体的问题内容" ></textarea>
<view class="textarea-tip">{{formData.content.length}}/500</view>
</view>
</view>
</view>
<view>
<view class="btn" bindtap="save">提交</view>
<view style="height:{{safeBottom}}rpx"></view>
</view>
</view>