checkInRoute.vue 355 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="text">
  3. 打卡活动暂未开放
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. }
  11. }
  12. </script>
  13. <style lang="scss" scoped>
  14. .text {
  15. font-size: 50rpx;
  16. display: flex;
  17. width: 100%;
  18. height: 100vh;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. </style>