yq1 преди 6 месеца
родител
ревизия
0383f7d7c3

+ 1 - 1
src/xt_pages/Dialysisanalysis/weightblood/components/dry_denominator.vue Целия файл

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

+ 9 - 9
src/xt_pages/Dialysisanalysis/weightblood/components/dry_weight.vue Целия файл

@@ -201,12 +201,12 @@ import html2canvas from "html2canvas"
201 201
         limit:50,
202 202
         total:0,
203 203
         tableData:[],
204
-        status_options:[],
204
+        // status_options:[],
205 205
         nurseList:[],
206 206
         operators:[],
207 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 211
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
212 212
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
@@ -252,13 +252,13 @@ import html2canvas from "html2canvas"
252 252
               total = total + list[key].total
253 253
               xAxis.push(obj)
254 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 262
             const status = []
263 263
             console.log('this.status_options',response.data.data);
264 264
             const option = {

+ 8 - 6
src/xt_pages/Dialysisanalysis/weightblood/components/list_denominator.vue Целия файл

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