修改
This commit is contained in:
parent
731a71a860
commit
52960f929f
@ -164,7 +164,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<div class="toptop">
|
<div class="toptop">
|
||||||
<el-radio v-model="item.checked2" :label="2" @change="handleCheckAllChange2($event, item, index)">
|
<el-radio
|
||||||
|
v-model="item.checked2"
|
||||||
|
:label="2"
|
||||||
|
@change="handleCheckAllChange2($event, item, index)"
|
||||||
|
>
|
||||||
<span style="width: 78px">指定时间:</span>
|
<span style="width: 78px">指定时间:</span>
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
format="yyyy-MM-dd HH:mm:ss"
|
format="yyyy-MM-dd HH:mm:ss"
|
||||||
@ -173,8 +177,8 @@
|
|||||||
type="datetime"
|
type="datetime"
|
||||||
placeholder="选择日期时间"
|
placeholder="选择日期时间"
|
||||||
:picker-options="pickerOptions"
|
:picker-options="pickerOptions"
|
||||||
@input="input(item,index)"
|
@input="input(item, index)"
|
||||||
@focus="setCurrentTime(item,index)"
|
@focus="setCurrentTime(item, index)"
|
||||||
ref="datePicker"
|
ref="datePicker"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
@ -720,7 +724,7 @@ export default {
|
|||||||
item.timedata = ""
|
item.timedata = ""
|
||||||
},
|
},
|
||||||
|
|
||||||
input(item,index){
|
input(item, index) {
|
||||||
this.$forceUpdate()
|
this.$forceUpdate()
|
||||||
// const dateParts = item.nodePlanTime.split(' ');
|
// const dateParts = item.nodePlanTime.split(' ');
|
||||||
// const date = new Date();
|
// const date = new Date();
|
||||||
@ -761,7 +765,7 @@ export default {
|
|||||||
item.routeNodeDay = ""
|
item.routeNodeDay = ""
|
||||||
console.log(e, item, 'value3')
|
console.log(e, item, 'value3')
|
||||||
let yy = new Date().getFullYear();
|
let yy = new Date().getFullYear();
|
||||||
let mm = (new Date().getMonth() + 1) < 10 ? '0' + (new Date().getMonth()) : (new Date().getMonth());
|
let mm = (new Date().getMonth() + 1) < 10 ? '0' + (new Date().getMonth() + 1) : (new Date().getMonth() + 1);// 月份是从0开始的
|
||||||
let dd = (new Date().getDate()) < 10 ? '0' + (new Date().getDate()) : (new Date().getDate());
|
let dd = (new Date().getDate()) < 10 ? '0' + (new Date().getDate()) : (new Date().getDate());
|
||||||
let hh = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours();
|
let hh = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours();
|
||||||
let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes();
|
let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user