29259
This commit is contained in:
@@ -74,6 +74,7 @@
|
||||
value-format="yyyy-MM-dd"
|
||||
v-model="form.date"
|
||||
type="date"
|
||||
:picker-options="pickerOptions"
|
||||
placeholder="选择日期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
@@ -96,6 +97,11 @@
|
||||
|
||||
data () {
|
||||
return {
|
||||
pickerOptions: {
|
||||
disabledDate(time) {
|
||||
return time.getTime() > Date.now();
|
||||
}
|
||||
},
|
||||
currIndex: 0,
|
||||
isShowDate: false,
|
||||
isShowPlayBtn: false,
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
value-format="yyyy-MM-dd"
|
||||
v-model="form.date"
|
||||
type="date"
|
||||
:picker-options="pickerOptions"
|
||||
placeholder="选择日期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
@@ -107,6 +108,11 @@
|
||||
form: {
|
||||
date: ''
|
||||
},
|
||||
pickerOptions: {
|
||||
disabledDate(time) {
|
||||
return time.getTime() > Date.now();
|
||||
}
|
||||
},
|
||||
times: [],
|
||||
isShowTimeline: true,
|
||||
checkList: [],
|
||||
|
||||
Reference in New Issue
Block a user