yaoqing.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 class="tiaoguo" @click="touserinfo1(2)">
  14. 跳过
  15. </view> -->
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. invitation_code: ''
  23. }
  24. },
  25. onLoad() {
  26. },
  27. methods: {
  28. touserinfo1(type) {
  29. // if(type == 1){
  30. // if(!this.invitation_code){
  31. // this.$u.toast('请输入您的邀请码')
  32. // return
  33. // }
  34. // }
  35. if(!this.invitation_code){
  36. uni.setStorageSync("invitation_code",this.invitation_code)
  37. }
  38. // uni.navigateTo({
  39. // url: "/pagesA/userinfo?invitation_code=" + this.invitation_code
  40. // })
  41. uni.navigateTo({
  42. url: "/pagesA/jianlichange"
  43. })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss">
  49. .yaoqing {
  50. padding: 0 52rpx;
  51. .tiaoguo {
  52. text-align: center;
  53. font-size: 32rpx;
  54. font-family: PingFangSC-Regular, PingFang SC;
  55. font-weight: 400;
  56. color: #222222;
  57. }
  58. .login-btn2 {
  59. line-height: 96rpx;
  60. border-radius: 16rpx;
  61. text-align: center;
  62. font-size: 32rpx;
  63. font-family: PingFangSC-Regular, PingFang SC;
  64. font-weight: 400;
  65. color: #fff;
  66. margin-bottom: 48rpx;
  67. background-color: #0C66C2;
  68. }
  69. .yaoqing-input {
  70. height: 124rpx;
  71. border-bottom: 2rpx solid #F4F4F4;
  72. margin-bottom: 54rpx;
  73. input {
  74. flex: 1;
  75. font-size: 32rpx;
  76. }
  77. image {
  78. width: 48rpx;
  79. height: 48rpx;
  80. }
  81. }
  82. .yaoqing-title {
  83. margin: 82rpx 0 66rpx 0;
  84. font-size: 44rpx;
  85. font-family: PingFangSC-Medium, PingFang SC;
  86. font-weight: 500;
  87. color: #222222;
  88. }
  89. }
  90. </style>