update screen 7, 25

This commit is contained in:
dev
2025-07-25 11:57:02 +09:00
parent cb2d4e2e91
commit 524023b3e1
7 changed files with 753 additions and 790 deletions

View File

@ -27,7 +27,7 @@
<div ref="gridParent" style="height: calc(35vh);">
<component :ref="gridName" :is="loadGrid ? 'Grid' : null" :gridName="gridName"
:parentPrgmId="parentPrgmId" @getRowsData="getRowData" :innerTabGridInfo="innerTabGridInfo"
:dataPath="sampleDataPath" />
/>
</div>
</div>
</div>
@ -67,58 +67,58 @@ export default {
},
data() {
return {
loadGrid: true,
loadGrid: false,
gridName: 'effcInfoGrid',
sampleDataPath: {
"effcInfoGrid": {
data:
[
{
"eqpmKindId": "펌프",
"eqpmGrpId": "냉각수 시스템",
"totMethNm": "평균값"
},
{
"eqpmKindId": "모터",
"eqpmGrpId": "공기압 시스템",
"totMethNm": "최대값"
},
{
"eqpmKindId": "밸브",
"eqpmGrpId": "스팀 공급",
"totMethNm": "합계"
},
{
"eqpmKindId": "센서",
"eqpmGrpId": "온도 제어",
"totMethNm": "최소값"
},
{
"eqpmKindId": "컴프레서",
"eqpmGrpId": "에어 시스템",
"totMethNm": "중앙값"
}
]
// sampleDataPath: {
// "effcInfoGrid": {
// data:
// [
// {
// "eqpmKindId": "펌프",
// "eqpmGrpId": "냉각수 시스템",
// "totMethNm": "평균값"
// },
// {
// "eqpmKindId": "모터",
// "eqpmGrpId": "공기압 시스템",
// "totMethNm": "최대값"
// },
// {
// "eqpmKindId": "밸브",
// "eqpmGrpId": "스팀 공급",
// "totMethNm": "합계"
// },
// {
// "eqpmKindId": "센서",
// "eqpmGrpId": "온도 제어",
// "totMethNm": "최소값"
// },
// {
// "eqpmKindId": "컴프레서",
// "eqpmGrpId": "에어 시스템",
// "totMethNm": "중앙값"
// }
// ]
,
column: [
// ,
// column: [
{
header: '대상설비종류',
name: 'eqpmKindId',
// {
// header: '대상설비종류',
// name: 'eqpmKindId',
},
{
header: '대상설비그룹',
name: 'eqpmGrpId',
},
// },
// {
// header: '대상설비그룹',
// name: 'eqpmGrpId',
// },
{ header: '집계방법', name: 'totMethNm', align: 'center' },
// { header: '집계방법', name: 'totMethNm', align: 'center' },
]
// ]
}
},
// }
// },
itemList: [],
tagTpList: [],
// detailList: myDetail,