index.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="content">
  3. <image class="bg" src="/static/gr_bg.png"></image>
  4. <image class="logo" src="/static/logo.png"></image>
  5. <view>
  6. <button
  7. type="default"
  8. class="btn btn_phone"
  9. @click="phoneLogin"
  10. style="color: #fff; background-color: #5a7bef"
  11. >
  12. 手机号登录
  13. </button>
  14. <button
  15. open-type="getPhoneNumber"
  16. @getphonenumber="getPhoneNumber"
  17. class="btn btn_wechat"
  18. type="primary"
  19. >
  20. 微信登录
  21. </button>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import { login } from "../../services/https/user";
  27. export default {
  28. data() {
  29. return {
  30. jsCode: "",
  31. redirect: "",
  32. };
  33. },
  34. onLoad(options) {
  35. this.redirect = options.redirect;
  36. wx.login({
  37. success: (res) => {
  38. this.jsCode = res.code;
  39. },
  40. });
  41. },
  42. methods: {
  43. phoneLogin() {
  44. uni.navigateTo({
  45. url: "/pages/login/login",
  46. });
  47. },
  48. async getPhoneNumber(e) {
  49. const res = await login({ jsCode: this.jsCode, code: e.detail.code });
  50. if (res.errorNo !== 200) return;
  51. const token = res.result.token;
  52. uni.reLaunch({
  53. url: `/pages/index/index?token=${token}&redirect=${this.redirect}`,
  54. });
  55. },
  56. },
  57. };
  58. </script>
  59. <style>
  60. .content {
  61. height: 100vh;
  62. display: flex;
  63. flex-direction: column;
  64. align-items: center;
  65. justify-content: center;
  66. }
  67. .bg {
  68. position: absolute;
  69. left: 0;
  70. bottom: 0;
  71. display: block;
  72. width: 100%;
  73. height: 100%;
  74. z-index: -999;
  75. }
  76. .logo {
  77. width: 154rpx;
  78. height: 176rpx;
  79. }
  80. .btn {
  81. width: 600rpx;
  82. border-radius: 48rpx;
  83. overflow: hidden;
  84. }
  85. .btn_phone {
  86. margin-top: 100rpx;
  87. background-color: #5a7bef;
  88. }
  89. .btn_wechat {
  90. margin-top: 60rpx;
  91. margin-bottom: 100rpx;
  92. }
  93. </style>