123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="page-content mx-bg-shared-gradient">
- <view class="fx-row fx-bet-cen pl-30 mt-100">
- <uv-image src="/static/ie/index/title.png" width="156px" height="auto" mode="widthFix"/>
- <uv-image src="/static/ie/index/title-right.png" width="200px" height="auto" mode="widthFix"/>
- </view>
- <pretty-card class="-mt-80"/>
- <view class="px-20 fx-col gap-20">
- <ai-entry-card v-for="(e) in entries" v-bind="e"/>
- </view>
- <uv-gap height="20"/>
- </view>
- </template>
- <script>
- import PrettyCard from "@/pages/ie/components/card/pretty-card.vue";
- import AiEntryCard from "@/pages/ie/index/components/ai-entry-card.vue";
- export default {
- components: {AiEntryCard, PrettyCard},
- data() {
- return {
- entries: [
- {
- path: "/pages/ie/entry-single/entry-single",
- name: "院校录取概率测试",
- description: "输入院校专业,精准测算录取结果",
- icon: "/static/ie/index/single.png"
- },
- {
- path: "/pages/ie/entry-analysis/entry-analysis",
- name: "模拟志愿分析",
- description: "精准分析你的志愿表",
- icon: "/static/ie/index/analysis.png"
- },
- {
- path: "/pages/ie/entry-ai/entry-ai",
- name: "AI志愿",
- description: "精准推荐合理志愿,生成志愿表",
- icon: "/static/ie/index/ai.png"
- },
- {
- path: "/pages/ie/entry-calculate/entry-calculate",
- name: "测职业技能分",
- description: "结合院校录取规则,快速测算",
- icon: "/static/ie/index/calculate.png"
- }
- ]
- }
- },
- methods: {}
- }
- </script>
- <style>
- </style>
|