index.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <view class="head" :style="{ height: tovw(CustomBar) }">
  4. <view class="custom" :style="{ height: tovw(Custom.height), top: tovw(Custom.top - 3) }">
  5. 邀请人员
  6. <view class="back" :style="{ lineHeight: tovw(Custom.height) }" @click="onBack">
  7. <text class=" iconfont icon-a-wodetiaozhuan" />
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. }
  16. </script>
  17. <style lang="scss">
  18. .head {
  19. position: relative;
  20. width: 100vw;
  21. .custom {
  22. position: absolute;
  23. width: 100vw;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. font-family: PingFang SC, PingFang SC;
  28. font-weight: 500;
  29. font-size: 17px;
  30. color: #FFFFFF;
  31. .back {
  32. position: absolute;
  33. padding: 0 10px;
  34. left: 0;
  35. color: #fff;
  36. font-size: 12px;
  37. transform: rotateY(180deg);
  38. }
  39. }
  40. }
  41. </style>