xq fix:"重新修改了逆变器列表、项目列表"

This commit is contained in:
2025-07-08 09:54:12 +08:00
parent e44aed32ce
commit 5171251584
10 changed files with 1627 additions and 9 deletions

View File

@ -102,7 +102,7 @@ import { TenantVO } from '@/api/types';
import notice from './notice/index.vue';
import router from '@/router';
import { ElMessageBoxOptions } from 'element-plus/es/components/message-box/src/message-box.type';
import { getAll } from '@/api/business/nbq';
import { getAll } from '@/api/business/inverter';
import { useProgram } from '@/store/modules/program';
const appStore = useAppStore();
@ -215,7 +215,7 @@ function getAllList() {
const data = res.data;
programList.value = data.map((item) => {
return {
nbqId: item.nbqId,
nbqId: item.projectId,
projectBrief: item.projectBrief
};
});