code_login.vue 5.4 KB

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