Browse Source

患者档案,诊疗档案添加受教育程度-后台

newMaster
1747191978@qq.com 3 months ago
parent
commit
e5dd28a8d5
  1. 21
      acupuncture-后台/src/views/medicalFile/index.vue
  2. 23
      acupuncture-后台/src/views/patientFile/index.vue

21
acupuncture-后台/src/views/medicalFile/index.vue

@ -516,6 +516,16 @@
</el-option>
</el-select>
</el-form-item>
<el-table-column
label="受教育程度"
align="center"
show-overflow-tooltip
min-width="100"
>
<template slot-scope="scope">
{{ educationYearsValue[scope.row.educationYears] }}
</template>
</el-table-column>
<el-form-item label="受教育年限" prop="educationYears">
<el-input
type="number"
@ -654,6 +664,17 @@ export default {
return {
tenantsListData: [],
qzUrl: process.env.VUE_APP_API_QZURL, //
//
educationYearsValue: {
0: "文盲",
6: "小学",
9: "初中",
12: "高中",
15: "大专",
16: "大学",
19: "硕士研究生",
22: "博士研究生",
},
//
ethnicityList: [
{ label: "汉族", value: "01" },

23
acupuncture-后台/src/views/patientFile/index.vue

@ -45,7 +45,7 @@
<el-option label="HIS" :value="2" />
</el-select>
</el-form-item>
<el-form-item label="建档组织" prop="tenantId">
<el-select
v-model="queryParams.param.tenantId"
@ -149,6 +149,16 @@
show-overflow-tooltip
min-width="100"
/>
<el-table-column
label="受教育程度"
align="center"
show-overflow-tooltip
min-width="100"
>
<template slot-scope="scope">
{{ educationYearsValue[scope.row.educationYears] }}
</template>
</el-table-column>
<el-table-column
label="受教育年限"
align="center"
@ -405,6 +415,17 @@ export default {
uploadFileUrl1:
process.env.VUE_APP_API_QZURL + "/acupuncture/patient/import", //
fileList: [],
//
educationYearsValue: {
0: "文盲",
6: "小学",
9: "初中",
12: "高中",
15: "大专",
16: "大学",
19: "硕士研究生",
22: "博士研究生",
},
//
medicalHistory: [
"高血压",

Loading…
Cancel
Save