codeLogin.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. data: {
  67. phone: that.userInfo.phone,
  68. type: 1
  69. }
  70. }, function(res) {
  71. uni.hideLoading();
  72. if(res.code == 1) {
  73. uni.$u.toast('验证码已发送')
  74. that.$refs.uCode.start()
  75. } else {
  76. uni.$u.toast('验证码发送失败')
  77. }
  78. })
  79. } else {
  80. uni.$u.toast('倒计时结束后再发送')
  81. }
  82. },
  83. // 阅读并同意
  84. checkboxChange(n) {
  85. this.agree = !this.agree
  86. },
  87. // 打开弹出层
  88. open(index) {
  89. const that = this
  90. // if(index == 0) {
  91. // $api.req({
  92. // url: '/api/Publics/config_info'
  93. // }, function(res) {
  94. // if (res.code == 1) {
  95. // that.protocolTitle = '用户协议'
  96. // that.protocolContent = res.data.xieyi
  97. // }
  98. // })
  99. // } else {
  100. // that.protocolTitle = '隐私政策'
  101. // that.protocolContent = ''
  102. // }
  103. // that.showProtocol = true
  104. },
  105. // 登录
  106. login() {
  107. if ($api.formCheck(that.userInfo.name,"phone") && $api.formCheck(that.code, "code4")) {
  108. if (!that.agree) {
  109. $api.info('请先阅读并同意用户协议和隐私协议')
  110. } else {
  111. $api.req({
  112. url: '/data/api.business.Login/login',
  113. method: 'POST',
  114. data: {
  115. mobile: that.userInfo.name,
  116. type: 2,
  117. code: that.code,
  118. }
  119. }, function(res) {
  120. console.log(res)
  121. if(res.code == 1) {
  122. wx.setStorageSync("token",res.data)
  123. wx.setStorageSync("id",res.data.id)
  124. var options = {
  125. user: res.data.id.toString(),
  126. pwd: '123456',
  127. appKey: uni.WebIM.config.appkey,
  128. success: function (res2) {
  129. wx.setStorageSync("HXtoken",res2.access_token)
  130. $api.jump('/pages/tabbar/mine/mine',3)
  131. },
  132. error: function(error){
  133. console.log(error);
  134. }
  135. };
  136. uni.WebIM.conn.open(options);
  137. }
  138. })
  139. }
  140. }
  141. },
  142. // 账号密码登录
  143. pwdLogin() {
  144. $api.jump('/pages/login/login/login')
  145. },
  146. },
  147. }
  148. </script>
  149. <style lang="scss" scoped>
  150. .content::v-deep {
  151. padding: 0 60rpx;
  152. .title {
  153. margin: 64rpx 0;
  154. font-size: 52rpx;
  155. color: #222;
  156. }
  157. .form {
  158. margin-bottom: 100rpx;
  159. .u-input {
  160. width: 630rpx !important;
  161. height: 104rpx !important;
  162. background-color: #f4f4f4;
  163. border-radius: 52rpx;
  164. font-size: 30rpx !important;
  165. box-sizing: border-box;
  166. padding: 30rpx 48rpx !important;
  167. margin: 26rpx 0;
  168. }
  169. .pwd_icon {
  170. width: 40rpx;
  171. height: 40rpx;
  172. }
  173. .code {
  174. font-size: 30rpx;
  175. color: #506dff;
  176. }
  177. }
  178. .text {
  179. font-size: 24rpx;
  180. color: #9c9c9c;
  181. }
  182. .read {
  183. color: #2a63f3;
  184. }
  185. .button {
  186. width: 100%;
  187. height: 96rpx;
  188. background-color: #506dff;
  189. border-radius: 50rpx;
  190. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  191. font-size: 40rpx;
  192. color: #fff;
  193. margin: 40rpx 0 36rpx;
  194. }
  195. .bottom {
  196. width: 100%;
  197. .text_style1 {
  198. font-size: 24rpx;
  199. color: #555;
  200. }
  201. .text_style2 {
  202. font-size: 24rpx;
  203. color: #506dff;
  204. }
  205. }
  206. }
  207. </style>