index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="page-content mx-bg-shared-gradient">
  3. <view class="fx-row fx-bet-cen pl-30 mt-100">
  4. <uv-image src="/static/ie/index/title.png" width="156px" height="auto" mode="widthFix"/>
  5. <uv-image src="/static/ie/index/title-right.png" width="200px" height="auto" mode="widthFix"/>
  6. </view>
  7. <pretty-card class="-mt-80"/>
  8. <view class="px-20 fx-col gap-20">
  9. <ai-entry-card v-for="(e) in entries" v-bind="e"/>
  10. </view>
  11. <uv-gap height="20"/>
  12. </view>
  13. </template>
  14. <script>
  15. import PrettyCard from "@/pages/ie/components/card/pretty-card.vue";
  16. import AiEntryCard from "@/pages/ie/index/components/ai-entry-card.vue";
  17. export default {
  18. components: {AiEntryCard, PrettyCard},
  19. data() {
  20. return {
  21. entries: [
  22. {
  23. path: "/pages/ie/entry-single/entry-single",
  24. name: "院校录取概率测试",
  25. description: "输入院校专业,精准测算录取结果",
  26. icon: "/static/ie/index/single.png"
  27. },
  28. {
  29. path: "/pages/ie/entry-analysis/entry-analysis",
  30. name: "模拟志愿分析",
  31. description: "精准分析你的志愿表",
  32. icon: "/static/ie/index/analysis.png"
  33. },
  34. {
  35. path: "/pages/ie/entry-ai/entry-ai",
  36. name: "AI志愿",
  37. description: "精准推荐合理志愿,生成志愿表",
  38. icon: "/static/ie/index/ai.png"
  39. },
  40. {
  41. path: "/pages/ie/entry-calculate/entry-calculate",
  42. name: "测职业技能分",
  43. description: "结合院校录取规则,快速测算",
  44. icon: "/static/ie/index/calculate.png"
  45. }
  46. ]
  47. }
  48. },
  49. methods: {}
  50. }
  51. </script>
  52. <style>
  53. </style>