|
@@ -3601,7 +3601,7 @@
|
|
|
time: this.report.time
|
|
|
}
|
|
|
if(this.user.timeType.type == 1) {
|
|
|
- this.workForm.domains[0].workingTime = this.user.timeType.allday+'.0'
|
|
|
+ this.workForm.domains[0].workingTime = (this.user.timeType.allday.length > 1 ? this.user.timeType.allday : this.user.timeType.allday+'.0')
|
|
|
}
|
|
|
if (this.timeBasecostList && this.timeBasecostList.length > 0) {
|
|
|
//默认给第一个,必填字段
|
|
@@ -3685,7 +3685,7 @@
|
|
|
}],
|
|
|
}
|
|
|
if(this.user.timeType.type == 1) {
|
|
|
- this.workForm.domains[0].workingTime = this.user.timeType.allday+'.0'
|
|
|
+ this.workForm.domains[0].workingTime = (this.user.timeType.allday.length > 1 ? this.user.timeType.allday : this.user.timeType.allday+'.0')
|
|
|
}
|
|
|
// console.log(this.workForm)
|
|
|
if (this.timeBasecostList&&this.timeBasecostList.length>0) {
|