diff --git a/components/common/modal/PlanPop.vue b/components/common/modal/PlanPop.vue index ec2306b..e7ba0d6 100644 --- a/components/common/modal/PlanPop.vue +++ b/components/common/modal/PlanPop.vue @@ -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; diff --git a/components/common/select/SelectBoxTime.vue b/components/common/select/SelectBoxTime.vue index 1046a54..ceffd67 100644 --- a/components/common/select/SelectBoxTime.vue +++ b/components/common/select/SelectBoxTime.vue @@ -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"