Fix comment
This commit is contained in:
@ -92,11 +92,13 @@
|
|||||||
background: map-deep-get($config, #{$theme}, "basic-button-background");
|
background: map-deep-get($config, #{$theme}, "basic-button-background");
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-button {
|
.searchFilter{
|
||||||
height: 40px;
|
.search-button {
|
||||||
color: map-deep-get($config, #{$theme}, "search-btn-color");
|
height: 40px;
|
||||||
|
color: map-deep-get($config, #{$theme}, "search-btn-color");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.v-dialog {
|
.v-dialog {
|
||||||
.ant-btn-icon-only {
|
.ant-btn-icon-only {
|
||||||
color: map-deep-get(
|
color: map-deep-get(
|
||||||
|
@ -745,7 +745,6 @@ export default {
|
|||||||
if (this.$refs.gridParent != undefined) {
|
if (this.$refs.gridParent != undefined) {
|
||||||
// gridHeight = gridHeight*0.9
|
// gridHeight = gridHeight*0.9
|
||||||
gridHeight = this.$refs.gridParent.offsetHeight - 35;
|
gridHeight = this.$refs.gridParent.offsetHeight - 35;
|
||||||
// console.log("gridHeight : ", gridHeight);
|
|
||||||
}
|
}
|
||||||
const myOptions = {
|
const myOptions = {
|
||||||
// scrollX: false,
|
// scrollX: false,
|
||||||
@ -959,7 +958,6 @@ export default {
|
|||||||
title: "Energy Usage",
|
title: "Energy Usage",
|
||||||
isDarkMode: this.isDarkMode,
|
isDarkMode: this.isDarkMode,
|
||||||
});
|
});
|
||||||
console.log("charto:", chartOption);
|
|
||||||
chartOption["series"][0]["data"][0].value =
|
chartOption["series"][0]["data"][0].value =
|
||||||
res[0]["effcRt"] != null ? res[0]["effcRt"] : 0;
|
res[0]["effcRt"] != null ? res[0]["effcRt"] : 0;
|
||||||
this.$store.state.pageData[myPrgmId][this.chart_01] = chartOption;
|
this.$store.state.pageData[myPrgmId][this.chart_01] = chartOption;
|
||||||
@ -1166,7 +1164,6 @@ export default {
|
|||||||
// series: seriesData,
|
// series: seriesData,
|
||||||
// };
|
// };
|
||||||
|
|
||||||
console.log("chart 5 data:", seriesData);
|
|
||||||
await this.$nextTick(() => {});
|
await this.$nextTick(() => {});
|
||||||
this.setChartOption({
|
this.setChartOption({
|
||||||
chartKey: "compareEqpmTGdChart",
|
chartKey: "compareEqpmTGdChart",
|
||||||
@ -1649,7 +1646,6 @@ export default {
|
|||||||
}[state];
|
}[state];
|
||||||
},
|
},
|
||||||
chartClickEvent(argData, $event) {
|
chartClickEvent(argData, $event) {
|
||||||
// console.log('chartClickEvent', argData);
|
|
||||||
let pageMapper = {
|
let pageMapper = {
|
||||||
dashBoard_enrgUsageGauge: {
|
dashBoard_enrgUsageGauge: {
|
||||||
pageName: "ems-effc-EnrgUseTotSummPage",
|
pageName: "ems-effc-EnrgUseTotSummPage",
|
||||||
|
@ -996,6 +996,3 @@ const myDetail = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
|
||||||
@import '@/assets/scss/common.scss';
|
|
||||||
</style>
|
|
||||||
|
@ -198,7 +198,6 @@ export default {
|
|||||||
async asyncData(context) {
|
async asyncData(context) {
|
||||||
const myState = context.store.state;
|
const myState = context.store.state;
|
||||||
myPrgmId = context.route.query.prgmId;
|
myPrgmId = context.route.query.prgmId;
|
||||||
console.log("menudata:", myState.menuData[myPrgmId]);
|
|
||||||
await context.store.commit("setActiveMenuInfo", myState.menuData[myPrgmId]);
|
await context.store.commit("setActiveMenuInfo", myState.menuData[myPrgmId]);
|
||||||
myTitle = await myState.activeMenuInfo.menuNm;
|
myTitle = await myState.activeMenuInfo.menuNm;
|
||||||
},
|
},
|
||||||
@ -522,7 +521,6 @@ export default {
|
|||||||
async btnActions(action) {
|
async btnActions(action) {
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case "add" /* */:
|
case "add" /* */:
|
||||||
console.log('aa:',this.tagList);
|
|
||||||
// if(this.pageData.totalSelectedTags.split('/*wq2a/').length>5){
|
// if(this.pageData.totalSelectedTags.split('/*wq2a/').length>5){
|
||||||
if (this.tagList.length >= 5) {
|
if (this.tagList.length >= 5) {
|
||||||
alert("TAG는 최대 5개까지 선택 가능합니다.");
|
alert("TAG는 최대 5개까지 선택 가능합니다.");
|
||||||
@ -802,7 +800,6 @@ export default {
|
|||||||
// data SeriesData 추가
|
// data SeriesData 추가
|
||||||
chartDataDict[dataTagTitle]["seriesData"] = seriesData;
|
chartDataDict[dataTagTitle]["seriesData"] = seriesData;
|
||||||
// data legend 추가
|
// data legend 추가
|
||||||
console.log("le dat:", legendData);
|
|
||||||
chartDataDict[dataTagTitle]["legendList"] = legendData;
|
chartDataDict[dataTagTitle]["legendList"] = legendData;
|
||||||
//
|
//
|
||||||
//rawData chart data 구성하기
|
//rawData chart data 구성하기
|
||||||
|
Reference in New Issue
Block a user