Update 1308
This commit is contained in:
@ -238,7 +238,13 @@ export default {
|
||||
type: Object,
|
||||
require: false,
|
||||
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];
|
||||
this.strtDt = Utility.setFormatDate(returnData.strtDt, 'YYYY-MM-DD');
|
||||
this.endDt = Utility.setFormatDate(returnData.endDt, 'YYYY-MM-DD');
|
||||
this.selectTimeValue1 = returnData.strtHh+' : '+ returnData.strtMm;
|
||||
this.selectTimeValue2 = returnData.endHh+' : '+ returnData.endMm;
|
||||
this.selectTimeValue1 = returnData.strtHh + ' : ' + returnData.strtMm;
|
||||
this.selectTimeValue2 = returnData.endHh + ' : ' + returnData.endMm;
|
||||
this.planTitle = returnData.planTitle;
|
||||
this.planCntn = returnData.planCntn;
|
||||
this.planColor = returnData.planColor;
|
||||
|
@ -20,7 +20,7 @@
|
||||
item-value="value"
|
||||
solo
|
||||
outlined
|
||||
:menu-props="{ auto: true, offsetY: true }"
|
||||
:menu-props="{ top: false, offsetY: true }"
|
||||
:hide-details="true"
|
||||
:class="['v-select__custom', customClass]"
|
||||
:disabled="disabled"
|
||||
|
Reference in New Issue
Block a user