login.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <!-- 登录 -->
  3. <view style="padding: 0 44rpx">
  4. <view class="" style="text-align: center; margin-top: 156rpx">
  5. <image
  6. src="../../static/images/logo.png"
  7. style="width: 350rpx; height: 350rpx"
  8. mode=""
  9. ></image>
  10. </view>
  11. <!-- <button
  12. open-type="getPhoneNumber"
  13. class="login-btn"
  14. @getphonenumber="tologin"
  15. >
  16. 微信授权登录
  17. </button> -->
  18. <view>
  19. <u--input
  20. placeholder="请输入内容"
  21. border="surround"
  22. v-model="mobile"
  23. ></u--input>
  24. <u--input
  25. placeholder="请输入内容"
  26. border="surround"
  27. v-model="code"
  28. ></u--input>
  29. </view>
  30. <button @click="submit">登录</button>
  31. <view class="" style="margin-top: 42rpx; display: flex">
  32. <!-- <u-checkbox-group
  33. v-model="checkboxValue1"
  34. placement="column"
  35. @change="checkboxChange"
  36. >
  37. <u-checkbox
  38. shape="circle"
  39. :customStyle="{ marginBottom: '8px' }"
  40. :name="1"
  41. >
  42. </u-checkbox>
  43. </u-checkbox-group> -->
  44. <text class="fontYin">我已阅读并同意</text>
  45. <text class="fontYin" style="color: #f83224">《用户协议》</text>
  46. <text class="fontYin">和</text>
  47. <text class="fontYin" style="color: #f83224">《隐私协议》</text>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. import { login } from "../../network/api/homeApi.js";
  53. export default {
  54. data() {
  55. return {
  56. mobile: "",
  57. code: "",
  58. checkboxValue1: false,
  59. };
  60. },
  61. methods: {
  62. checkboxChange(n) {
  63. console.log("change", n);
  64. },
  65. submit() {
  66. login({ mobile: "13000000000", password: "123456" }).then((res) => {
  67. console.log(res);
  68. if (res.data.code == 10000) {
  69. uni.setStorage({
  70. key: "token",
  71. data: res.data.data.token,
  72. success: function () {
  73. uni.switchTab({
  74. url: "../index/index",
  75. });
  76. },
  77. });
  78. }
  79. });
  80. },
  81. },
  82. };
  83. </script>
  84. <style lang="scss" scoped>
  85. .login-btn {
  86. width: 662rpx;
  87. height: 96rpx;
  88. background: #f83224;
  89. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  90. border-radius: 48rpx;
  91. font-family: PingFangSC, PingFang SC;
  92. font-weight: 500;
  93. font-size: 32rpx;
  94. color: #ffffff;
  95. line-height: 96rpx;
  96. text-align: center;
  97. font-style: normal;
  98. }
  99. .fontYin {
  100. font-family: PingFangSC, PingFang SC;
  101. font-weight: 400;
  102. font-size: 24rpx;
  103. color: #666666;
  104. line-height: 34rpx;
  105. text-align: left;
  106. font-style: normal;
  107. }
  108. </style>