|
|
@@ -294,22 +294,22 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
if (this.form.isStart === 0) {
|
|
|
- this.form.planCommencementTime = this.time1 === null ? '' : this.time1
|
|
|
+ this.form.planCommencementTime = this.time1 === null ? '' : this.time1.join(',')
|
|
|
this.form.startTime = ''
|
|
|
} else if (this.form.isStart === 1 && this.time1 !== null) {
|
|
|
this.form.planCommencementTime = ''
|
|
|
- this.form.startTime = this.time1
|
|
|
+ this.form.startTime = this.time1.join(',')
|
|
|
} else {
|
|
|
this.form.planCommencementTime = ''
|
|
|
this.form.startTime = ''
|
|
|
}
|
|
|
|
|
|
if (this.form.isStorage === 0) {
|
|
|
- this.form.planStorageTime = this.time2 === null ? '' : this.time2
|
|
|
+ this.form.planStorageTime = this.time2 === null ? '' : this.time2.join(',')
|
|
|
this.form.storageTime = ''
|
|
|
} else if (this.form.isStorage === 1 && this.time2 !== null) {
|
|
|
this.form.planStorageTime = ''
|
|
|
- this.form.storageTime = this.time2
|
|
|
+ this.form.storageTime = this.time2.join(',')
|
|
|
} else {
|
|
|
this.form.planStorageTime = ''
|
|
|
this.form.storageTime = ''
|