You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
355 B

3 years ago
  1. <template>
  2. <view class="app">
  3. <view class="center">
  4. <text>功能暂未开放</text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .center{
  20. padding-top: 30vh;
  21. font-size: 32rpx;
  22. color: #333;
  23. }
  24. </style>