Commit 0ecfb8f0 authored by 王李辉's avatar 王李辉

修改默认选择时间

parent f1f18956
......@@ -130,7 +130,7 @@
type="datetime"
@confirm="onConFindTime"
@cancel="showFindTime = false"
v-model="findDateTime"
v-model="currentDate"
/>
</van-popup>
......@@ -230,6 +230,7 @@
<van-popup v-model="showExpireTime" position="bottom">
<van-datetime-picker
type="datetime"
v-model="currentDate"
@confirm="onConExpireTime"
@cancel="showExpireTime = false"
/>
......@@ -379,7 +380,7 @@ export default {
columnsRecPeople: [],
isShowreturnCause: false,
returnCause: "", // 退回原因
findDateTime : new Date()
currentDate : new Date()
};
},
created() {
......
......@@ -20,6 +20,7 @@
<van-popup v-model="showDelayTime" position="bottom">
<van-datetime-picker
type="datetime"
v-model="currentDate"
@confirm="onConDelayTime"
@cancel="showDelayTime = false"
/>
......@@ -64,6 +65,7 @@ export default {
delayTime: "", // 延迟时间
showDelayTime: false,
delayApply: "", // 延迟理由
currentDate: new Date(),
};
},
......
......@@ -67,7 +67,7 @@
type="datetime"
@confirm="onConfirm"
@cancel="showCalendar = false"
v-model="endDateTime"
v-model="currentDate"
/>
</van-popup>
......@@ -176,7 +176,7 @@ export default {
showPickerReview: false,
valueIdea: "",
returnReason: "",
endDateTime: new Date()
currentDate: new Date()
};
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment