ソースを参照

9月11,体重血压

yq1 1 週間 前
コミット
303f0159c3

+ 1 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/after_Blood.vue ファイルの表示

@@ -392,6 +392,7 @@ import html2canvas from "html2canvas"
392 392
           start_time:this.start_date,
393 393
           end_time:this.end_date,
394 394
           status_type:value,
395
+          statistics_type:2,
395 396
           page:this.currentPage,
396 397
           limit:this.limit,
397 398
         }

+ 1 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/before_Blood.vue ファイルの表示

@@ -400,6 +400,7 @@ import html2canvas from "html2canvas"
400 400
           start_time:this.start_date,
401 401
           end_time:this.end_date,
402 402
           status_type:blood,
403
+          statistics_type:1,
403 404
           page:this.currentPage,
404 405
           limit:this.limit,
405 406
         }

+ 16 - 2
src/xt_pages/Dialysisanalysis/weightblood/components/blood_table.vue ファイルの表示

@@ -11,7 +11,7 @@
11 11
     <div class="app-container">
12 12
       <div class="page_patientControlAnalysis">
13 13
         <div style="display: flex;margin-bottom: 20px;">
14
-          <div style="flex: 2;display: flex;flex-wrap:wrap">
14
+          <div style="flex: 3;display: flex;flex-wrap:wrap">
15 15
             <div>
16 16
               日期:
17 17
               <el-select v-model="date_value" @change="datachange" placeholder="请选择" style="width: 100px;">
@@ -52,6 +52,18 @@
52 52
                 </el-option>
53 53
               </el-select>
54 54
             </div>
55
+            <div>
56
+              患者状态:
57
+              <el-select v-model="blood_value" placeholder="请选择" style="width: 100px;">
58
+                <el-option :key="0" label="不限" :value="0"></el-option>
59
+                <el-option
60
+                  v-for="item in blood_options"
61
+                  :key="item.value"
62
+                  :label="item.label"
63
+                  :value="item.value">
64
+                </el-option>
65
+              </el-select>
66
+            </div>
55 67
 
56 68
           </div>
57 69
           <div style="flex: 1;">
@@ -174,11 +186,12 @@ import html2canvas from "html2canvas"
174 186
         total:0,
175 187
         tableData:[],
176 188
         status_value:1,
189
+        blood_value:0,
177 190
         status_options:[{value:1,label:'达标'},{value:2,label:'不达标'}],
178 191
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
179 192
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
180 193
         ],
181
-
194
+        blood_options:[{value:1,label:'透前血压'},{value:2,label:'透后血压'}],
182 195
         date_mode_options:[{value:1,label:'按周'},{value:2,label:'按天'},{value:3,label:'按月'},{value:4,label:'按年'}],
183 196
         source_options:[{value:1,label:'以开始透析为准'},{value:2,label:'以排班为准'}],
184 197
 
@@ -289,6 +302,7 @@ import html2canvas from "html2canvas"
289 302
       Getdialyzerdetail(value){
290 303
         const params={
291 304
           status_type:value,
305
+          statistics_type:this.blood_value,
292 306
           start_time:this.start_date,
293 307
           end_time:this.end_date,
294 308
           page:this.currentPage,