1234567891011121314151617181920212223 |
- <template>
- <view class="loading">
- <view>门墩儿 专注顶尖招聘</view>
- <uni-icons
- class="icons"
- type="spinner-cycle"
- size="24"
- />
- </view>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .loading {
- height: 60vh;
- line-height: 60vh;
- text-align: center;
- .icons {
- margin-top: 20px;
- }
- }
- </style>
|