litian
2024-03-26 10db09788d74b441a2efd85f5d4614e944b07bb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<view class="container">
  <view class="page-body">
    <view class="from-item">
      <view class="label"> 联系人: </view>
      <view class="item-content">
        <t-input placeholder="请输入联系人" borderless value="{{userName}}" type="number" bindchange="bindTnputBlur" />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> 联系方式: </view>
      <view class="item-content">
        <t-input placeholder="输入联系方式" borderless value="{{mannder}}" type="number" tips="{{phoneError ? '手机号输入不正确' : ''}}" bindchange="onPhoneInput" />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> 反馈内容: </view>
      <view class="item-content">
        <textarea name="content" rows="4" cols="52" placeholder="请输入反馈内容" auto-focus="true" adjust-position="true" value="{{content}}" bindinput="bindTextAreaBlur"></textarea>
      </view>
    </view>
    <view class="btn-area">
      <button class="submit" bindtap="submit">提交</button>
    </view>
  </view>
</view>