12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view>
- <view class="head" :style="{ height: tovw(CustomBar) }">
- <view class="custom" :style="{ height: tovw(Custom.height), top: tovw(Custom.top - 3) }">
- 邀请人员
- <view class="back" :style="{ lineHeight: tovw(Custom.height) }" @click="onBack">
- <text class=" iconfont icon-a-wodetiaozhuan" />
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- }
- </script>
- <style lang="scss">
- .head {
- position: relative;
- width: 100vw;
- .custom {
- position: absolute;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 17px;
- color: #FFFFFF;
- .back {
- position: absolute;
- padding: 0 10px;
- left: 0;
- color: #fff;
- font-size: 12px;
- transform: rotateY(180deg);
- }
- }
- }
- </style>
|