login.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!-- 密码登录 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="title-row">
  5. <view>登录携手熊猫</view>
  6. <view>登录以使用更多服务</view>
  7. </view>
  8. <view class="form-box">
  9. <view class="form-row">
  10. <view class="num-row">
  11. +86 <image src="../../static/sanjiao.png" class="sanjiao" mode="widthFix"></image>
  12. </view>
  13. <input type="text" value="" class="input" placeholder="请输入手机号" placeholder-class="placeholder" />
  14. </view>
  15. <view class="form-row">
  16. <input class="input" :password="!flag" value="" placeholder="请输入密码" placeholder-class="placeholder" />
  17. <image @click="flag=!flag" :src="flag ? '../../static/eye.png' : '../../static/eye-close.png'"
  18. class="eye-icon" mode="heightFix" />
  19. </view>
  20. <view class="msg">
  21. <text>立即注册</text>
  22. </view>
  23. <view class="btn-box">
  24. <button type="default" class="active">登录</button>
  25. </view>
  26. <view class="login-box">
  27. <view>验证码登录</view>
  28. <view>一键登录</view>
  29. </view>
  30. <view class="type-box">
  31. <button type="default">
  32. <image src="../../static/type-2.png" mode=""></image>
  33. </button>
  34. <button type="default">
  35. <image src="../../static/type-1.png" mode=""></image>
  36. </button>
  37. </view>
  38. <view class="login-bottom-row">
  39. <view class="select-btn" @tap="selected">
  40. <image :src="select ? '../../static/circle-active.png' : '../../static/circle.png'" />
  41. </view>
  42. 登录即同意《中国移动认证服务条款》和《携手熊猫用户协议》
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. //隐藏显示密码
  52. flag: false,
  53. select:true
  54. }
  55. },
  56. methods: {
  57. selected: function() {
  58. this.select = !this.select;
  59. },
  60. }
  61. }
  62. </script>
  63. <style scoped lang="scss">
  64. @import "./login.css";
  65. </style>