index.wxml 900 B

123456789101112131415161718
  1. <view class="login">
  2. <view class="login_row">
  3. <view class="login_row_title" bindtap="setTacitlyApprove">账户名</view>
  4. <input class="login_row_input" type="text" placeholder="用户名" value="{{userName}}" bindinput="setUserName" />
  5. </view>
  6. <view class="login_row">
  7. <view class="login_row_title">手机号</view>
  8. <input class="login_row_input" type="text" value="{{userTelephone}}" disabled />
  9. </view>
  10. <view class="login_row">
  11. <view class="login_row_title" style="margin-left: -48rpx;">身份/职位</view>
  12. <textarea class="login_row_input input_textarea" value="{{identity}}" bindinput="setUsereFole"></textarea>
  13. </view>
  14. <view class="login_but">
  15. <van-button type="info" size="large" bindtap="userPerfectMsg">下一步</van-button>
  16. </view>
  17. <view class="jumpOver" bindtap="toHomePage">跳过</view>
  18. </view>