123456789101112131415161718192021222324 |
- <template>
- <view className="text">
- 打卡活动暂未开放
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- }
- }
- </script>
- <style lang="scss" scoped>
- .text {
- font-size: 50rpx;
- display: flex;
- width: 100%;
- height: 100vh;
- justify-content: center;
- align-items: center;
- }
- </style>
|