This commit is contained in:
joylink_fanyuhong 2020-02-13 16:20:12 +08:00
commit f05578ea96
2 changed files with 4 additions and 3 deletions

View File

@ -238,6 +238,7 @@
v-model="formModel[item.prop]" v-model="formModel[item.prop]"
:placeholder="item.placeholder" :placeholder="item.placeholder"
:disabled="item.disabled" :disabled="item.disabled"
:value-format="'HH:mm:ss'"
:picker-options="{ selectableRange: '00:00:00 - 23:59:59' }" :picker-options="{ selectableRange: '00:00:00 - 23:59:59' }"
/> />
</el-form-item> </el-form-item>

View File

@ -116,7 +116,7 @@ export default {
} else { } else {
this.formModel.right = null; this.formModel.right = null;
} }
createRunPlan(this.$route.query.mapId, this.formModel).then(res => { createRunPlan(this.$route.query.planId, this.formModel).then(res => {
console.log(res); console.log(res);
this.doClose() this.doClose()
}).catch(error => { }).catch(error => {
@ -125,8 +125,8 @@ export default {
}); });
}, },
// //
formatDateTime(inputTime) { formatDateTime(date) {
let date = new Date(inputTime); console.log(date, 3333);
let h = date.getHours(); let h = date.getHours();
h = h < 10 ? ('0' + h) : h; h = h < 10 ? ('0' + h) : h;
let minute = date.getMinutes(); let minute = date.getMinutes();