1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="lli-develop-expect-page">
- <!-- 这里状态栏 -->
- <view class="ezy-status-bar"></view>
- <view class="ezy-title-bar">
- <!-- 导航栏内容 -->
- <view class="title">页面标题</view>
- </view>
- <text class="page-content">开发中,敬请期侍!</text>
-
- <view class="bottom-word">底部文字测试!</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .ezy-title-bar {
- position: fixed;
- top: var(--status-bar-height);
- left: var(--window-left);
- right: var(--window-right);
- height: calc(44px + env(safe-area-inset-top));
- background-color: rgb(248, 248, 248);
- color: rgb(0, 0, 0);
- box-sizing: border-box;
- z-index: 998;
- display: flex;
- overflow: hidden;
- align-items: center;
- justify-content: center;
- }
- </style>
|