Browse Source

修复场站列表无数据

baiyanting 1 year ago
parent
commit
1b07547544

+ 6 - 2
src/views/IntegratedAlarm/deviceConfig/components/custom.vue

@@ -30,6 +30,7 @@
         size="mini"
         size="mini"
         style="width: 150px"
         style="width: 150px"
         popper-class="select"
         popper-class="select"
+        @change="handleCategoryChange"
       >
       >
         <el-option
         <el-option
           key="windturbine"
           key="windturbine"
@@ -208,7 +209,11 @@ import { ElMessageBox, ElMessage } from "element-plus";
 import customcomponents from "./custom_components.vue";
 import customcomponents from "./custom_components.vue";
 const token = { token: sessionStorage.getItem("token") };
 const token = { token: sessionStorage.getItem("token") };
 const store = useStore();
 const store = useStore();
-const stationList = computed(() => store.state.stationList);
+const stationList = computed(() =>
+  query.category == "windturbine"
+    ? store.state.stationListAll.filter((item) => item.windType == -1)
+    : store.state.stationListAll.filter((item) => item.windType == -2)
+);
 const isStation = computed(() => store.getters.isStation);
 const isStation = computed(() => store.getters.isStation);
 const state = reactive({
 const state = reactive({
   tableData: [],
   tableData: [],
@@ -269,7 +274,6 @@ const handleEditClick = (row) => {
 const handleInsert = () => {
 const handleInsert = () => {
   state.visible = true;
   state.visible = true;
 };
 };
-
 //changeStation
 //changeStation
 const changeStation = async () => {
 const changeStation = async () => {
   query.modelId = "";
   query.modelId = "";

+ 3 - 1
src/views/IntegratedAlarm/deviceConfig/components/custom_components.vue

@@ -250,7 +250,9 @@ import {
 } from "@/api/zhbj/index.js";
 } from "@/api/zhbj/index.js";
 import { useStore } from "vuex";
 import { useStore } from "vuex";
 const store = useStore();
 const store = useStore();
-const stationList = computed(() => store.state.stationList);
+const stationList = computed(() =>
+  store.state.stationListAll.map((i) => i.windType == -1)
+);
 onMounted(() => {
 onMounted(() => {
   getfetchRelatePart();
   getfetchRelatePart();
 });
 });