index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <view v-if="isUp">
  3. <view class="mobile-bg" @click="close"></view>
  4. <view class="mobile-mask animated" :class="{slideInUp:isUp}">
  5. <view class="input-item">
  6. <input type="text" v-model="account" :placeholder="$t(`输入手机号`)" maxlength="11" />
  7. </view>
  8. <view class="input-item">
  9. <input type="password" v-model="password" :placeholder="$t(`输入密码`)" maxlength="30" />
  10. </view>
  11. <!-- <view class="input-item">
  12. <input type="text" v-model="codeNum" :placeholder="$t(`输入验证码`)" maxlength="6" />
  13. <button class="code" :disabled="disabled" @click="code">{{text}}</button>
  14. </view> -->
  15. <view class="sub_btn" @click="loginBtn">{{$t(`立即登录`)}}</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. const app = getApp();
  21. import sendVerifyCode from "@/mixins/SendVerifyCode";
  22. import Routine from '@/libs/routine';
  23. import {
  24. loginMobile,
  25. registerVerify,
  26. getCodeApi,
  27. getUserInfo,
  28. phoneSilenceAuth,
  29. phoneWxSilenceAuth,
  30. getLoginAccount
  31. } from "@/api/user";
  32. import {
  33. bindingPhone
  34. } from '@/api/api.js'
  35. export default {
  36. name: 'login_mobile',
  37. props: {
  38. isUp: {
  39. type: Boolean,
  40. default: false,
  41. },
  42. authKey: {
  43. type: String,
  44. default: '',
  45. }
  46. },
  47. data() {
  48. return {
  49. password: '123456789',
  50. keyCode: '',
  51. account: '18286053319',
  52. codeNum: ''
  53. }
  54. },
  55. mixins: [],
  56. mounted() {
  57. // this.getCode();
  58. },
  59. methods: {
  60. // 获取验证码
  61. async code() {
  62. let that = this;
  63. if (!that.account) return that.$util.Tips({
  64. title: that.$t(`请填写手机号码`)
  65. });
  66. if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
  67. title: that.$t(`请输入正确的手机号码`)
  68. });
  69. await registerVerify({
  70. phone: that.account,
  71. key: that.keyCode,
  72. }).then(res => {
  73. that.$util.Tips({
  74. title: res.msg
  75. });
  76. that.sendCode();
  77. }).catch(err => {
  78. return that.$util.Tips({
  79. title: err
  80. })
  81. })
  82. },
  83. // 获取验证码api
  84. getCode() {
  85. let that = this
  86. getCodeApi().then(res => {
  87. that.keyCode = res.data.key;
  88. }).catch(res => {
  89. that.$util.Tips({
  90. title: res
  91. });
  92. });
  93. },
  94. close() {
  95. this.$emit('close', false)
  96. },
  97. // 登录
  98. loginBtn() {
  99. let that = this
  100. // #ifdef MP
  101. if (!that.account) return that.$util.Tips({
  102. title: that.$t(`请填写手机号码`)
  103. });
  104. if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
  105. title: that.$t(`请输入正确的手机号码`)
  106. });
  107. if (!that.password) return that.$util.Tips({
  108. title: that.$t(`请填写登录密码`)
  109. });
  110. // if (!that.codeNum) return that.$util.Tips({
  111. // title: that.$t(`请填写验证码`)
  112. // });
  113. // if (!/^[\w\d]+$/i.test(that.codeNum)) return that.$util.Tips({
  114. // title: that.$t(`请输入正确的验证码`)
  115. // });
  116. uni.showLoading({
  117. title: that.$t(`正在登录中`)
  118. });
  119. getLoginAccount({
  120. username: that.account,
  121. password: that.password
  122. }).then(res => {
  123. console.log(res);
  124. this.$store.commit('LOGIN', {
  125. token: res.data.access_token,
  126. time: res.data.expires_in
  127. });
  128. this.getUserInfo();
  129. })
  130. // Routine.getCode()
  131. // .then(code => {
  132. // this.phoneSilenceAuth(code);
  133. // })
  134. // .catch(error => {
  135. // uni.hideLoading();
  136. // });
  137. // #endif
  138. // #ifdef H5
  139. if (!that.account) return that.$util.Tips({
  140. title: that.$t(`请填写手机号码`)
  141. });
  142. if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
  143. title: that.$t(`请输入正确的手机号码`)
  144. });
  145. if (!that.codeNum) return that.$util.Tips({
  146. title: that.$t(`请填写验证码`)
  147. });
  148. if (!/^[\w\d]+$/i.test(that.codeNum)) return that.$util.Tips({
  149. title: that.$t(`请输入正确的验证码`)
  150. });
  151. uni.showLoading({
  152. title: that.$t(`正在登录中`)
  153. });
  154. if (this.authKey) {
  155. phoneWxSilenceAuth({
  156. spid: app.globalData.spid,
  157. spread: app.globalData.code,
  158. phone: this.account,
  159. captcha: this.codeNum,
  160. key: this.authKey
  161. }).then(res => {
  162. let time = res.data.expires_time - this.$Cache.time();
  163. this.$store.commit('LOGIN', {
  164. token: res.data.token,
  165. time: time
  166. });
  167. this.getUserInfo();
  168. }).catch(error => {
  169. uni.hideLoading()
  170. this.$util.Tips({
  171. title: error
  172. })
  173. })
  174. } else {
  175. loginMobile({
  176. phone: this.account,
  177. captcha: this.codeNum,
  178. spread: app.globalData.spid,
  179. }).then(res => {
  180. let time = res.data.expires_time - this.$Cache.time();
  181. this.$store.commit('LOGIN', {
  182. token: res.data.token,
  183. time: time
  184. });
  185. this.$Cache.clear('snsapiKey');
  186. this.getUserInfo();
  187. }).catch(error => {
  188. uni.hideLoading()
  189. this.$util.Tips({
  190. title: error
  191. })
  192. })
  193. }
  194. // #endif
  195. },
  196. // #ifdef MP
  197. phoneSilenceAuth(code) {
  198. let self = this
  199. phoneSilenceAuth({
  200. code: code,
  201. spread_spid: app.globalData.spid,
  202. spread_code: app.globalData.code,
  203. phone: this.account,
  204. captcha: this.codeNum
  205. }).then(res => {
  206. let time = res.data.expires_time - this.$Cache.time();
  207. this.$store.commit('LOGIN', {
  208. token: res.data.token,
  209. time: time
  210. });
  211. this.getUserInfo();
  212. }).catch(error => {
  213. self.$util.Tips({
  214. title: error
  215. })
  216. })
  217. },
  218. // #endif
  219. /**
  220. * 获取个人用户信息
  221. */
  222. getUserInfo: function() {
  223. let that = this;
  224. getUserInfo().then(res => {
  225. uni.hideLoading();
  226. that.userInfo = res.data
  227. that.$store.commit("SETUID", res.data.id);
  228. that.$store.commit("UPDATE_USERINFO", res.data);
  229. // #ifdef MP
  230. that.$util.Tips({
  231. title: that.$t(`登录成功`),
  232. icon: 'success'
  233. }, {
  234. tab: 3
  235. })
  236. that.close()
  237. // #endif
  238. // #ifdef H5
  239. that.$emit('wechatPhone', true)
  240. // #endif
  241. });
  242. },
  243. }
  244. }
  245. </script>
  246. <style lang="stylus">
  247. .mobile-bg {
  248. position: fixed;
  249. left: 0;
  250. top: 0;
  251. width: 100%;
  252. height: 100%;
  253. background: rgba(0, 0, 0, 0.5);
  254. }
  255. .mobile-mask {
  256. z-index: 20;
  257. position: fixed;
  258. left: 0;
  259. bottom: 0;
  260. width: 100%;
  261. padding: 67rpx 30rpx;
  262. background: #fff;
  263. .input-item {
  264. display: flex;
  265. justify-content: space-between;
  266. width: 100%;
  267. height: 86rpx;
  268. margin-bottom: 38rpx;
  269. input {
  270. flex: 1;
  271. display: block;
  272. height: 100%;
  273. padding-left: 40rpx;
  274. border-radius: 43rpx;
  275. border: 1px solid #DCDCDC;
  276. }
  277. .code {
  278. display: flex;
  279. align-items: center;
  280. justify-content: center;
  281. width: 220rpx;
  282. height: 86rpx;
  283. margin-left: 30rpx;
  284. background: var(--view-minorColorT);
  285. font-size: 28rpx;
  286. color: var(--view-theme);
  287. border-radius: 43rpx;
  288. &[disabled] {
  289. background: rgba(0, 0, 0, 0.05);
  290. color: #999;
  291. }
  292. }
  293. }
  294. .sub_btn {
  295. width: 690rpx;
  296. height: 86rpx;
  297. line-height: 86rpx;
  298. margin-top: 60rpx;
  299. background: var(--view-theme);
  300. border-radius: 43rpx;
  301. color: #fff;
  302. font-size: 28rpx;
  303. text-align: center;
  304. }
  305. }
  306. .animated {
  307. animation-duration: .4s
  308. }
  309. </style>