门诊挂号的费用性质取值改成取值字典管理-》医疗费用支付方式代码的字典数据
将门诊医生站开立医嘱的医嘱类型字段下拉列表内容做成前台维护
This commit is contained in:
@@ -162,10 +162,10 @@
|
||||
ref="contractNameRef"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in contractList"
|
||||
:key="item.busNo"
|
||||
:label="item.contractName"
|
||||
:value="item.busNo"
|
||||
v-for="dict in medfee_paymtd_code"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@@ -648,10 +648,11 @@ const patientInfo = ref({});
|
||||
|
||||
const router = useRouter();
|
||||
const { proxy } = getCurrentInstance();
|
||||
const { sys_normal_disable, sys_user_sex, med_chrgitm_type } = proxy.useDict(
|
||||
const { sys_normal_disable, sys_user_sex, med_chrgitm_type,medfee_paymtd_code } = proxy.useDict(
|
||||
'sys_normal_disable',
|
||||
'sys_user_sex',
|
||||
'med_chrgitm_type'
|
||||
'med_chrgitm_type',
|
||||
'medfee_paymtd_code'
|
||||
);
|
||||
|
||||
const outpatientRegistrationList = ref([]);
|
||||
|
||||
Reference in New Issue
Block a user