Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 4 months ago
parent
commit
8a91e476e8

+ 12 - 10
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/complete.vue View File

@@ -223,11 +223,11 @@ import html2canvas from "html2canvas"
223 223
         limit:50,
224 224
         total:0,
225 225
         tableData:[],
226
-        status_options:[],
226
+        // status_options:[],
227 227
         nurseList:[],
228 228
         operators:[],
229 229
         docList:[],
230
-        // status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'超出处方时间'},{value:3,label:'未到处方时间'}],
230
+        status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'未到处方时间'}],
231 231
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
232 232
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
233 233
         ],
@@ -272,14 +272,14 @@ import html2canvas from "html2canvas"
272 272
               yAxis.push(key)
273 273
             }
274 274
             const status = []
275
-            for(let i in yAxis){
276
-              const obj ={
277
-                value:(i*1)+1,
278
-                label:yAxis[i]
279
-              }
280
-              status.push(obj)
281
-            }
282
-            this.status_options = status
275
+            // for(let i in yAxis){
276
+            //   const obj ={
277
+            //     value:(i*1)+1,
278
+            //     label:yAxis[i]
279
+            //   }
280
+            //   status.push(obj)
281
+            // }
282
+            // this.status_options = status
283 283
             console.log('this.status_options',this.status_options);
284 284
             const option = {
285 285
                 title:{
@@ -347,6 +347,8 @@ import html2canvas from "html2canvas"
347 347
                   status_id = this.status_options[i].value
348 348
                 }
349 349
               }
350
+              console.log('111111',status_id);
351
+              
350 352
               this.status_value = status_id
351 353
               this.getdetail(status_id)
352 354
             })