Update 1308
This commit is contained in:
@ -238,7 +238,13 @@ export default {
|
|||||||
type: Object,
|
type: Object,
|
||||||
require: false,
|
require: false,
|
||||||
default: () => {
|
default: () => {
|
||||||
return {};
|
return {
|
||||||
|
selectTimeValue1: "00 : 00", // selectBoxTime에 필요한 prop
|
||||||
|
selectTimeValueList1: [], // selectBoxTime에 필요한 prop
|
||||||
|
selectTimeValue2: "01 : 00", // selectBoxTime에 필요한 prop
|
||||||
|
selectTimeValueList2: [], // selectBoxTime에 필요한 prop
|
||||||
|
minInterval: 10,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -536,8 +542,8 @@ export default {
|
|||||||
let returnData = res[0];
|
let returnData = res[0];
|
||||||
this.strtDt = Utility.setFormatDate(returnData.strtDt, 'YYYY-MM-DD');
|
this.strtDt = Utility.setFormatDate(returnData.strtDt, 'YYYY-MM-DD');
|
||||||
this.endDt = Utility.setFormatDate(returnData.endDt, 'YYYY-MM-DD');
|
this.endDt = Utility.setFormatDate(returnData.endDt, 'YYYY-MM-DD');
|
||||||
this.selectTimeValue1 = returnData.strtHh+' : '+ returnData.strtMm;
|
this.selectTimeValue1 = returnData.strtHh + ' : ' + returnData.strtMm;
|
||||||
this.selectTimeValue2 = returnData.endHh+' : '+ returnData.endMm;
|
this.selectTimeValue2 = returnData.endHh + ' : ' + returnData.endMm;
|
||||||
this.planTitle = returnData.planTitle;
|
this.planTitle = returnData.planTitle;
|
||||||
this.planCntn = returnData.planCntn;
|
this.planCntn = returnData.planCntn;
|
||||||
this.planColor = returnData.planColor;
|
this.planColor = returnData.planColor;
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
item-value="value"
|
item-value="value"
|
||||||
solo
|
solo
|
||||||
outlined
|
outlined
|
||||||
:menu-props="{ auto: true, offsetY: true }"
|
:menu-props="{ top: false, offsetY: true }"
|
||||||
:hide-details="true"
|
:hide-details="true"
|
||||||
:class="['v-select__custom', customClass]"
|
:class="['v-select__custom', customClass]"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
|
Reference in New Issue
Block a user