Browse Source

知情同意书时间选择问题修改

360view
bianyaqi 2 years ago
parent
commit
c7a73e079e
  1. 5
      src/page-subspecialty/views/modules/formList/mraForm.vue

5
src/page-subspecialty/views/modules/formList/mraForm.vue

@ -318,15 +318,14 @@ export default {
this.$message.error('签字未成功请重新签字后再保存') this.$message.error('签字未成功请重新签字后再保存')
return return
} }
const start = this.$moment(this.startTime).format('yyyy-MM-DD HH:mm')
const end = this.$moment(this.endTime).format('yyyy-MM-DD HH:mm')
const start = this.startTime ? this.$moment(this.startTime).format('yyyy-MM-DD HH:mm') : ''
const end = this.endTime ? this.$moment(this.endTime).format('yyyy-MM-DD HH:mm') : ''
this.formData.negativeTime = start + '~' + end this.formData.negativeTime = start + '~' + end
this.formData.jzNumber = window.sessionStorage.getItem('jzNumber') || this.$route.query.jzNumber || '' this.formData.jzNumber = window.sessionStorage.getItem('jzNumber') || this.$route.query.jzNumber || ''
this.formData.patientSign = this.formListValue.fundusDocSign this.formData.patientSign = this.formListValue.fundusDocSign
this.formData.dependantSign = this.formListValue.kinSign this.formData.dependantSign = this.formListValue.kinSign
this.formData.performerSign = this.formListValue.performerSign this.formData.performerSign = this.formListValue.performerSign
this.formData.checkerSign = this.formListValue.checkerSign this.formData.checkerSign = this.formListValue.checkerSign
console.log(this.formData)
this.$http.post('/mzbl/saveMzblYdxgzyzqtys', { this.$http.post('/mzbl/saveMzblYdxgzyzqtys', {
caseId: this.caseId, caseId: this.caseId,
...this.formData ...this.formData

Loading…
Cancel
Save