fix bug434:门诊手术安排:编辑弹窗中“切口类型”字段未正确回显数据

bug426:门诊医生站-检查开立:已选择列表应支持树形展开,显示套餐明细
bug439:领用出库:选择领用药品后“总库存数量”列数据未显示
bug457:门诊收费:已签发的手术类医嘱在门诊收费列表中不显示项目名称
This commit is contained in:
2026-05-14 11:48:22 +08:00
parent 3ad9ff85d4
commit 0d6f891b47
13 changed files with 689 additions and 247 deletions

View File

@@ -966,7 +966,7 @@ const form = reactive({
allergyRemark: undefined,
surgeryNature: undefined,
surgerySite: undefined,
incisionLevel: undefined,
incisionType: undefined,
surgeryLevel: undefined,
admissionTime: undefined,
@@ -2050,7 +2050,12 @@ function resetForm() {
function submitForm() {
proxy.$refs['surgeryRef'].validate((valid) => {
if (valid) {
const submitData = { ...form, orgId: userStore.orgId }
const submitData = {
...form,
orgId: userStore.orgId,
incisionLevel: form.incisionType
}
delete submitData.incisionType
if (!form.scheduleId) {
// 新增手术安排
addSurgerySchedule(submitData).then((res) => {