|
@@ -467,12 +467,12 @@ export default {
|
|
|
name: this.name,
|
|
|
bankAccount: this.bankAccount,
|
|
|
idCard: this.idcard,
|
|
|
- idCardStartTime: this.idCardStateTime + ' 00:00:00',
|
|
|
- idCardEndTime: this.idCardEndTime + ' 23:59:59',
|
|
|
+ idCardStartTime: this.idCardStateTime ? this.idCardStateTime + ' 00:00:00' : '',
|
|
|
+ idCardEndTime: this.idCardEndTime ? this.idCardEndTime + ' 23:59:59' : '',
|
|
|
number: this.altitudeDocumentNumber,
|
|
|
- hightExamineTime: this.reexamineTime + ' 23:59:59',
|
|
|
- startTime: this.altitudeDocumentStateTime + ' 00:00:00',
|
|
|
- endTime: this.altitudeDocumentEndTime + ' 23:59:59',
|
|
|
+ hightExamineTime: this.reexamineTime ? this.reexamineTime + ' 23:59:59' : '',
|
|
|
+ startTime: this.altitudeDocumentStateTime ? this.altitudeDocumentStateTime + ' 00:00:00' : '',
|
|
|
+ endTime: this.altitudeDocumentEndTime ? this.altitudeDocumentEndTime + ' 23:59:59' : '',
|
|
|
type: 'WORKER',
|
|
|
websitId: this.websitId,
|
|
|
isBuy: this.isBuy,
|
|
@@ -535,8 +535,8 @@ export default {
|
|
|
company: this.insurancePolicyName,
|
|
|
policyName: this.insuranceName,
|
|
|
policyOrder: this.insuranceNumber,
|
|
|
- startTime: this.insuranceStateTime + ' 00:00:00',
|
|
|
- endTime: this.insuranceEndTime + ' 23:59:59',
|
|
|
+ startTime: this.insuranceStateTime ? this.insuranceStateTime + ' 00:00:00' : '',
|
|
|
+ endTime: this.insuranceEndTime ? this.insuranceEndTime + ' 23:59:59' : '',
|
|
|
policyType: 'AC',
|
|
|
policyPrice: 0,
|
|
|
policyUrl: this.imageList.map(item => item.urls).join(',')
|