text.vue
745 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<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>