| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="container">
- <!-- 开发中提示 -->
- <view class="developing">
- <text>开发中</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'GoodIn'
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background-color: #f5f5f5;
- }
- .developing {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 200px;
- background: #ffffff;
-
- text {
- font-size: 16px;
- color: #999;
- }
- }
- </style>
|