Browse Source

9月11,体重血压

yq1 6 months ago
parent
commit
303f0159c3

+ 1 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/after_Blood.vue View File

392
           start_time:this.start_date,
392
           start_time:this.start_date,
393
           end_time:this.end_date,
393
           end_time:this.end_date,
394
           status_type:value,
394
           status_type:value,
395
+          statistics_type:2,
395
           page:this.currentPage,
396
           page:this.currentPage,
396
           limit:this.limit,
397
           limit:this.limit,
397
         }
398
         }

+ 1 - 0
src/xt_pages/Dialysisanalysis/weightblood/components/before_Blood.vue View File

400
           start_time:this.start_date,
400
           start_time:this.start_date,
401
           end_time:this.end_date,
401
           end_time:this.end_date,
402
           status_type:blood,
402
           status_type:blood,
403
+          statistics_type:1,
403
           page:this.currentPage,
404
           page:this.currentPage,
404
           limit:this.limit,
405
           limit:this.limit,
405
         }
406
         }

+ 16 - 2
src/xt_pages/Dialysisanalysis/weightblood/components/blood_table.vue View File

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