Browse Source

新分支

28169 1 year ago
parent
commit
17259e38e3

+ 11 - 11
src/router/modules/patient.js View File

326
     }
326
     }
327
   },
327
   },
328
 
328
 
329
-  // {//评估工具/跌倒评估
330
-  //   path: '/patients/patient/:id/Fallassessment',
331
-  //   component: () => import('@/xt_pages/user/evaluationtool/Fallassessment'),
332
-  //   hidden: true,
333
-  //   is_menu: false,
334
-  //   name: 'Fallassessment',
335
-  //   meta: {
336
-  //     title: 'firstDiseasePrint',
337
-  //     noCache: true
338
-  //   }
339
-  // },
329
+  { //评估工具/跌倒评估
330
+    path: '/patients/patient/:id/Fallassessment',
331
+    component: () => import('@/xt_pages/user/evaluationtool/Fallassessment'),
332
+    hidden: true,
333
+    is_menu: false,
334
+    name: 'Fallassessment',
335
+    meta: {
336
+      title: 'firstDiseasePrint',
337
+      noCache: true
338
+    }
339
+  },
340
   // {//小儿跌倒风险评估
340
   // {//小儿跌倒风险评估
341
   //   path: '/patients/patient/:id/pediatricFallAssessment',
341
   //   path: '/patients/patient/:id/pediatricFallAssessment',
342
   //   component: () => import('@/xt_pages/user/evaluationtool/pediatricFallAssessment'),
342
   //   component: () => import('@/xt_pages/user/evaluationtool/pediatricFallAssessment'),

+ 1 - 1
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

624
 
624
 
625
         <li v-if="isShow('冲洗量')">
625
         <li v-if="isShow('冲洗量')">
626
           <label>Ns冲洗量(ml): </label>
626
           <label>Ns冲洗量(ml): </label>
627
-          <span class="content">{{this.prescription.chaptalization}}</span>
627
+          <span class="content">{{this.prescription.warsh_count}}</span>
628
         </li>
628
         </li>
629
 
629
 
630
        
630
        

+ 2 - 2
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

1116
                 </el-row>
1116
                 </el-row>
1117
                 <el-row>
1117
                 <el-row>
1118
                   <el-col :span="8">
1118
                   <el-col :span="8">
1119
-                  <el-form-item label="Ns冲洗量(ml):" :prop="isName('冲洗量')" v-if="isShow('冲洗量') && dialysisPrescription.anticoagulant == 1">
1119
+                  <el-form-item label="Ns冲洗量(ml):" :prop="isName('冲洗量')" v-if="isShows('冲洗量') && dialysisPrescription.anticoagulant == 1">
1120
                     <el-input v-model="dialysisPrescription.warsh_count"></el-input>
1120
                     <el-input v-model="dialysisPrescription.warsh_count"></el-input>
1121
                   </el-form-item>
1121
                   </el-form-item>
1122
                 </el-col>
1122
                 </el-col>
1123
 
1123
 
1124
                 <el-col :span="8">
1124
                 <el-col :span="8">
1125
-                  <el-form-item label="q(h):" :prop="isName('冲洗时间')" v-if="isShow('冲洗时间') && dialysisPrescription.anticoagulant == 1">
1125
+                  <el-form-item label="q(h):" :prop="isName('冲洗时间')" v-if="isShows('冲洗时间') && dialysisPrescription.anticoagulant == 1">
1126
                     <el-input v-model="dialysisPrescription.washing_time"></el-input>
1126
                     <el-input v-model="dialysisPrescription.washing_time"></el-input>
1127
                   </el-form-item>
1127
                   </el-form-item>
1128
                 </el-col>
1128
                 </el-col>

+ 3 - 1
src/xt_pages/role/admin.vue View File

192
           size="small"
192
           size="small"
193
           icon="el-icon-circle-plus-outline"
193
           icon="el-icon-circle-plus-outline"
194
           style="float:left"
194
           style="float:left"
195
-          @click="toSendInformaton">生成PDF</el-button> -->
195
+          @click="toSavePDFInformation">生成PDF</el-button> -->
196
      </div>
196
      </div>
197
     
197
     
198
       
198
       
1057
     toSavePDFInformation(){
1057
     toSavePDFInformation(){
1058
       toSavePDFInformation().then(response=>{
1058
       toSavePDFInformation().then(response=>{
1059
          if(response.data.data == 1){
1059
          if(response.data.data == 1){
1060
+          var information =  response.data.data.information
1060
 
1061
 
1062
+           var orderId = response.data.data.orderId
1061
          }
1063
          }
1062
       })
1064
       })
1063
     }
1065
     }