update screen 2, 8, 9, 10, 27, 33, 34
This commit is contained in:
@ -351,25 +351,25 @@ export default {
|
||||
tmpChrtOp.color = light_Col;
|
||||
}
|
||||
}
|
||||
console.log('ops11:',tmpChrtOp)
|
||||
// console.log('ops11:',tmpChrtOp)
|
||||
return tmpChrtOp;
|
||||
},
|
||||
}),
|
||||
},
|
||||
created() {
|
||||
console.log('wd data:',this.widgetData)
|
||||
// console.log('wd data:',this.widgetData)
|
||||
},
|
||||
methods: {
|
||||
onClick(event, instance, ECharts) {
|
||||
console.log('onClick : ', event);
|
||||
// console.log('onClick : ', event);
|
||||
this.$emit('click', event);
|
||||
},
|
||||
onDblClick(event, instance, ECharts) {
|
||||
console.log('onDblClick : ', event);
|
||||
// console.log('onDblClick : ', event);
|
||||
this.$emit('dblclick', event);
|
||||
},
|
||||
onRightClick(event, instance, ECharts) {
|
||||
console.log('onRightClick : ', event);
|
||||
// console.log('onRightClick : ', event);
|
||||
this.$emit('rclick', event);
|
||||
},
|
||||
onLegendSelect(params) {
|
||||
|
@ -30,7 +30,7 @@
|
||||
<img :src="arrowIcon" alt="">
|
||||
</div>
|
||||
<v-text-field
|
||||
v-if="isRange"
|
||||
v-show="isRange"
|
||||
id="endpicker"
|
||||
ref="endpicker"
|
||||
v-model="toDtValue"
|
||||
@ -47,9 +47,6 @@
|
||||
</template>
|
||||
</v-text-field>
|
||||
</div>
|
||||
<!-- test -->
|
||||
<!-- <a-button @click="onOpenDatepicker()">Open</a-button> -->
|
||||
<!-- end test -->
|
||||
</v-col>
|
||||
</v-row>
|
||||
</template>
|
||||
|
@ -163,7 +163,7 @@ export default {
|
||||
},
|
||||
created() {},
|
||||
async mounted() {
|
||||
console.log('--------------DEBUG----gridData: ', this.gridData);
|
||||
// console.log('--------------DEBUG----gridData: ', this.gridData);
|
||||
if (this.gridName) {
|
||||
this.gridInstance = this.$refs['tuigrid' + this.gridName];
|
||||
|
||||
@ -666,6 +666,8 @@ export default {
|
||||
store.dimension.offsetLeft = offsetLeft;
|
||||
},
|
||||
setHeight(_a,height){
|
||||
return; // setting auto height
|
||||
|
||||
// console.log("setHeight");
|
||||
var dimension = _a.dimension;
|
||||
var headerHeight = dimension.headerHeight, summaryHeight = dimension.summaryHeight, tableBorderWidth = dimension.tableBorderWidth;
|
||||
|
@ -3,8 +3,7 @@
|
||||
<!--<v-btn icon tile :ripple="false" @click="btnActionsFnc('addLeftToRight')">
|
||||
<v-icon>mdi-chevron-right</v-icon>
|
||||
</v-btn> -->
|
||||
<a-button type="default" @click="btnActionsFnc('addLeftToRight')">
|
||||
<RightOutlines/>
|
||||
<a-button @click="btnActionsFnc('addLeftToRight')" type="primary" ghost icon="right" >
|
||||
</a-button>
|
||||
|
||||
<!--<v-btn
|
||||
@ -16,8 +15,7 @@
|
||||
>
|
||||
<v-icon>mdi-chevron-left</v-icon>
|
||||
</v-btn> -->
|
||||
<a-button class="mt-2" type="default" @click="btnActionsFnc('removeRightToLeft')">
|
||||
<LeftOutlines/>
|
||||
<a-button class="mt-2" @click="btnActionsFnc('removeRightToLeft')" type="primary" ghost icon="left">
|
||||
</a-button>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -318,7 +318,7 @@ export default {
|
||||
// }
|
||||
},
|
||||
mounted(){
|
||||
this.initTest(); return;
|
||||
// this.initTest(); return;
|
||||
},
|
||||
methods: {
|
||||
...mapMutations({
|
||||
@ -478,10 +478,6 @@ export default {
|
||||
// })
|
||||
},
|
||||
async setChart(){
|
||||
// test
|
||||
this.initTestChart(); return;
|
||||
// end test
|
||||
|
||||
this.loadChart = false;
|
||||
let xAxisData = [];
|
||||
let seriesData = [];
|
||||
|
@ -2,22 +2,17 @@
|
||||
<v-row class="search-box" align="center" no-gutters>
|
||||
<v-col v-if="label" :cols="labelCols">
|
||||
<label for="" class="search-box-label">
|
||||
<v-icon
|
||||
v-if="iconShow"
|
||||
small
|
||||
:class="['mr-1', required ? 'icon-orange' : 'icon-blue']"
|
||||
>$icoBulletPoint</v-icon
|
||||
>
|
||||
<v-icon v-if="iconShow" small :class="['mr-1', required ? 'icon-orange' : 'icon-blue']">$icoBulletPoint</v-icon>
|
||||
{{ label }}
|
||||
</label>
|
||||
</v-col>
|
||||
<v-col :cols="label ? textCols : ''">
|
||||
<v-select v-model="selectValue" :items="searchParam[parentPrgmId].blocMstrList" label="사업장을 선택하세요"
|
||||
item-text="blocNm" item-value="idx" append-icon="" class="v-select__custom" outlined
|
||||
:hide-details="true" :class="['v-select__custom', customClass]">
|
||||
<v-select v-model="selectValue" :items="searchParam[parentPrgmId].blocMstrList"
|
||||
item-text="blocNm" item-value="idx" append-icon="" class="v-select__custom" outlined :hide-details="true"
|
||||
:class="['v-select__custom', customClass]">
|
||||
<template v-slot:append>
|
||||
<v-icon>$icoChevronDown</v-icon>
|
||||
</template>
|
||||
<v-icon>$icoChevronDown</v-icon>
|
||||
</template>
|
||||
</v-select>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
@ -85,6 +85,11 @@ export default {
|
||||
type: String,
|
||||
require: false,
|
||||
},
|
||||
required: {
|
||||
type: Boolean,
|
||||
require: false,
|
||||
default: false
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
@ -11,9 +11,11 @@
|
||||
<v-col :cols="label ? textCols : ''">
|
||||
<v-select v-model="selectValue" :items="searchParam[parentPrgmId][dataKey + 'List']" item-text="commCdNm"
|
||||
item-value="commCd" outlined :hide-details="true" append-icon=""
|
||||
:class="['v-select__custom', customClass]"><template v-slot:append>
|
||||
:class="['v-select__custom', customClass]">
|
||||
<template v-slot:append>
|
||||
<v-icon>$icoChevronDown</v-icon>
|
||||
</template></v-select>
|
||||
</template>
|
||||
</v-select>
|
||||
<!-- @change="updateBlocCode($event)" -->
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
Reference in New Issue
Block a user