1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="page-top">
- <!-- <image class="bg" src="@/static/home/sy_img_top.png"></image> -->
- <uv-navbar bgColor="transparent" placeholder>
- <template #left>
- <slot name="navLeft"></slot>
- </template>
- <template #center>
- <slot name="navCenter"></slot>
- </template>
- <template #right>
- <slot name="navRight"></slot>
- </template>
- </uv-navbar>
- </view>
- </template>
- <script>
- export default {
- name: "page-navbar",
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- .page-top {
- // position: relative;
- width: 750rpx;
-
- .bg {
- width: 750rpx;
- height: calc(380rpx + var(--status-bar-height));
- }
- ::v-deep.uv-navbar__content {
-
- .uvicon-arrow-left {
- display: none !important;
- }
-
- }
- }
- </style>
|