|
@@ -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 = "";
|