index.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="main" style="height:{{infoHeight}}px;">
  3. <view class="one">
  4. 欢迎登录
  5. </view>
  6. <view class="two">
  7. <form bindsubmit="onSubmit">
  8. <view class="content">
  9. <view class="left">
  10. <text class=" icon iconfont icon-dianhua"></text>
  11. </view>
  12. <view class="right">
  13. <input type='number' name="phone" value="{{form.phone}}" maxlength="11" placeholder='请输入账号' placeholder-class="placeholder"></input>
  14. </view>
  15. </view>
  16. <view class="content">
  17. <view class="left">
  18. <text class="icon iconfont icon-mima"></text>
  19. </view>
  20. <view class="right">
  21. <input type='text' name="password" value="{{form.password}}" password placeholder='请输入密码' placeholder-class="placeholder"></input>
  22. </view>
  23. </view>
  24. <view class="content">
  25. <view class="left">
  26. <text class="icon iconfont icon-shenfenleibie"></text>
  27. </view>
  28. <view class="right">
  29. <picker class="picker" bindchange="roleChange" name="role" value="{{form.role}}" range="{{roleList}}" range-key="name">
  30. <view>{{form.name||'选择用户类别'}}</view>
  31. </picker>
  32. </view>
  33. </view>
  34. <view class="save">
  35. <button type="primary" size="mini" form-type="submit">提交登录</button>
  36. </view>
  37. </form>
  38. </view>
  39. <view class="thr">
  40. <view class="thr_1"><text>一一一一一</text><text>其他登录方式</text><text>一一一一一</text></view>
  41. <view class="thr_2">
  42. <text class="iconfont icon-weixin" bindtap="wxLogin"></text>
  43. </view>
  44. </view>
  45. </view>
  46. </mobile-main>