code_login.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="content">
  3. <view class="title">验证码登录</view>
  4. <view class="form vflex">
  5. <u-input v-model="userInfo.name" placeholder="用户名/手机号"></u-input>
  6. <u-input v-model="code" placeholder="请输入验证码">
  7. <template slot="suffix">
  8. <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
  9. <view class="code" @tap="getCode" :text="tips"></view>
  10. </template>
  11. </u-input>
  12. </view>
  13. <view class="hflex acenter">
  14. <u-checkbox-group @change="checkboxChange">
  15. <u-checkbox v-model="agree" shape="circle"></u-checkbox>
  16. </u-checkbox-group>
  17. <view class="text">阅读并同意<span class="read" @click="open(0)">《用户服务协议》</span>、<span class="read" @click="open(1)">《个人信息保护政策》</span></view>
  18. </view>
  19. <view class="button hflex acenter jcenter" @click="login">
  20. <view>登录</view>
  21. </view>
  22. <view class="hflex acenter jcenter bottom">
  23. <view class="text_style1" @click="pwdLogin">账号密码登录</view>
  24. <view style="margin: 0 10rpx;">|</view>
  25. <view class="text_style2" @click="register">注册</view>
  26. </view>
  27. <!-- 弹出层 -->
  28. <u-modal :show="showProtocol" :title="protocolTitle" confirmColor="#2988FE" @confirm="isRead" confirmText="我已阅读">
  29. <view class="slot-content">
  30. <rich-text :nodes="protocolContent"></rich-text>
  31. </view>
  32. </u-modal>
  33. </view>
  34. </template>
  35. <script>
  36. import $api from '@/static/js/api.js'
  37. var that = ''
  38. export default {
  39. data() {
  40. return {
  41. userInfo: {
  42. name: '',
  43. },
  44. code: '',
  45. tips: '获取验证码',
  46. agree: false,
  47. showProtocol: false,
  48. protocolTitle: '',
  49. protocolContent: '',
  50. }
  51. },
  52. onLoad() {
  53. that = this
  54. },
  55. methods: {
  56. // 验证码文字
  57. codeChange(text) {
  58. that.tips = text
  59. },
  60. // 获取验证码
  61. getCode() {
  62. if(that.$refs.uCode.canGetCode) {
  63. uni.showLoading({
  64. title: '正在获取验证码'
  65. })
  66. setTimeout(()=> {
  67. uni.hideLoading();
  68. uni.$u.toast('验证码已发送')
  69. this.$refs.uCode.start()
  70. },2000)
  71. } else {
  72. uni.$u.toast('倒计时结束后再发送')
  73. }
  74. },
  75. // 阅读并同意
  76. checkboxChange(n) {
  77. this.agree = !this.agree
  78. },
  79. // 打开弹出层
  80. open(index) {
  81. const that = this
  82. // if(index == 0) {
  83. // $api.req({
  84. // url: '/api/Publics/config_info'
  85. // }, function(res) {
  86. // if (res.code == 1) {
  87. // that.protocolTitle = '用户协议'
  88. // that.protocolContent = res.data.xieyi
  89. // }
  90. // })
  91. // } else {
  92. // that.protocolTitle = '隐私政策'
  93. // that.protocolContent = ''
  94. // }
  95. // that.showProtocol = true
  96. },
  97. // 登录
  98. login() {
  99. if ($api.formCheck(that.userInfo.name,"phone") && $api.formCheck(that.code, "code6")) {
  100. if (!that.agree) {
  101. $api.info('请先阅读并同意用户协议和隐私协议')
  102. } else {
  103. wx.setStorageSync("token",true)
  104. $api.jump('/pages/tabbar/mine/mine',3)
  105. }
  106. }
  107. },
  108. // 账号密码登录
  109. pwdLogin() {
  110. $api.jump('/pages/login/password_login')
  111. },
  112. // 注册
  113. register() {
  114. $api.jump('/pages/login/register')
  115. }
  116. },
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. .content::v-deep {
  121. padding: 0 60rpx;
  122. .title {
  123. margin: 64rpx 0;
  124. font-size: 52rpx;
  125. color: #222;
  126. }
  127. .form {
  128. margin-bottom: 100rpx;
  129. .u-input {
  130. width: 630rpx !important;
  131. height: 104rpx !important;
  132. background-color: #f4f4f4;
  133. border-radius: 52rpx;
  134. font-size: 30rpx !important;
  135. box-sizing: border-box;
  136. padding: 30rpx 48rpx !important;
  137. margin: 26rpx 0;
  138. }
  139. .pwd_icon {
  140. width: 40rpx;
  141. height: 40rpx;
  142. }
  143. }
  144. .text {
  145. font-size: 24rpx;
  146. color: #9c9c9c;
  147. }
  148. .read {
  149. color: #2a63f3;
  150. }
  151. .button {
  152. width: 100%;
  153. height: 96rpx;
  154. background-color: #506dff;
  155. border-radius: 50rpx;
  156. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  157. font-size: 40rpx;
  158. color: #fff;
  159. margin: 40rpx 0 36rpx;
  160. }
  161. .bottom {
  162. width: 100%;
  163. .text_style1 {
  164. font-size: 24rpx;
  165. color: #555;
  166. }
  167. .text_style2 {
  168. font-size: 24rpx;
  169. color: #506dff;
  170. }
  171. }
  172. }
  173. </style>