login.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <!-- 登录 -->
  3. <view style="padding: 0 44rpx;">
  4. <view class="" style="text-align: center;margin-top: 156rpx;">
  5. <image src="../../static/images/logo.png" style="width: 350rpx;height: 350rpx;" mode=""></image>
  6. </view>
  7. <button open-type="getPhoneNumber" class="login-btn" @getphonenumber="tologin">
  8. 微信授权登录
  9. </button>
  10. <view class="" style="margin-top: 42rpx;display: flex;">
  11. <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
  12. <u-checkbox shape="circle" :customStyle="{marginBottom: '8px'}" :name="1">
  13. </u-checkbox>
  14. </u-checkbox-group>
  15. <text class='fontYin'>我已阅读并同意</text>
  16. <text class='fontYin' style='color:#F83224'>《用户协议》</text>
  17. <text class='fontYin'>和</text>
  18. <text class='fontYin' style='color:#F83224'>隐私协议》</text>
  19. </view>
  20. <view class="">
  21. <text>账号</text>
  22. <input type="text" v-model="mobile"/>
  23. </view>
  24. <view class="">
  25. <text>密码</text>
  26. <input type="text" v-model="password" />
  27. </view>
  28. <view class="" @click="login()">
  29. 登录
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. mobile:'',
  38. password:'',
  39. checkboxValue1:[]
  40. };
  41. },
  42. methods: {
  43. checkboxChange(n) {
  44. console.log('change', n);
  45. },
  46. login(){
  47. uni.$u.http.post('/api/login', {mobile: this.mobile, password: '123456'}).then((res)=>{
  48. console.log(res);
  49. })
  50. }
  51. }
  52. }
  53. </script>
  54. <style lang="scss" scoped>
  55. .login-btn {
  56. width: 662rpx;
  57. height: 96rpx;
  58. background: #F83224;
  59. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  60. border-radius: 48rpx;
  61. font-family: PingFangSC, PingFang SC;
  62. font-weight: 500;
  63. font-size: 32rpx;
  64. color: #FFFFFF;
  65. line-height: 96rpx;
  66. text-align: center;
  67. font-style: normal;
  68. }
  69. .fontYin {
  70. font-family: PingFangSC, PingFang SC;
  71. font-weight: 400;
  72. font-size: 24rpx;
  73. color: #666666;
  74. line-height: 34rpx;
  75. text-align: left;
  76. font-style: normal;
  77. }
  78. </style>