猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.7 KiB

  1. <template>
  2. <view class="bind-user">
  3. <view class="bind-user-header">
  4. <view class="flex mb28">
  5. <up-image width="139rpx" height="139rpx" src="https://cdn.uviewui.com/uview/album/1.jpg"
  6. shape="circle"></up-image>
  7. <view class="header-name">
  8. <view class="font32 mb20" :style="{color:'#000'}">猫小姐</view>
  9. <view class="label1">
  10. 初级合伙人
  11. </view>
  12. <view class="flex font24">
  13. <view :style="{color:'#A55822'}">当前分成比例
  14. <text :style="{color:'#C12525'}">25%</text>
  15. </view>
  16. <view :style="{color:'#A55822'}">晋级后分成比例
  17. <text :style="{color:'#C12525'}">30%</text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="flex flex-evenly mt60">
  23. <view class="header-card card-left box-size">
  24. <view class="flex-between flex">
  25. <view class="mr20">
  26. <view class="mb20 ml20" :style="{color:'#A55822',fontWeight:'bold',fontSize:'30rpx'}">推广攻略
  27. </view>
  28. <view :style="{color:'#A55822',fontSize:'22rpx'}">快速定位宠友群体</view>
  29. </view>
  30. <up-image :show-loading="true" src="https://cdn.catmdogd.com/Work/image/work/icon1.png"
  31. width="71rpx" height="85rpx"></up-image>
  32. </view>
  33. </view>
  34. <view class="header-card card-right box-size">
  35. <view class="flex flex-between">
  36. <view class="mr20">
  37. <view class="mb20 ml20" :style="{color:'#A55822',fontWeight:'bold',fontSize:'30rpx'}">推广教程
  38. </view>
  39. <view :style="{color:'#A55822',fontSize:'22rpx'}">推广问题一目了然</view>
  40. </view>
  41. <up-image :show-loading="true" src="https://cdn.catmdogd.com/Work/image/work/icon2.png"
  42. width="71rpx" height="85rpx"></up-image>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="bind-main">
  48. <view class="bind-main-one mb10">
  49. <view class="mb20 font32">邀请码</view>
  50. <view class="mb20">用户输入邀请码直接完成绑定</view>
  51. <up-input disabled v-model="code">
  52. <template #suffix>
  53. <up-button text="复制" type="success" size="small" shape="circle"></up-button>
  54. </template>
  55. </up-input>
  56. </view>
  57. <view class="bind-main-two">
  58. <view class="mb20 font32">分享链接邀请</view>
  59. <view class="mb20">复制链接给好友进入直接绑定</view>
  60. <up-input disabled v-model="url">
  61. <template #suffix>
  62. <up-button text="复制" type="success" size="small" shape="circle"></up-button>
  63. </template>
  64. </up-input>
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script setup>
  70. import {
  71. ref
  72. } from "vue";
  73. const code = ref('asdasaadsdsa')
  74. const url = ref('https://uview-plus.jiangruyi.com/components/button.html')
  75. </script>
  76. <style scoped lang="scss">
  77. @import "index";
  78. </style>