invite-bind.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="content jbetween">
  3. <view class="top hflex acenter jbetween">
  4. <text>邀请码</text>
  5. <u-input v-model="code" border="none" placeholder="请填写邀请码" inputAlign="right"></u-input>
  6. </view>
  7. <view class="btn" @click="sure">确认</view>
  8. </view>
  9. </template>
  10. <script>
  11. import $api from '@/static/js/api.js'
  12. export default {
  13. data() {
  14. return {
  15. code: '',
  16. }
  17. },
  18. methods: {
  19. sure() {
  20. var that = this
  21. $api.req({
  22. url: 'user/bind-invite',
  23. method: 'post',
  24. data: {
  25. invite_code: that.code
  26. }
  27. }, function(res) {
  28. $api.info(res.msg)
  29. setTimeout(() => {
  30. uni.navigateBack()
  31. }, 1000)
  32. })
  33. },
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .content::v-deep {
  39. background: #FFFFFF;
  40. .btn {
  41. width: 702rpx;
  42. height: 88rpx;
  43. background: #00B0B0;
  44. border-radius: 44rpx;
  45. font-size: 36rpx;
  46. font-family: PingFangSC, PingFang SC;
  47. font-weight: 500;
  48. color: #FFFFFF;
  49. line-height: 88rpx;
  50. text-align: center;
  51. position: fixed;
  52. bottom: 62rpx;
  53. left: 24rpx;
  54. }
  55. .top {
  56. width: 100%;
  57. box-sizing: border-box;
  58. padding: 40rpx 28rpx;
  59. border-top: 1px solid #F5F5F5;
  60. border-bottom: 1px solid #F5F5F5;
  61. text {
  62. font-size: 32rpx;
  63. font-family: PingFangSC, PingFang SC;
  64. font-weight: 400;
  65. color: #333333;
  66. }
  67. .u-input {
  68. width: 550rpx;
  69. }
  70. }
  71. }
  72. </style>