|
@@ -108,7 +108,7 @@
|
|
|
<el-option
|
|
|
v-for="item in componentList"
|
|
|
:key="item.id"
|
|
|
- :value="item.id"
|
|
|
+ :value="item.nemCode"
|
|
|
:label="item.name"
|
|
|
>
|
|
|
</el-option>
|
|
@@ -523,9 +523,7 @@ const modelList = computed(() => {
|
|
|
if (state.stationId == "") {
|
|
|
return [];
|
|
|
} else {
|
|
|
- state.modelId = route.query.deviceId
|
|
|
- ? route.query.modelId
|
|
|
- : state.modelListAll[state.stationId]?.[0]?.id || "";
|
|
|
+ state.modelId = route.query.deviceId ? route.query.modelId : "";
|
|
|
return state.modelListAll[state.stationId];
|
|
|
}
|
|
|
});
|