codeLogin.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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" >{{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>
  25. <!-- 弹出层 -->
  26. <u-modal :show="showProtocol" :title="protocolTitle" confirmColor="#2988FE" @confirm="isRead" confirmText="我已阅读">
  27. <view class="slot-content">
  28. <rich-text :nodes="protocolContent"></rich-text>
  29. </view>
  30. </u-modal>
  31. </view>
  32. </template>
  33. <script>
  34. import $api from '@/static/js/api.js'
  35. var that = ''
  36. export default {
  37. data() {
  38. return {
  39. userInfo: {
  40. name: '',
  41. },
  42. code: '',
  43. tips: '',
  44. agree: false,
  45. showProtocol: false,
  46. protocolTitle: '',
  47. protocolContent: '',
  48. }
  49. },
  50. onLoad() {
  51. that = this
  52. },
  53. methods: {
  54. // 验证码文字
  55. codeChange(text) {
  56. that.tips = text
  57. },
  58. // 获取验证码
  59. getCode() {
  60. if(that.$refs.uCode.canGetCode) {
  61. uni.showLoading({
  62. title: '正在获取验证码'
  63. })
  64. $api.req({
  65. url: '/data/api.Login/sendsms',
  66. method: 'POST',
  67. data: {
  68. phone: that.userInfo.name,
  69. type: 5
  70. }
  71. }, function(res) {
  72. uni.hideLoading();
  73. if(res.code == 1) {
  74. uni.$u.toast('验证码已发送')
  75. that.$refs.uCode.start()
  76. } else {
  77. uni.$u.toast('验证码发送失败')
  78. }
  79. })
  80. } else {
  81. uni.$u.toast('倒计时结束后再发送')
  82. }
  83. },
  84. // 阅读并同意
  85. checkboxChange(n) {
  86. this.agree = !this.agree
  87. },
  88. // 打开弹出层
  89. open(index) {
  90. const that = this
  91. $api.jump('/pages/login/xieyi?title=用户服务协议&data=' + index)
  92. /* $api.req({
  93. url: '/data/api.business.Login/getconfigset'
  94. }, function(res) {
  95. if (res.code == 1) {
  96. if(index == 0) {
  97. $api.jump('/pages/login/xieyi?title=用户服务协议&data=0')
  98. } else {
  99. $api.jump('/pages/login/xieyi?title=个人隐私保护政策&data=1')
  100. }
  101. }
  102. }) */
  103. },
  104. // 已阅读
  105. isRead() {
  106. that.showProtocol = false
  107. that.agree = true
  108. },
  109. // 登录
  110. login() {
  111. if ($api.formCheck(that.userInfo.name,"phone")) {
  112. if (!that.agree) {
  113. $api.info('请先阅读并同意用户协议和隐私协议')
  114. } else {
  115. $api.req({
  116. url: '/data/api.business.Login/login',
  117. method: 'POST',
  118. data: {
  119. mobile: that.userInfo.name,
  120. type: 2,
  121. code: that.code,
  122. }
  123. }, function(res) {
  124. console.log(res)
  125. if(res.code == 1) {
  126. wx.setStorageSync("token",res.data)
  127. $api.jump('/pages/tabbar/mine/mine',2)
  128. }
  129. })
  130. }
  131. }
  132. },
  133. // 账号密码登录
  134. pwdLogin() {
  135. $api.jump('/pages/login/login/login')
  136. },
  137. },
  138. }
  139. </script>
  140. <style lang="scss" scoped>
  141. .content::v-deep {
  142. padding: 0 60rpx;
  143. .title {
  144. margin: 64rpx 0;
  145. font-size: 52rpx;
  146. color: #222;
  147. }
  148. .form {
  149. margin-bottom: 100rpx;
  150. .u-input {
  151. width: 630rpx !important;
  152. height: 104rpx !important;
  153. background-color: #f4f4f4;
  154. border-radius: 52rpx;
  155. font-size: 30rpx !important;
  156. box-sizing: border-box;
  157. padding: 30rpx 48rpx !important;
  158. margin: 26rpx 0;
  159. }
  160. .pwd_icon {
  161. width: 40rpx;
  162. height: 40rpx;
  163. }
  164. .code {
  165. font-size: 30rpx;
  166. color: #506dff;
  167. }
  168. }
  169. .text {
  170. font-size: 24rpx;
  171. color: #9c9c9c;
  172. }
  173. .read {
  174. color: #2a63f3;
  175. }
  176. .button {
  177. width: 100%;
  178. height: 96rpx;
  179. background-color: #506dff;
  180. border-radius: 50rpx;
  181. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  182. font-size: 40rpx;
  183. color: #fff;
  184. margin: 40rpx 0 36rpx;
  185. }
  186. .bottom {
  187. width: 100%;
  188. .text_style1 {
  189. font-size: 24rpx;
  190. color: #555;
  191. }
  192. .text_style2 {
  193. font-size: 24rpx;
  194. color: #506dff;
  195. }
  196. }
  197. }
  198. </style>