Home.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <div class="about">
  3. <el-config-provider :locale="zhCn">
  4. <v-header />
  5. <v-sidebar />
  6. <div class="content-box" :class="{ 'content-collapse': collapse }">
  7. <v-tags></v-tags>
  8. <div class="content">
  9. <router-view />
  10. </div>
  11. </div>
  12. </el-config-provider>
  13. </div>
  14. </template>
  15. <script setup>
  16. import { ElConfigProvider } from "element-plus";
  17. import zhCn from "element-plus/lib/locale/lang/zh-cn";
  18. import { computed, onBeforeMount } from "vue";
  19. import { useStore } from "vuex";
  20. import vHeader from "../components/Header.vue";
  21. import vSidebar from "../components/Sidebar.vue";
  22. import vTags from "../components/Tags.vue";
  23. import { fetchStationListAll, fetchBooststation } from "/@/api/api.js";
  24. const store = useStore();
  25. const collapse = computed(() => store.state.collapse);
  26. onBeforeMount(async () => {
  27. await getStationListAll();
  28. await getBooststation();
  29. });
  30. // //get 场站
  31. // const getStationList = async () => {
  32. // // const resold = await fetchStationList();
  33. // const resnew = await getStationinfoAll();
  34. // // console.log("resold>>>>>>>>qweqwe", resold);
  35. // let arr = [];
  36. // resnew.data.forEach((item) => {
  37. // let ddd = {
  38. // id :item.id,
  39. // name: item.name,
  40. // model:item.model,
  41. // modelList : item.modelList,
  42. // equipmentmodel: null,
  43. // };
  44. // arr.push(ddd);
  45. // });
  46. // // console.log("resnew>>>>>>>>123", resnew);
  47. // // console.log("arr>>>>>>>>456", arr);
  48. // store.dispatch("actionsStationList", arr);
  49. // };
  50. const getStationListAll = async () => {
  51. const { data } = await fetchStationListAll();
  52. store.dispatch("actionsStationListAll", data);
  53. };
  54. const getBooststation = async () => {
  55. const { data } = await fetchBooststation();
  56. store.dispatch("actionsBooststationList", data);
  57. };
  58. </script>