门诊挂号的费用性质取值改成取值字典管理-》医疗费用支付方式代码的字典数据
将门诊医生站开立医嘱的医嘱类型字段下拉列表内容做成前台维护
This commit is contained in:
@@ -162,10 +162,10 @@
|
|||||||
ref="contractNameRef"
|
ref="contractNameRef"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in contractList"
|
v-for="dict in medfee_paymtd_code"
|
||||||
:key="item.busNo"
|
:key="dict.value"
|
||||||
:label="item.contractName"
|
:label="dict.label"
|
||||||
:value="item.busNo"
|
:value="dict.value"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -648,10 +648,11 @@ const patientInfo = ref({});
|
|||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { proxy } = getCurrentInstance();
|
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_normal_disable',
|
||||||
'sys_user_sex',
|
'sys_user_sex',
|
||||||
'med_chrgitm_type'
|
'med_chrgitm_type',
|
||||||
|
'medfee_paymtd_code'
|
||||||
);
|
);
|
||||||
|
|
||||||
const outpatientRegistrationList = ref([]);
|
const outpatientRegistrationList = ref([]);
|
||||||
|
|||||||
@@ -527,10 +527,10 @@
|
|||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
style="width: 100%">
|
style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in adviceTypeList"
|
v-for="dict in drord_type"
|
||||||
:key="item.value"
|
:key="dict.value"
|
||||||
:label="item.label"
|
:label="dict.label"
|
||||||
:value="item.value"
|
:value="dict.value"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
@@ -761,11 +761,12 @@ const { proxy } = getCurrentInstance();
|
|||||||
const inputRefs = ref({}); // 存储输入框实例
|
const inputRefs = ref({}); // 存储输入框实例
|
||||||
const requiredProps = ref([]); // 存储必填项 prop 顺序
|
const requiredProps = ref([]); // 存储必填项 prop 顺序
|
||||||
const totalAmount = ref(0);
|
const totalAmount = ref(0);
|
||||||
const { method_code, unit_code, rate_code, distribution_category_code } = proxy.useDict(
|
const { method_code, unit_code, rate_code, distribution_category_code,drord_type } = proxy.useDict(
|
||||||
'method_code',
|
'method_code',
|
||||||
'unit_code',
|
'unit_code',
|
||||||
'rate_code',
|
'rate_code',
|
||||||
'distribution_category_code'
|
'distribution_category_code',
|
||||||
|
'drord_type'
|
||||||
);
|
);
|
||||||
|
|
||||||
const adviceTypeList = ref([
|
const adviceTypeList = ref([
|
||||||
|
|||||||
Reference in New Issue
Block a user