login.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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/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. });
  69. },
  70. },
  71. };
  72. </script>
  73. <style lang="scss" scoped>
  74. .login-btn {
  75. width: 662rpx;
  76. height: 96rpx;
  77. background: #f83224;
  78. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  79. border-radius: 48rpx;
  80. font-family: PingFangSC, PingFang SC;
  81. font-weight: 500;
  82. font-size: 32rpx;
  83. color: #ffffff;
  84. line-height: 96rpx;
  85. text-align: center;
  86. font-style: normal;
  87. }
  88. .fontYin {
  89. font-family: PingFangSC, PingFang SC;
  90. font-weight: 400;
  91. font-size: 24rpx;
  92. color: #666666;
  93. line-height: 34rpx;
  94. text-align: left;
  95. font-style: normal;
  96. }
  97. </style>