secondary-in.vue 472 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="container">
  3. <!-- 开发中提示 -->
  4. <view class="developing">
  5. <text>开发中</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'GoodIn'
  12. }
  13. </script>
  14. <style lang="scss" scoped>
  15. .container {
  16. min-height: 100vh;
  17. background-color: #f5f5f5;
  18. }
  19. .developing {
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. height: 200px;
  24. background: #ffffff;
  25. text {
  26. font-size: 16px;
  27. color: #999;
  28. }
  29. }
  30. </style>