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]"
:placeholder="item.placeholder"
:disabled="item.disabled"
:value-format="'HH:mm:ss'"
:picker-options="{ selectableRange: '00:00:00 - 23:59:59' }"
/>
</el-form-item>

View File

@ -116,7 +116,7 @@ export default {
} else {
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);
this.doClose()
}).catch(error => {
@ -125,8 +125,8 @@ export default {
});
},
//
formatDateTime(inputTime) {
let date = new Date(inputTime);
formatDateTime(date) {
console.log(date, 3333);
let h = date.getHours();
h = h < 10 ? ('0' + h) : h;
let minute = date.getMinutes();