fix(ui): 修复多个功能模块的验证和数据处理问题
- 在医生工作站退费功能中添加患者选择验证 - 统一药品管理中的仓库类型选择逻辑,移除重复代码 - 修复统计管理页面清空按钮的数据重置问题 - 修正西药管理页面处方打印按钮的功能绑定 - 完善库存报表查询的SQL过滤条件实现 - 更新多个控制器接口参数类型以支持业务流程 - 优化退费列表对话框的数据加载和错误处理
This commit is contained in:
@@ -61,10 +61,10 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="停供状态" prop="categoryCode">
|
||||
<el-form-item label="停供状态" prop="inventoryStatusEnum">
|
||||
<el-select
|
||||
v-model="queryParams.inventoryStatusEnum"
|
||||
placeholder="请选择药品类别"
|
||||
placeholder="请选择停供状态"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
@change="handleQuery"
|
||||
@@ -525,6 +525,7 @@ const data = reactive({
|
||||
medCategoryCodes: [],
|
||||
devCategoryCodes: [],
|
||||
backUpDate: undefined,
|
||||
inventoryStatusEnum: undefined,
|
||||
},
|
||||
rules: {},
|
||||
});
|
||||
@@ -737,8 +738,6 @@ function handleClear() {
|
||||
// 清空不在 queryParams 中的字段
|
||||
locationId.value = [];
|
||||
supplierId.value = [];
|
||||
// 清空 prop 与 v-model 不匹配的字段
|
||||
queryParams.value.inventoryStatusEnum = undefined;
|
||||
getList();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user