update screen 7, 25
This commit is contained in:
@ -62,7 +62,7 @@
|
||||
<v-row align="center" no-gutters>
|
||||
<v-col :cols="12">
|
||||
<label for="" class="search-box-label">
|
||||
<v-icon small :class="['mr-1','icon-blue']">$icoBulletPoint</v-icon>
|
||||
<v-icon small :class="['mr-1', 'icon-blue']">$icoBulletPoint</v-icon>
|
||||
설비
|
||||
</label>
|
||||
</v-col>
|
||||
@ -80,7 +80,7 @@
|
||||
<v-row align="center" no-gutters class="mt-4">
|
||||
<v-col :cols="12">
|
||||
<label for="" class="search-box-label">
|
||||
<v-icon small :class="['mr-1','icon-blue']">$icoBulletPoint</v-icon>
|
||||
<v-icon small :class="['mr-1', 'icon-blue']">$icoBulletPoint</v-icon>
|
||||
가이드지표
|
||||
</label>
|
||||
</v-col>
|
||||
@ -190,7 +190,7 @@ export default {
|
||||
modalDataKey: 'modalData',
|
||||
myModalKey: 'eqpmDetlPop',
|
||||
gridName: 'eqpmDetlGrid',
|
||||
loadGrid: true,
|
||||
loadGrid: false,
|
||||
setGrid: false,
|
||||
popCheck: false,
|
||||
dialog: false,
|
||||
@ -217,13 +217,7 @@ export default {
|
||||
}),
|
||||
InputValue: {
|
||||
get() {
|
||||
// return this.myBindingData;
|
||||
return [{
|
||||
"eqpmId": "EQ001",
|
||||
"eqpmNm": "Etcher A12",
|
||||
"gdIdxId": "GD001",
|
||||
"gdIdxNm": "Etch Depth Guide",
|
||||
}]
|
||||
return this.myBindingData;
|
||||
}
|
||||
},
|
||||
chkDialog() {
|
||||
@ -241,7 +235,7 @@ export default {
|
||||
},
|
||||
async popCheck(val) {
|
||||
if (val) {
|
||||
// await this.getRowGridData();
|
||||
await this.getRowGridData();
|
||||
this.dialog = true;
|
||||
} else {
|
||||
this.dialog = false;
|
||||
@ -365,57 +359,25 @@ export default {
|
||||
},
|
||||
async getRowGridData() {
|
||||
this.loadGrid = false;
|
||||
// var res = await this.postApiReturn({
|
||||
// apiKey: 'selectEqpmDetailPop',
|
||||
// resKey: 'eqpmDetlPopData',
|
||||
// sendParam: {
|
||||
// gdIdxId : this.myBindingData.gdIdxId,
|
||||
// eqpmId : this.myBindingData.eqpmId,
|
||||
// fromDt : this.myBindingData.fromDt,
|
||||
// toDt : this.myBindingData.toDt
|
||||
// },
|
||||
// });
|
||||
// const dayjs = require('dayjs');
|
||||
// var newRes = res.map(item=>
|
||||
// item = {
|
||||
// ...item,
|
||||
// totDttmDay : Utility.setFormatDate(item.totDttm, 'YYYY-MM-DD'),
|
||||
// totDttmTime : Utility.setFormatDate(item.totDttm, 'HH') + "~" + dayjs(item.totDttm).add(1,'h').format('HH'),
|
||||
// }
|
||||
// );
|
||||
|
||||
const newRes = [
|
||||
{
|
||||
"totDttmDay": "2025-07-10",
|
||||
"totDttmTime": "14:00~15:00",
|
||||
"gdIdxNm": "Etch Depth Guide",
|
||||
"careStndVal": 500,
|
||||
"warnStndVal": 700,
|
||||
"totVal": 720,
|
||||
"alrmMsg": "Chamber pressure exceeded warning threshold. Immediate inspection required.",
|
||||
"alrmKind": "경고"
|
||||
c
|
||||
var res = await this.postApiReturn({
|
||||
apiKey: 'selectEqpmDetailPop',
|
||||
resKey: 'eqpmDetlPopData',
|
||||
sendParam: {
|
||||
gdIdxId: this.myBindingData.gdIdxId,
|
||||
eqpmId: this.myBindingData.eqpmId,
|
||||
fromDt: this.myBindingData.fromDt,
|
||||
toDt: this.myBindingData.toDt
|
||||
},
|
||||
{
|
||||
"totDttmDay": "2025-07-10",
|
||||
"totDttmTime": "09:00~10:00",
|
||||
"gdIdxNm": "Etch Depth Guide",
|
||||
"careStndVal": 60,
|
||||
"warnStndVal": 80,
|
||||
"totVal": 75,
|
||||
"alrmMsg": "Temperature nearing warning threshold. Monitor closely.",
|
||||
"alrmKind": "주의"
|
||||
},
|
||||
{
|
||||
"totDttmDay": "2025-07-09",
|
||||
"totDttmTime": "22:00~23:00",
|
||||
"gdIdxNm": "Etch Depth Guide",
|
||||
"careStndVal": 300,
|
||||
"warnStndVal": 400,
|
||||
"totVal": 290,
|
||||
"alrmMsg": "Gas flow rate below caution level. Check for leaks or blockages.",
|
||||
"alrmKind": "주의"
|
||||
});
|
||||
const dayjs = require('dayjs');
|
||||
var newRes = res.map(item =>
|
||||
item = {
|
||||
...item,
|
||||
totDttmDay: Utility.setFormatDate(item.totDttm, 'YYYY-MM-DD'),
|
||||
totDttmTime: Utility.setFormatDate(item.totDttm, 'HH') + "~" + dayjs(item.totDttm).add(1, 'h').format('HH'),
|
||||
}
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
this.setModalGridData({
|
||||
|
Reference in New Issue
Block a user