yaoqing.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="yaoqing">
  3. <view class="yaoqing-title">
  4. 输入您的邀请码(选填)
  5. </view>
  6. <view class="yaoqing-input u-flex u-row-between">
  7. <input type="text" placeholder="请输入您的邀请码" v-model="invitation_code">
  8. <image src="static/Scanning.png" mode=""></image>
  9. </view>
  10. <view class="login-btn2" @click="touserinfo1(1)">
  11. 下一步
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. invitation_code: ''
  20. }
  21. },
  22. onLoad() {
  23. },
  24. methods: {
  25. touserinfo1(type) {
  26. if (this.invitation_code) {
  27. uni.setStorageSync("invitation_code", this.invitation_code)
  28. }
  29. uni.reLaunch({
  30. url: "/pagesA/jianlichange"
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss">
  37. .yaoqing {
  38. padding: 0 52rpx;
  39. .tiaoguo {
  40. text-align: center;
  41. font-size: 32rpx;
  42. font-family: PingFangSC-Regular, PingFang SC;
  43. font-weight: 400;
  44. color: #222222;
  45. }
  46. .login-btn2 {
  47. line-height: 96rpx;
  48. border-radius: 16rpx;
  49. text-align: center;
  50. font-size: 32rpx;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: #fff;
  54. margin-bottom: 48rpx;
  55. background-color: #0C66C2;
  56. }
  57. .yaoqing-input {
  58. height: 124rpx;
  59. border-bottom: 2rpx solid #F4F4F4;
  60. margin-bottom: 54rpx;
  61. input {
  62. flex: 1;
  63. font-size: 32rpx;
  64. }
  65. image {
  66. width: 48rpx;
  67. height: 48rpx;
  68. }
  69. }
  70. .yaoqing-title {
  71. margin: 82rpx 0 66rpx 0;
  72. font-size: 44rpx;
  73. font-family: PingFangSC-Medium, PingFang SC;
  74. font-weight: 500;
  75. color: #222222;
  76. }
  77. }
  78. </style>