Bläddra i källkod

修改营养诊断相关

HuRongxin 4 veckor sedan
förälder
incheckning
f7e2c38349
2 ändrade filer med 9 tillägg och 1 borttagningar
  1. 6 0
      src/api/patients/diagnosis/types.ts
  2. 3 1
      src/views/patients/nutriDiagnosis/index.vue

+ 6 - 0
src/api/patients/diagnosis/types.ts

@@ -14,6 +14,8 @@ export interface DiagnosisVO {
  */
     type: string;
 
+    deptId: string | number;
+
     /**
      * 门诊号
      */
@@ -62,6 +64,8 @@ export interface DiagnosisForm extends BaseEntity {
  */
     type?: string;
 
+    deptId?: string | number;
+
     /**
      * 门诊号
      */
@@ -116,6 +120,8 @@ export interface DiagnosisQuery extends PageQuery {
   */
     type?: string;
 
+    deptId?: string | number;
+
     /**
      * 门诊号
      */

+ 3 - 1
src/views/patients/nutriDiagnosis/index.vue

@@ -220,8 +220,10 @@
     });
 
     const initFormData: DiagnosisForm = {
-        id: undefined,
+        id: undefined,        
         labelList: [],
+        type: props.patientInfo ?.type,
+        deptId: props.patientInfo ?.deptId,
         treatmentUserId: props.patientInfo ?.id,
         consultantTemplateId: undefined,
         diagnosisLableId: undefined,