yaoqing.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. if (uni.getStorageSync('scene')) {
  24. this.invitation_code = uni.getStorageSync('scene')
  25. }
  26. },
  27. methods: {
  28. touserinfo1(type) {
  29. if (this.invitation_code) {
  30. uni.setStorageSync("invitation_code", this.invitation_code)
  31. }
  32. uni.reLaunch({
  33. url: "/pagesA/jianlichange"
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .yaoqing {
  41. padding: 0 52rpx;
  42. .tiaoguo {
  43. text-align: center;
  44. font-size: 32rpx;
  45. font-family: PingFangSC-Regular, PingFang SC;
  46. font-weight: 400;
  47. color: #222222;
  48. }
  49. .login-btn2 {
  50. line-height: 96rpx;
  51. border-radius: 16rpx;
  52. text-align: center;
  53. font-size: 32rpx;
  54. font-family: PingFangSC-Regular, PingFang SC;
  55. font-weight: 400;
  56. color: #fff;
  57. margin-bottom: 48rpx;
  58. background-color: #0C66C2;
  59. }
  60. .yaoqing-input {
  61. height: 124rpx;
  62. border-bottom: 2rpx solid #F4F4F4;
  63. margin-bottom: 54rpx;
  64. input {
  65. flex: 1;
  66. font-size: 32rpx;
  67. }
  68. image {
  69. width: 48rpx;
  70. height: 48rpx;
  71. }
  72. }
  73. .yaoqing-title {
  74. margin: 82rpx 0 66rpx 0;
  75. font-size: 44rpx;
  76. font-family: PingFangSC-Medium, PingFang SC;
  77. font-weight: 500;
  78. color: #222222;
  79. }
  80. }
  81. </style>