|
|
@@ -162,8 +162,8 @@ export default {
|
|
|
activate: {
|
|
|
type: '',
|
|
|
title: '',
|
|
|
- minDate: new Date(2020, 0, 1),
|
|
|
- maxDate: new Date(2025, 10, 1),
|
|
|
+ minDate: new Date(),
|
|
|
+ maxDate: new Date(),
|
|
|
},
|
|
|
validDate: new Date(),
|
|
|
QRChainList: [],
|
|
|
@@ -246,10 +246,10 @@ export default {
|
|
|
this.activate = {
|
|
|
type: type,
|
|
|
title: '请选择开始日期',
|
|
|
- minDate: new Date(2025, 9, 1),
|
|
|
- maxDate: new Date(2026, 9, 1),
|
|
|
+ minDate: new Date(),
|
|
|
+ maxDate: new Date(),
|
|
|
};
|
|
|
- this.validDate = new Date(2025, 9, 1);
|
|
|
+ this.validDate = new Date();
|
|
|
} else {
|
|
|
this.activate = {
|
|
|
type: type,
|
|
|
@@ -257,7 +257,7 @@ export default {
|
|
|
minDate: this.activityForm.qrStartTime
|
|
|
? new Date(this.activityForm.qrStartTime)
|
|
|
: new Date(),
|
|
|
- maxDate: new Date(2026, 9, 1),
|
|
|
+ maxDate: new Date(),
|
|
|
};
|
|
|
this.validDate = this.activityForm.qrEndTime
|
|
|
? new Date(this.activityForm.qrEndTime)
|
|
|
@@ -329,10 +329,11 @@ export default {
|
|
|
}
|
|
|
.tips {
|
|
|
flex: 1;
|
|
|
- font-size: 11px;
|
|
|
+ font-size: 14px;
|
|
|
margin-left: 15px;
|
|
|
line-height: 15px;
|
|
|
text-align: right;
|
|
|
+ color: red;
|
|
|
}
|
|
|
.van-button--normal {
|
|
|
padding: 0 8px;
|