text.vue 745 字节
<template>
	<view>
		<!-- S 导航栏 -->
		<view class="topnav">
			<view class="topnavname">
				<u-navbar title=" " :safeAreaInsetTop="true" :fixed="true" :placeholder="true" bgColor="transparent">
					<view class="u-nav-slot" slot="left">
						大戏看北京
					</view>
				</u-navbar>
				<image class="bg" src="/static/img-home-bg1.png" mode=""></image>
			</view>
		</view>
		<!-- E 导航栏 -->
	</view>
</template>

<script>
	export default {
		data() {
			return {

			};
		}
	}
</script>

<style lang="scss">
	.topnavname {
		width: 100%;
		height: 176rpx;
	}

	.topnavname {
		width: 100%;
		height: 176rpx;
	}
	.u-nav-slot {
		z-index: 999;
		color: rgba(255, 255, 255, 1);
		font-size: 40rpx;
		font-weight: 700;
	}
</style>