Browse Source

9月20,质控

yq1 6 months ago
parent
commit
0383f7d7c3

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

296
               xAxis.push(list[i].name)
296
               xAxis.push(list[i].name)
297
               yAxis.push(list[i].total)
297
               yAxis.push(list[i].total)
298
                const obj ={
298
                const obj ={
299
-                value:i+1,
299
+                value:(i*1)+1,
300
                 label:list[i].name
300
                 label:list[i].name
301
               }
301
               }
302
               weight.push(obj)
302
               weight.push(obj)

+ 9 - 9
src/xt_pages/Dialysisanalysis/weightblood/components/dry_weight.vue View File

201
         limit:50,
201
         limit:50,
202
         total:0,
202
         total:0,
203
         tableData:[],
203
         tableData:[],
204
-        status_options:[],
204
+        // status_options:[],
205
         nurseList:[],
205
         nurseList:[],
206
         operators:[],
206
         operators:[],
207
         docList:[],
207
         docList:[],
208
-        // status_options:[{value:1,label:'40~50kg'},{value:2,label:'50~60kg'},{value:3,label:'60~70kg'},
209
-        //                 {value:4,label:'大于70kg'},{value:5,label:'小于40kg'},{value:6,label:'未知'}],
208
+        status_options:[{value:1,label:'40~50kg'},{value:2,label:'50~60kg'},{value:3,label:'60~70kg'},
209
+                        {value:4,label:'大于70kg'},{value:5,label:'小于40kg'},{value:6,label:'未知'}],
210
 
210
 
211
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
211
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
212
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
212
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
252
               total = total + list[key].total
252
               total = total + list[key].total
253
               xAxis.push(obj)
253
               xAxis.push(obj)
254
               yAxis.push(list[key].name)
254
               yAxis.push(list[key].name)
255
-              const objs = {
256
-                value:(key*1)+1,
257
-                label:list[key].name
258
-              }
259
-              option.push(objs)
255
+              // const objs = {
256
+              //   value:(key*1)+1,
257
+              //   label:list[key].name
258
+              // }
259
+              // option.push(objs)
260
             }
260
             }
261
-            this.status_options = option
261
+            // this.status_options = option
262
             const status = []
262
             const status = []
263
             console.log('this.status_options',response.data.data);
263
             console.log('this.status_options',response.data.data);
264
             const option = {
264
             const option = {

+ 8 - 6
src/xt_pages/Dialysisanalysis/weightblood/components/list_denominator.vue View File

284
           statistics_type:2,
284
           statistics_type:2,
285
         }
285
         }
286
         Getpatinetweight(params).then(response =>{
286
         Getpatinetweight(params).then(response =>{
287
-          console.log('ressponse',response.data.data);
288
           if(response.data.state ==1){
287
           if(response.data.state ==1){
289
-            console.log('bbbbbbbbb',response.data.data);
290
             const list = response.data.data.list
288
             const list = response.data.data.list
291
             const xAxis =[]
289
             const xAxis =[]
292
             const yAxis = []
290
             const yAxis = []
295
               xAxis.push(list[i].name)
293
               xAxis.push(list[i].name)
296
               yAxis.push(list[i].total)
294
               yAxis.push(list[i].total)
297
                const obj ={
295
                const obj ={
298
-                value:i+1,
296
+                value:(i*1)+1,
299
                 label:list[i].name
297
                 label:list[i].name
300
               }
298
               }
301
               weight.push(obj)
299
               weight.push(obj)
302
             }
300
             }
303
             this.weight_gain = weight
301
             this.weight_gain = weight
304
             this.bar_xAxis = xAxis
302
             this.bar_xAxis = xAxis
305
-
303
+            console.log('ressponse',xAxis,yAxis);
306
             const option = {
304
             const option = {
307
               xAxis: {
305
               xAxis: {
308
                 type: 'category',
306
                 type: 'category',
353
             myChart.setOption(option);
351
             myChart.setOption(option);
354
             myChart.on('click',params =>{
352
             myChart.on('click',params =>{
355
               this.dialyze_dialog = true
353
               this.dialyze_dialog = true
356
-              console.log('vvvvv',params);
354
+              console.log('vvvvv',params,this.weight_gain);
355
+              // var weightvalue = 0
357
               for(let i in this.weight_gain){
356
               for(let i in this.weight_gain){
358
-                if(params.name = this.weight_gain[i].label){
357
+                if(params.name == this.weight_gain[i].label){
359
                   this.weight_value = this.weight_gain[i].value
358
                   this.weight_value = this.weight_gain[i].value
359
+                  
360
                 }
360
                 }
361
               }
361
               }
362
+              // this.Getdialyzerdetail(params.name)              
363
+              // console.log('this.weight_value',this.weight_value);
362
               this.Getdialyzerdetail(this.weight_value)
364
               this.Getdialyzerdetail(this.weight_value)
363
             })
365
             })
364
           }
366
           }