feat(prescription): 更新处方列表数据结构并优化药品管理界面功能

- 在处方列表中新增总价、剂量和剂量数量字段
- 修复药品审批页面跳转时仓库信息丢失问题
- 扩展药品列表列宽度并启用溢出提示功能
- 为采购单界面添加多种视图状态下的字段禁用逻辑
- 优化采购单仓库位置字段的初始化流程,防止数据丢失
This commit is contained in:
2026-03-26 16:54:20 +08:00
parent f04c3d112c
commit 71e3601d51
4 changed files with 35 additions and 16 deletions

View File

@@ -2144,7 +2144,10 @@ function handleDelete() {
adviceType: item.adviceType,
statusEnum: item.statusEnum,
adviceName: item.adviceName,
uniqueKey: item.uniqueKey
uniqueKey: item.uniqueKey,
totalPrice: item.totalPrice,
dose: item.dose,
doseQuantity: item.doseQuantity
})));
for (let i = prescriptionList.value.length - 1; i >= 0; i--) {