diff --git a/src/views/manage/components/signingRecords.vue b/src/views/manage/components/signingRecords.vue index 3176a50..15b57c2 100644 --- a/src/views/manage/components/signingRecords.vue +++ b/src/views/manage/components/signingRecords.vue @@ -52,7 +52,6 @@ - diff --git a/src/views/manage/continueSigning/index.vue b/src/views/manage/continueSigning/index.vue index c0cb9bb..e7fba3a 100644 --- a/src/views/manage/continueSigning/index.vue +++ b/src/views/manage/continueSigning/index.vue @@ -164,8 +164,7 @@ export default { this.signPackage.serviceEndTime = this.list.serviceEndTime this.signPackage.packagePrice = this.list.packagePrice this.form.devices = this.list.signDevices - this.form.record.patientId = this.list.patientId - this.form.record.patientPhone = this.list.patientPhone + this.form.record = this.list this.list.age = this.list.birthDate ? getAge(this.list.birthDate) : '' }) }, diff --git a/src/views/manage/newSigning/index.vue b/src/views/manage/newSigning/index.vue index d22c1c4..5919bee 100644 --- a/src/views/manage/newSigning/index.vue +++ b/src/views/manage/newSigning/index.vue @@ -120,9 +120,7 @@ export default { }; }, created() { - this.form.record.patientId = this.$route.query.patientId - this.form.record.patientName = this.$route.query.patientName - this.form.record.patientPhone = this.$route.query.patientPhone + this.form.record = this.$route.query }, methods: { //签约 diff --git a/src/views/manage/signRecord/index.vue b/src/views/manage/signRecord/index.vue index 11cdce5..b743400 100644 --- a/src/views/manage/signRecord/index.vue +++ b/src/views/manage/signRecord/index.vue @@ -387,6 +387,7 @@ export default { patientId: row.patientId, signStatus: 'SEPARATE_SIGN', separateReason: value, + serviceStatus: 'SERVICE_END', } updateSignStatus(query).then(res => { this.getList();