This commit is contained in:
2024-03-05 15:44:20 +08:00
parent 065181b174
commit 01ef8368dc
4 changed files with 3 additions and 6 deletions

View File

@ -52,7 +52,6 @@
</el-descriptions> </el-descriptions>
<el-descriptions title="其他材料" style="margin-top: 20px;" class="descriptions"> <el-descriptions title="其他材料" style="margin-top: 20px;" class="descriptions">
<el-descriptions-item> <el-descriptions-item>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
</div> </div>

View File

@ -164,8 +164,7 @@ export default {
this.signPackage.serviceEndTime = this.list.serviceEndTime this.signPackage.serviceEndTime = this.list.serviceEndTime
this.signPackage.packagePrice = this.list.packagePrice this.signPackage.packagePrice = this.list.packagePrice
this.form.devices = this.list.signDevices this.form.devices = this.list.signDevices
this.form.record.patientId = this.list.patientId this.form.record = this.list
this.form.record.patientPhone = this.list.patientPhone
this.list.age = this.list.birthDate ? getAge(this.list.birthDate) : '' this.list.age = this.list.birthDate ? getAge(this.list.birthDate) : ''
}) })
}, },

View File

@ -120,9 +120,7 @@ export default {
}; };
}, },
created() { created() {
this.form.record.patientId = this.$route.query.patientId this.form.record = this.$route.query
this.form.record.patientName = this.$route.query.patientName
this.form.record.patientPhone = this.$route.query.patientPhone
}, },
methods: { methods: {
// //

View File

@ -387,6 +387,7 @@ export default {
patientId: row.patientId, patientId: row.patientId,
signStatus: 'SEPARATE_SIGN', signStatus: 'SEPARATE_SIGN',
separateReason: value, separateReason: value,
serviceStatus: 'SERVICE_END',
} }
updateSignStatus(query).then(res => { updateSignStatus(query).then(res => {
this.getList(); this.getList();