@@ -6,6 +6,12 @@
"navigationBarTitleText": "人才推荐"
}
},
+ {
+ "path": "pages/index/loading",
+ "style": {
+ "navigationBarTitleText": ""
+ }
+ },
{
"path": "pages/index/position",
"style": {
@@ -0,0 +1,19 @@
+<template>
+ <view class="loading">
+ <uni-icons
+ type="spinner-cycle"
+ size="24"
+ />
+ </view>
+</template>
+
+<script setup>
+</script>
+<style lang="scss" scoped>
+.loading {
+ // height: 60vh;
+ // line-height: 60vh;
+ margin-top: 20px;
+ text-align: center;
+}
+</style>