123456789101112131415161718 |
- <cu-custom bgColor="bg-lw-header" is-back="{{true}}"><view slot="content">期望商家</view></cu-custom>
- <form>
- <view class="cu-form-group margin-top">
- <view class="title">姓名</view>
- <input placeholder="请输入姓名" value="{{userInfo.user_name}}" bindinput="vmodel" data-value="name"></input>
- </view>
- <view class="cu-form-group">
- <view class="title">手机号</view>
- <input placeholder="请输入手机号" value="{{userInfo.mobile}}" bindinput="vmodel" data-value="mobile"></input>
- </view>
- <view class="cu-form-group align-start">
- <view class="title"><text class="text-red">*</text> 反馈内容</view>
- <textarea maxlength="-1" bindinput="vmodel" placeholder="请输入您期望的商家和联系方式" data-value="content"></textarea>
- </view>
- <view class="padding flex flex-direction">
- <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
- </view>
- </form>
|