药品类别下拉别表内容错误,药品类别应该取值字典管理的药品分类编码

This commit is contained in:
叶锦涛
2025-10-31 16:35:47 +08:00
committed by wzk
parent 88aa1517ef
commit 6c2dbf0418
2 changed files with 4 additions and 13 deletions

View File

@@ -82,7 +82,7 @@
:class="{ 'error-border': scope.row.error }"
>
<el-option
v-for="dict in distribution_category_code"
v-for="dict in med_category_code"
:key="dict.value"
:label="dict.label"
:value="dict.value"
@@ -184,7 +184,7 @@ import {
deletePharmacyDepartment,
} from './components/pharmacyDepartment';
const { proxy } = getCurrentInstance();
const { distribution_category_code } = proxy.useDict('distribution_category_code');
const { med_category_code } = proxy.useDict('med_category_code');
import { nextTick } from 'vue';
const diagnosisTreatmentList = ref([]);