|
@@ -332,11 +332,29 @@ const getequipmentmodel_list = async () => {
|
|
|
state.modelListAll = data;
|
|
|
};
|
|
|
const modelList = computed(() => {
|
|
|
- if (state.stationId == "") {
|
|
|
- return [];
|
|
|
- } else {
|
|
|
- return state.modelListAll[state.stationId];
|
|
|
- }
|
|
|
+ // if (state.stationId == "") {
|
|
|
+ // return [];
|
|
|
+ // } else {
|
|
|
+ // return state.modelListAll[state.stationId];
|
|
|
+ // }
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ id: "SEC-W02B-1250kW",
|
|
|
+ nemCode: "SEC-W02B-1250kW",
|
|
|
+ name: "SEC-W02B-1250kW",
|
|
|
+ aname: "SEC-W02B-1250kW",
|
|
|
+ description: "DI",
|
|
|
+ powerProduction: 1250,
|
|
|
+ windturbineManufacturerId: "SHDQ_MF",
|
|
|
+ photo: null,
|
|
|
+ unit: null,
|
|
|
+ cutinwindSpeed: 3,
|
|
|
+ ratedwindSpeed: 11,
|
|
|
+ cutoutwindSpeed: "25",
|
|
|
+ sweptArea: 5800,
|
|
|
+ equipmentCategory: "F",
|
|
|
+ },
|
|
|
+ ];
|
|
|
});
|
|
|
//get 风机机组
|
|
|
const getWindturbineList = async () => {
|