|
|
@@ -2,16 +2,29 @@
|
|
|
<ie-page bg-color="#F6F8FA">
|
|
|
<ie-navbar title="测录取概率" transparent bg-color="#FFFFFF" title-color="black" :keep-title-color="true" />
|
|
|
<ie-image is-oss src="/volunteer/voluntary/index/banner.png" />
|
|
|
- <view class="mx-30 -mt-180 z-1 bg-white rounded-xl p-35 min-h-[500px]">
|
|
|
- 1233
|
|
|
+ <view class="mx-30 -mt-180 z-1 bg-white rounded-xl p-35">
|
|
|
+ <view class="flex justify-between items-center">
|
|
|
+ <view class="text-lg text-fore-title">报考院校专业</view>
|
|
|
+ <view class="text-base text-fore-placeholder flex items-center">
|
|
|
+ <text>更多</text>
|
|
|
+ <uv-icon name="arrow-right" color="info"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <ie-empty :image="img" text="请选择你的报考院校专业~"/>
|
|
|
</view>
|
|
|
+ <ie-safe-toolbar :height="100" :shadow="false">
|
|
|
+ <view class="px-30 py-16">
|
|
|
+ <ie-button>测录取概率</ie-button>
|
|
|
+ </view>
|
|
|
+ </ie-safe-toolbar>
|
|
|
</ie-page>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import {useNavbar} from "@/hooks/useNavbar";
|
|
|
|
|
|
-const {baseStickyTop} = useNavbar()
|
|
|
+import config from "@/config";
|
|
|
+
|
|
|
+const img = computed(() => config.ossUrl + '/volunteer/voluntary/index/empty_data.png')
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|