1234567891011121314151617181920212223 |
- <script setup></script>
- <template>
- <view class="empty">
- <view>敬请期待</view>
- </view>
- </template>
- <style lang="scss" scoped>
- .empty {
- flex: 1;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- gap: 20rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #999999;
- }
- </style>
|