@@ -20,3 +20,8 @@ VUE_APP_COURSE_DEFAULT = 1
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
+
+# 患者信息
+VUE_APP_PATIENT_INFO = '客户信息'
+# 添加病人
+VUE_APP_ADD_PATIENT = '添加信息'
@@ -21,3 +21,8 @@ VUE_APP_COURSE_DEFAULT = 1
@@ -173,7 +173,12 @@
<el-descriptions-item label="问诊备注"><span v-if="reportItem!=null">{{reportItem.companyUserRemark}}</span></el-descriptions-item>
</el-descriptions>
<div class="desct">
- 患者信息
+ <span v-if="patientInfo">
+ {{ patientInfo }}
+ </span>
+ <span v-else>
+ 患者信息
</div>
<el-descriptions :column="3" border >
<el-descriptions-item label="患者姓名" ><span v-if="reportItem.patientJson!=null">{{JSON.parse(reportItem.patientJson).patientName}}</span></el-descriptions-item>
@@ -262,6 +267,7 @@ import {getPrescribe,getDrugInfo} from "@/api/store/prescribe";
name: "FollowMsgList",
data() {
return {
+ patientInfo: process.env.VUE_APP_PATIENT_INFO,
usageJson:{},
prescribeItem:{},
statusDrugReportOptions:[],
@@ -27,7 +27,14 @@
<div class="contentx" v-if="item!=null">
- <div class="desct" > 患者信息</div>
+ <div class="desct" >
+ </div>
<el-descriptions title="" :column="3" border>
<el-descriptions-item label="患者姓名" ><span v-if="item!=null">{{JSON.parse(item.patientJson).patientName}}</span></el-descriptions-item>
<el-descriptions-item label="患者年龄" ><span v-if="item!=null">{{JSON.parse(item.patientJson).age}}</span></el-descriptions-item>
@@ -88,6 +95,7 @@ import { listBySearch,listInquiryOrderReport, getInquiryOrderReport, delInquiryO
props:["data"],
diseaseParams:{
diseaseId:null,
diseaseName:null
@@ -263,6 +268,7 @@ import {getPrescribe,getDrugInfo} from "@/api/store/prescribe";
name: "MsgList",
@@ -101,7 +101,12 @@
<userPatietDetails ref="userPatietDetail" />
@@ -145,6 +150,7 @@ import userAddDetails from "../components/userAddDetails.vue";
components: { userStorerDetails ,userInquiryOrderDetails,userPatietDetails,userAddDetails},
addr:[],
patient:[],
userOptions: [],
@@ -176,6 +176,7 @@ export default {
name: "Patient",
+ addPatientInfo: process.env.VUE_APP_ADD_PATIENT,
orOptions:[],
show:{
title:"患者详情",
@@ -346,7 +347,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
- this.title = "添加病人";
+ this.title = this.addPatientInfo||"添加病人";
},
/** 修改按钮操作 */
handleUpdate(row) {