Kaynağa Gözat

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 5 ay önce
ebeveyn
işleme
87b3f97361

+ 2 - 2
src/views/layout/components/Navbar.vue Dosyayı Görüntüle

@@ -129,7 +129,7 @@
129 129
         <!-- <i class="el-icon-question"></i>
130 130
         <a href="https://sso.kuyicloud.com/help" target="_blank">帮助中心</a> -->
131 131
        <div class="fixedBox">
132
-         <div class="fixed-item" @mouseover="mouseOver" @mouseleave="leave">
132
+         <div class="fixed-item" @mouseover="mouseOver" @mouseleave="leave" v-if="org_id!=0 && org_id!=10635">
133 133
           <i class="el-icon-chat-line-round"></i>
134 134
            <div class="fixed-text">联系客户经理</div>
135 135
             <div class="fixed-wrap" v-show="wrap1">
@@ -143,7 +143,7 @@
143 143
              </div>
144 144
             </div>
145 145
           </div>
146
-          <div class="fixed-item" @mouseover="mouseOver1" @mouseleave="leave1">
146
+          <div class="fixed-item" @mouseover="mouseOver1" @mouseleave="leave1" v-if="org_id!=0 && org_id!=10635">
147 147
            <i class="el-icon-full-screen"></i>
148 148
             <div class="fixed-text">微信联系</div>
149 149
             <div class="fixed-wrap" v-show="wrap2">

+ 53 - 8
src/xt_pages/Pharmacy/DrugDispensing.vue Dosyayı Görüntüle

@@ -261,7 +261,7 @@
261 261
             </el-table-column>
262 262
             <el-table-column label="药品追溯码" width="162" align="center">
263 263
               <template slot-scope="scope">
264
-                 <el-input style="width: 100;" v-model="scope.row.DrugCode" @input="changeDrugCode(scope.row.ID,scope.row.data_sources,scope.row.DrugCode)"></el-input>
264
+                <div @click="getDrugCode(scope.row.ID,scope.row.data_sources,scope.row.DrugCode,scope.$index)"><el-input style="width: 100;" v-model="scope.row.DrugCode"></el-input></div> 
265 265
               </template>
266 266
             </el-table-column>
267 267
             <el-table-column
@@ -428,6 +428,26 @@
428 428
           <el-button type="primary" @click="SaveSetting">保 存</el-button>
429 429
         </span>
430 430
       </el-dialog>
431
+
432
+      <el-dialog
433
+        title="药品追溯码"
434
+        :visible.sync="dialogVisibleOne"
435
+         width="40%">
436
+       <span>
437
+        <el-input
438
+          @input="changeText"
439
+          type="textarea"
440
+          placeholder="请输入内容"
441
+          v-model="textarea"
442
+          :rows="10"
443
+        >
444
+        </el-input>
445
+      </span>
446
+      <span slot="footer" class="dialog-footer">
447
+        <el-button @click="dialogVisibleOne = false">取 消</el-button>
448
+        <el-button type="primary" @click="saveTextArea()">确 定</el-button>
449
+      </span>
450
+      </el-dialog>
431 451
     </div>
432 452
 
433 453
     <drug-print
@@ -508,32 +528,57 @@ export default {
508 528
       deliveryway: "全部", //给药途径
509 529
       total: "", //合计
510 530
       select_total: "",
531
+      dialogVisibleOne:false,
532
+      textarea:"",
533
+      id:0,
534
+      is_source:0,
535
+      drug_code:0,
536
+      currentRow:{},
537
+      currentIndex:0,
511 538
     };
512 539
   },
513 540
 
514 541
   methods: {
515
-    changeDrugCode(id,DataSources,drug_code){
516
-       var is_source =0
542
+    getDrugCode(id,DataSources,DrugCode,index){
543
+      this.id = id 
544
+      var is_source =0
517 545
        if (DataSources == "his处方"){
518 546
         is_source = 1
519 547
        }
520 548
        if (DataSources == "临时医嘱"){
521 549
          is_source = 2
522 550
        }
551
+       this.is_source = is_source
552
+       this.textarea = DrugCode
553
+       this.currentIndex = index
554
+       this.dialogVisibleOne = true
555
+
556
+    },
557
+    saveTextArea(){
558
+      
523 559
        var params = {
524
-        id:id,
525
-        data_source:is_source,
526
-        drug_code:drug_code,
560
+        id:this.id,
561
+        data_source:this.is_source,
562
+        drug_code:this.textarea,
527 563
        }
528 564
        console.log("paramss",params)
529 565
       
530 566
       changeDrugCode(params).then(response=>{
531 567
          if(response.data.state == 1){
532 568
             this.$message.success("保存成功!")
569
+            for(let i=0;i<this.tableData.length;i++){
570
+             if(this.currentIndex == i){
571
+                this.tableData[i].DrugCode = this.textarea
572
+             }
573
+            }
574
+            this.dialogVisibleOne = false
533 575
          }
534 576
       })
535
-    
536
-
577
+    },
578
+    changeText(){
579
+      var textarea = ""
580
+      textarea += this.textarea + ","
581
+      this.textarea = textarea
537 582
     },
538 583
     tt() {},
539 584
     async fun3() {

+ 54 - 8
src/xt_pages/Pharmacy/PatientDispensing.vue Dosyayı Görüntüle

@@ -228,7 +228,7 @@
228 228
             </el-table-column>
229 229
             <el-table-column label="药品追溯码" width="162" align="center">
230 230
               <template slot-scope="scope">
231
-                 <el-input style="width: 100;" v-model="scope.row.DrugCode" @input="changeDrugCode(scope.row.ID,scope.row.DataSources,scope.row.DrugCode)"></el-input>
231
+                <div @click="getDrugCode(scope.row.ID,scope.row.DataSources,scope.row.DrugCode,scope.$index)"><el-input style="width: 100;" v-model="scope.row.DrugCode"></el-input></div> 
232 232
               </template>
233 233
             </el-table-column>
234 234
             <el-table-column label="开立医生" width="150" align="center">
@@ -281,6 +281,26 @@
281 281
           <el-button type="primary" @click="SaveSetting">保 存</el-button>
282 282
         </span>
283 283
       </el-dialog>
284
+
285
+      <el-dialog
286
+        title="药品追溯码"
287
+        :visible.sync="dialogVisibleOne"
288
+         width="40%">
289
+       <span>
290
+        <el-input
291
+          @input="changeText"
292
+          type="textarea"
293
+          placeholder="请输入内容"
294
+          v-model="textarea"
295
+          :rows="10"
296
+        >
297
+        </el-input>
298
+      </span>
299
+      <span slot="footer" class="dialog-footer">
300
+        <el-button @click="dialogVisibleOne = false">取 消</el-button>
301
+        <el-button type="primary" @click="saveTextArea()">确 定</el-button>
302
+      </span>
303
+      </el-dialog>
284 304
     </div>
285 305
 
286 306
     <patient-print
@@ -361,6 +381,14 @@ export default {
361 381
       doctors:[],
362 382
       diagnosearr:[],
363 383
       diagnosis:'',
384
+      dialogVisibleOne:false,
385
+      textarea:"",
386
+      id:0,
387
+      is_source:0,
388
+      drug_code:0,
389
+      currentRow:{},
390
+      currentIndex:0,
391
+
364 392
     };
365 393
   },
366 394
   watch: {},
@@ -743,6 +771,7 @@ export default {
743 771
         if (response.data.state == 1) {
744 772
           var config = response.data.data.config;
745 773
           this.$message.success("保存成功!");
774
+         
746 775
           this.dialogVisible = false;
747 776
         }
748 777
       });
@@ -802,27 +831,44 @@ export default {
802 831
        }
803 832
        return spc
804 833
     },
805
-    changeDrugCode(id,DataSources,drug_code){
806
-       var is_source =0
834
+    getDrugCode(id,DataSources,DrugCode,index){
835
+      this.id = id 
836
+      var is_source =0
807 837
        if (DataSources == "his处方"){
808 838
         is_source = 1
809 839
        }
810 840
        if (DataSources == "临时医嘱"){
811 841
          is_source = 2
812 842
        }
843
+       this.is_source = is_source
844
+       this.textarea = DrugCode
845
+       this.currentIndex = index
846
+       this.dialogVisibleOne = true
847
+
848
+    },
849
+    saveTextArea(){
813 850
        var params = {
814
-        id:id,
815
-        data_source:is_source,
816
-        drug_code:drug_code,
851
+        id:this.id,
852
+        data_source:this.is_source,
853
+        drug_code:this.textarea,
817 854
        }
818 855
        console.log("paramss",params)
819 856
       changeDrugCode(params).then(response=>{
820 857
          if(response.data.state == 1){
821 858
             this.$message.success("保存成功!")
859
+            for(let i=0;i<this.tableData.length;i++){
860
+             if(this.currentIndex == i){
861
+                this.tableData[i].DrugCode = this.textarea
862
+             }
863
+            }
864
+            this.dialogVisibleOne = false
822 865
          }
823 866
       })
824
-    
825
-
867
+    },
868
+    changeText(){
869
+      var textarea = ""
870
+      textarea += this.textarea + ","
871
+      this.textarea = textarea
826 872
     }
827 873
   },
828 874
 };

+ 7 - 5
src/xt_pages/dialysis/details/consumable/dialysisGather.vue Dosyayı Görüntüle

@@ -218,11 +218,7 @@
218 218
              </template>
219 219
           </el-table-column>
220 220
 
221
-          <el-table-column align="center" label="封管液" v-if="gatherSetting.tube==1">
222
-             <template slot-scope="scope">
223
-               <span v-if="getBloodAccessOption(scope.row.dialysis_prescription.blood_access).indexOf('导管')!==-1">1</span>
224
-             </template>
225
-          </el-table-column>
221
+         
226 222
           
227 223
   
228 224
           <el-table-column align="center" label="钾"  v-if="gatherSetting.kalium==1">
@@ -253,6 +249,12 @@
253 249
              </template>
254 250
           </el-table-column>
255 251
 
252
+          <el-table-column align="center" label="封管液" v-if="gatherSetting.tube==1">
253
+             <template slot-scope="scope">
254
+               <span v-if="getBloodAccessOption(scope.row.dialysis_prescription.blood_access).indexOf('导管')!==-1">1</span>
255
+             </template>
256
+          </el-table-column>
257
+
256 258
           <el-table-column align="center" label="尿激酶" v-if="gatherSetting.niaojimei == 1">
257 259
              <template slot-scope="scope">
258 260
                <span v-if="scope.row.schedule_date <= timenow">{{ scope.row.advice_spc_two }}</span>

+ 9 - 8
src/xt_pages/dialysis/details/consumable/dialysisGatherPrint.vue Dosyayı Görüntüle

@@ -26,7 +26,7 @@
26 26
                 <thead>
27 27
                 <tr>
28 28
                   <td width="60" v-if="gatherSetting.index_number == 1">序号</td>
29
-                  <td width="200" v-if="org_id == 0 || org_id ==10683">备注</td>
29
+                 
30 30
                   <td width="100"  v-if="gatherSetting.name==1">姓名</td>
31 31
                   <td width="100"  v-if="gatherSetting.dialysis_no==1">透析号</td>
32 32
                   <td width="100"  v-if="gatherSetting.admission_number==1">住院(门诊)号</td>
@@ -36,22 +36,22 @@
36 36
                   <td width="100"  v-if="gatherSetting.dialysis_strainer ==1">滤过器</td>
37 37
                   <td width="100"  v-if="gatherSetting.change_nurse ==1">换药包/穿刺针</td>
38 38
                   <td width="100"  v-if="gatherSetting.puncture_needle ==1">穿刺针</td>
39
-                  <td width="100" v-if="gatherSetting.anticoagulant==1">抗凝剂(首剂)(维持)(总量)</td>
40
-                  <td width="200" v-if="gatherSetting.tube==1">封管液</td>
39
+                  <td width="600" v-if="gatherSetting.anticoagulant==1">抗凝剂(首剂)(维持)(总量)</td>
40
+                
41 41
                   <td width="100" v-if="gatherSetting.kalium==1">钾</td>
42 42
                   <td width="100"  v-if="gatherSetting.calcium==1">钙</td>
43 43
                   <td width="100" v-if="gatherSetting.cuhong == 1">促红素</td>
44 44
                   <td width="100"  v-if="gatherSetting.zuoka == 1">左卡</td>
45 45
                   <td width="100" v-if="gatherSetting.niaojimei == 1">尿激酶</td>
46 46
                   <td width="100" v-if="gatherSetting.putaosuangai == 1">葡萄糖酸钙</td>
47
-
47
+                  <td width="200" v-if="gatherSetting.tube==1">封管液</td>
48 48
                   <td width="100" v-if="org_id == 0 || org_id ==10683">肝素钠</td>
49 49
                  
50 50
                 </tr>
51 51
                 </thead>
52 52
                 <tbody>
53 53
                  <tr v-for="(item,i) in list" :key="i">
54
-                  <td width="100" v-if="org_id == 0 || org_id ==10683"> </td>
54
+                
55 55
                    <td width="60" v-if="gatherSetting.index_number == 1">{{ i+1 }}</td>
56 56
                   <td width="100"  v-if="gatherSetting.name==1">
57 57
                     {{item.patient.name}}
@@ -164,9 +164,7 @@
164 164
                       <span v-if="item.dialysis_solution.anticoagulant_zongliang > 0">({{item.dialysis_solution.anticoagulant_zongliang}})</span>
165 165
                     </span>
166 166
                  </td>
167
-                  <td width="200" v-if="gatherSetting.tube==1">
168
-                    <span v-if="getBloodAccessOption(item.dialysis_prescription.blood_access).indexOf('导管')!==-1">1</span>
169
-                  </td>
167
+                  
170 168
                   <td width="100" v-if="gatherSetting.kalium==1">
171 169
                     <span v-if="item.dialysis_prescription.kalium>0">{{item.dialysis_prescription.kalium}}</span>
172 170
                  </td>
@@ -189,6 +187,9 @@
189 187
                     <span v-if="item.schedule_date<=timenow">  {{ item.advice_spc_three }}</span>
190 188
                     <span v-if="item.schedule_date>timenow">{{ getLongAdviceThree(item.long_doctor_advice,item.schedule_date) }}</span>
191 189
                  </td>
190
+                 <td width="200" v-if="gatherSetting.tube==1">
191
+                    <span v-if="getBloodAccessOption(item.dialysis_prescription.blood_access).indexOf('导管')!==-1">1</span>
192
+                  </td>
192 193
                  <td width="100" v-if="org_id == 0 || org_id ==10683">
193 194
                   <span v-if="item.schedule_date<=timenow">  {{ item.advice_spc_four }}</span>
194 195
                   <span v-if="item.schedule_date>timenow">{{ getLongAdviceFour(item.long_doctor_advice,item.schedule_date) }}</span>

+ 131 - 7
src/xt_pages/dialysis/details/consumable/dialysisParameter.vue Dosyayı Görüntüle

@@ -273,43 +273,43 @@
273 273
            </template>
274 274
         </el-table-column>
275 275
 
276
-        <el-table-column align="center" label="封管液" v-if="dialysisSett.blood_access==1 && org_id!=10629">
276
+        <el-table-column align="center" label="封管液" v-if="dialysisSett.sealing_fluid_dispose==1">
277 277
            <template slot-scope="scope">
278 278
              <span v-if="getBloodAccessOption(scope.row.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
279 279
            </template>
280 280
         </el-table-column>
281 281
 
282
-        <el-table-column align="center" label="促红" v-if="org_id!=10599 && org_id!=10629">
282
+        <el-table-column align="center" label="促红" v-if="dialysisSett.cuhong_set == 1">
283 283
            <template slot-scope="scope">
284 284
               {{ scope.row.advice_spc }}
285 285
            </template>
286 286
         </el-table-column>
287 287
 
288
-        <el-table-column align="center" label="左卡" v-if="org_id!=10599 && org_id!=10629">
288
+        <el-table-column align="center" label="左卡" v-if="dialysisSett.zuoka_set == 1">
289 289
            <template slot-scope="scope">
290 290
               {{ scope.row.advice_spc_one }}
291 291
            </template>
292 292
         </el-table-column>
293 293
 
294
-        <el-table-column align="center" label="低分子" v-if="org_id!=10599 && org_id!=10629">
294
+        <el-table-column align="center" label="低分子" v-if="dialysisSett.difenzi_set == 1">
295 295
            <template slot-scope="scope">
296 296
               {{ scope.row.advice_spc_two }}
297 297
            </template>
298 298
         </el-table-column>
299 299
 
300
-        <el-table-column align="center" label="肝素钠" v-if="org_id!=10599 && org_id!=10629">
300
+        <el-table-column align="center" label="肝素钠" v-if="dialysisSett.gansuna_set == 1">
301 301
            <template slot-scope="scope">
302 302
               {{ scope.row.advice_spc_three }}
303 303
            </template>
304 304
         </el-table-column>
305 305
 
306
-        <el-table-column align="center" label="蔗糖铁" v-if="org_id!=10599 && org_id!=10629">
306
+        <el-table-column align="center" label="蔗糖铁" v-if="dialysisSett.zhetangtie == 1">
307 307
            <template slot-scope="scope">
308 308
               {{ scope.row.advice_spc_four }}
309 309
            </template>
310 310
         </el-table-column>
311 311
 
312
-        <el-table-column align="center" label="尿激酶" v-if="org_id!=10599 && org_id!=10629">
312
+        <el-table-column align="center" label="尿激酶" v-if="dialysisSett.niaojimei_set == 1">
313 313
            <template slot-scope="scope">
314 314
               {{ scope.row.advice_spc_five }}
315 315
            </template>
@@ -366,6 +366,13 @@
366 366
            <el-checkbox v-model="sodium" label="钠"></el-checkbox>
367 367
            <el-checkbox v-model="calcium" label="钙"></el-checkbox>
368 368
            <el-checkbox v-model="blood_access" label="血管通路"></el-checkbox>
369
+
370
+           <el-checkbox v-model="cuhong" label="促红"></el-checkbox>
371
+           <el-checkbox v-model="zuoka" label="左卡"></el-checkbox>
372
+           <el-checkbox v-model="difenzi" label="低分子"></el-checkbox>
373
+           <el-checkbox v-model="gansuna" label="肝素钠"></el-checkbox>
374
+           <el-checkbox v-model="zhetangtie" label="蔗糖铁"></el-checkbox>
375
+           <el-checkbox v-model="niaojimei" label="尿激酶"></el-checkbox>
369 376
         </span>
370 377
         <span slot="footer" class="dialog-footer">
371 378
           <el-button @click="dialogVisible = false">取 消</el-button>
@@ -519,6 +526,7 @@
519 526
   import {getRemindPrintList,saveRemindPrint} from '@/api/schedule'
520 527
   import { getDataConfig } from '@/utils/data'
521 528
   import store from "@/store";
529
+import dialysis from '../../../../router/modules/dialysis';
522 530
   const moment = require('moment')
523 531
   export default {
524 532
     components: {
@@ -621,6 +629,12 @@
621 629
         anticoagulant: false,
622 630
         anticoagulant_zongliang: false,
623 631
         doctor_advice: false,
632
+        cuhong:false,
633
+        zuoka:false,
634
+        difenzi:false,
635
+        gansuna:false,
636
+        zhetangtie:false,
637
+        niaojimei:false,
624 638
         displace_liqui_part_option:[],
625 639
         ids:"",
626 640
         form: {
@@ -1232,6 +1246,22 @@
1232 1246
          if(id ==37){
1233 1247
            mode_name ="HDF1000"
1234 1248
          }
1249
+         if(id ==38){
1250
+           mode_name ="HDF80"
1251
+         }
1252
+         if(id ==39){
1253
+           mode_name ="HF16"
1254
+         }
1255
+         if(id ==40){
1256
+           mode_name ="HD(无肝素)"
1257
+         }
1258
+         if(id ==41){
1259
+           mode_name ="HDF17H"
1260
+         }
1261
+
1262
+         if(id ==42){
1263
+           mode_name ="HD."
1264
+         }
1235 1265
         
1236 1266
          return mode_name
1237 1267
       },
@@ -1633,6 +1663,44 @@
1633 1663
             }else{
1634 1664
               this.displace_liqui_part = false
1635 1665
             }
1666
+
1667
+            if(dialysisSett.cuhong_set == 1){
1668
+               this.cuhong = true
1669
+            }else{
1670
+               this.cuhong = false
1671
+            }
1672
+
1673
+            if(dialysisSett.zuoka_set == 1){
1674
+               this.zuoka = true
1675
+            }else{
1676
+               this.zuoka = false
1677
+            }
1678
+
1679
+            if(dialysisSett.difenzi_set == 1){
1680
+               this.difenzi = true
1681
+            }else{
1682
+               this.difenzi = false
1683
+            }
1684
+
1685
+            if(dialysisSett.gansuna_set == 1){
1686
+               this.gansuna = true
1687
+            }else{
1688
+               this.gansuna = false
1689
+            }
1690
+
1691
+            if(dialysisSett.zhetangtie_set == 1){
1692
+               this.zhetangtie = true
1693
+            }else{
1694
+               this.zhetangtie = false
1695
+            }
1696
+
1697
+            if(dialysisSett.niaojimei_set == 1){
1698
+               this.niaojimei = true
1699
+            }else{
1700
+               this.niaojimei = false
1701
+            }
1702
+
1703
+
1636 1704
           }
1637 1705
      
1638 1706
         }
@@ -1667,7 +1735,57 @@
1667 1735
        var blood_access_set =0
1668 1736
        var dialyzer_perfusion_apparatus_set =0
1669 1737
        var displace_liqui_part_set =0
1738
+        
1739
+       var cuhong_set = 0
1740
+       var zuoka_set =0
1741
+       var difenzi_set =0
1742
+       var gansuna_set =0
1743
+       var zhetangtie_set =0
1744
+       var niaojimei_set =0
1745
+
1746
+       if(this.cuhong == false){
1747
+          cuhong_set = 2
1748
+       }
1749
+       if(this.cuhong == true){
1750
+          cuhong_set = 1
1751
+       }
1752
+
1753
+       if(this.zuoka == false){
1754
+          zuoka_set = 2
1755
+       }
1756
+       if(this.zuoka == true){
1757
+          zuoka_set = 1
1758
+       }
1759
+
1760
+       if(this.difenzi == false){
1761
+          difenzi_set = 2
1762
+       }
1670 1763
        
1764
+       if(this.difenzi == true){
1765
+          difenzi_set = 1
1766
+       }
1767
+
1768
+       if(this.gansuna == false){
1769
+          gansuna_set = 2
1770
+       }
1771
+       if(this.gansuna == true){
1772
+          gansuna_set = 1
1773
+       }
1774
+
1775
+       if(this.zhetangtie == false){
1776
+          zhetangtie_set = 2
1777
+       }
1778
+       if(this.zhetangtie == true){
1779
+          zhetangtie_set = 1
1780
+       }
1781
+
1782
+       if(this.niaojimei == false){
1783
+          niaojimei_set = 2
1784
+       }
1785
+       if(this.niaojimei == true){
1786
+          niaojimei_set = 1
1787
+       }
1788
+      
1671 1789
        if(this.sodium == false){
1672 1790
          sodium_set = 2
1673 1791
        }
@@ -1865,6 +1983,12 @@
1865 1983
           blood_access_set:blood_access_set,
1866 1984
           dialyzer_perfusion_apparatus_set:dialyzer_perfusion_apparatus_set,
1867 1985
           displace_liqui_part_set:displace_liqui_part_set,
1986
+          cuhong_set:cuhong_set,
1987
+          zuoka_set:zuoka_set,
1988
+          difenzi_set:difenzi_set,
1989
+          gansuna_set:gansuna_set,
1990
+          zhetangtie_set:zhetangtie_set,
1991
+          niaojimei_set:niaojimei_set,
1868 1992
         }
1869 1993
        
1870 1994
        saveDialysisSetting(params).then(response=>{

+ 18 - 13
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue Dosyayı Görüntüle

@@ -49,16 +49,16 @@
49 49
                 <td width="100" v-if="dialysisSett.calcium==1">钙</td>
50 50
                 <td width="100" v-if="dialysisSett.bicarbonate == 1">碳酸氢盐</td>
51 51
                 <td width="100" v-if="dialysisSett.blood_access==1">血管通路</td>
52
-                <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1 && org_id!=10629">封管液</td>
52
+                <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1">封管液</td>
53 53
                 <td width="100"  v-if="dialysisSett.glucose==1">葡萄糖</td>
54 54
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">血流量</td>
55
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">封管液</td>
56
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">促红</td>
57
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">左卡</td>
58
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">低分子</td>
59
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">肝素钠</td>
60
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">蔗糖铁</td>
61
-                <td v-if="org_id!=10587 && org_id!=10599 && org_id!=10629">尿激酶</td>
55
+                <td  v-if="dialysisSett.sealing_fluid_dispose==1">封管液</td>
56
+                <td v-if="dialysisSett.cuhong_set==1">促红</td>
57
+                <td v-if="dialysisSett.zuoka_set == 1">左卡</td>
58
+                <td v-if="dialysisSett.difenzi_set == 1">低分子</td>
59
+                <td v-if="dialysisSett.advice_spc_three == 1">肝素钠</td>
60
+                <td v-if="dialysisSett.zhetangtie == 1">蔗糖铁</td>
61
+                <td v-if="dialysisSett.niaojimei_set == 1">尿激酶</td>
62 62
               </tr>
63 63
               </thead>
64 64
               <tbody>
@@ -101,8 +101,13 @@
101 101
                   <span v-if="item.mode_id == 33">HFD</span>
102 102
                   <span v-if="item.mode_id == 34">HDF100</span>
103 103
                   <span v-if="item.mode_id == 35">HDF600</span>
104
-                  <span v-if="item.mode_id == 35">HDF800</span>
105
-                  <span v-if="item.mode_id == 35">HDF1000</span>
104
+                  <span v-if="item.mode_id == 36">HDF800</span>
105
+                  <span v-if="item.mode_id == 37">HDF1000</span>
106
+                  <span v-if="item.mode_id == 38">HDF80</span>
107
+                  <span v-if="item.mode_id == 39">HF16</span>
108
+                  <span v-if="item.mode_id == 40">HD(无肝素)</span>
109
+                  <span v-if="item.mode_id == 41">HDF17H</span>
110
+                  <span v-if="item.mode_id == 42">HD.</span>
106 111
                  
107 112
                 </td>
108 113
                 <td width="100" v-if="dialysisSett.dialysis_no==1">
@@ -180,7 +185,7 @@
180 185
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
181 186
                 </td>
182 187
                 
183
-                <td v-if="org_id!=10587 && org_id!=0 && org_id!=10599 && org_id!=10629">
188
+                <td v-if="dialysisSett.sealing_fluid_dispose ==1">
184 189
                   <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
185 190
                   <span v-else></span>
186 191
                 </td>
@@ -342,10 +347,10 @@
342 347
               this.total_three = total_three
343 348
              
344 349
             }
345
-            console.log("list====================",list)
350
+            // console.log("list====================",list)
346 351
             this.list = list
347 352
             this.dialysisSett = response.data.data.dialysisSett
348
-            console.log("设置",this.dialysisSett)
353
+            // console.log("设置",this.dialysisSett)
349 354
           }
350 355
       }) 
351 356
      },

+ 8 - 8
src/xt_pages/outpatientCharges/components/chargeDialog.vue Dosyayı Görüntüle

@@ -71,37 +71,37 @@
71 71
       </el-form-item>
72 72
 
73 73
 
74
-      <el-form-item label="" style="width:100%;" v-if="this.$store.getters.xt_user.org.id != 10138 && this.$store.getters.xt_user.org.id != 10278 && this.$store.getters.xt_user.org.id != 0 && this.$store.getters.xt_user.org.id != 10610 && this.$store.getters.xt_user.org.id != 10537">
74
+      <el-form-item label="" style="width:100%;" v-if="this.$store.getters.xt_user.org.id != 10138 && this.$store.getters.xt_user.org.id != 10278 && this.$store.getters.xt_user.org.id != 0 && this.$store.getters.xt_user.org.id != 10610 && this.$store.getters.xt_user.org.id != 10537  && this.$store.getters.xt_user.org.id != 10635">
75 75
 
76 76
         <el-radio-group v-model="form.pay_way">
77 77
           <el-radio :label="item.value" v-for="(item,index) in payWays" :key="index">{{ item.label }}</el-radio>
78 78
         </el-radio-group>
79 79
       </el-form-item>
80 80
 
81
-      <el-form-item label="" style="width:100%;" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278 || this.$store.getters.xt_user.org.id == 10510 ||  this.$store.getters.xt_user.org.id == 10610  ||  this.$store.getters.xt_user.org.id == 10537">
81
+      <el-form-item label="" style="width:100%;" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278 || this.$store.getters.xt_user.org.id == 10510 ||  this.$store.getters.xt_user.org.id == 10610  ||  this.$store.getters.xt_user.org.id == 10537 ||  this.$store.getters.xt_user.org.id == 10635">
82 82
 
83 83
         <el-checkbox-group v-model="form.pay_wayss">
84 84
           <el-checkbox :label="item.value" v-for="(item,index) in payWays" :key="item.value">{{ item.label }}</el-checkbox>
85 85
         </el-checkbox-group>
86 86
       </el-form-item>
87 87
 
88
-      <el-form-item label="现金支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 ">
88
+      <el-form-item label="现金支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635">
89 89
         <el-input class="number_style" v-model="form.cash_pay" ></el-input>
90 90
       </el-form-item>
91 91
 
92
-      <el-form-item label="微信支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510  || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537">
92
+      <el-form-item label="微信支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510  || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635">
93 93
         <el-input class="number_style" v-model="form.wechat_pay" ></el-input>
94 94
       </el-form-item>
95
-      <el-form-item label="银行卡支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510  || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537">
95
+      <el-form-item label="银行卡支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510  || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635">
96 96
         <el-input class="number_style" v-model="form.band_card_pay" ></el-input>
97 97
       </el-form-item>
98
-      <el-form-item label="支付宝支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 ">
98
+      <el-form-item label="支付宝支付金额:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635 ">
99 99
         <el-input class="number_style" v-model="form.ali_pay" ></el-input>
100 100
       </el-form-item>
101
-      <el-form-item label="积分支付:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 ">
101
+      <el-form-item label="积分支付:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635 ">
102 102
         <el-input class="number_style" v-model="form.jifen_pay" ></el-input>
103 103
       </el-form-item>
104
-      <el-form-item label="其他说明:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 ">
104
+      <el-form-item label="其他说明:" v-if="this.$store.getters.xt_user.org.id == 10138 || this.$store.getters.xt_user.org.id == 10278  || this.$store.getters.xt_user.org.id == 10510 || this.$store.getters.xt_user.org.id == 10610 ||  this.$store.getters.xt_user.org.id == 10537 || this.$store.getters.xt_user.org.id == 10635 ">
105 105
         <el-input class="number_style" v-model="form.oth_desc" ></el-input>
106 106
       </el-form-item>
107 107
 

+ 1 - 1
src/xt_pages/qcd/workAnalysis/nurse.vue Dosyayı Görüntüle

@@ -127,7 +127,7 @@
127 127
             </el-table-column>
128 128
 
129 129
 
130
-            <el-table-column label="治疗" align="center">
130
+            <el-table-column label="治疗(监测护士)" align="center">
131 131
               <template slot-scope="scope">
132 132
                 {{scope.row.cure_count?scope.row.cure_count:''}}
133 133
 

+ 14 - 6
src/xt_pages/user/components/PatientDetail.vue Dosyayı Görüntüle

@@ -1209,11 +1209,13 @@
1209 1209
                   <td colspan="8">
1210 1210
                     <div
1211 1211
                       class="td_proj_content td_align_left"
1212
-                      v-html="patientPrint.remark"
1213
-                    ></div>
1212
+                     
1213
+                    >  {{ patientPrint.remark }}</div>
1214 1214
                   </td>
1215 1215
                 </tr>
1216 1216
 
1217
+              
1218
+
1217 1219
                 <tr>
1218 1220
                   <td>
1219 1221
                     <div class="td_proj_title">诊<br />断</div>
@@ -1221,8 +1223,9 @@
1221 1223
                   <td colspan="7">
1222 1224
                     <div
1223 1225
                       class="td_proj_content td_align_left"
1224
-                      v-html="patientPrint.diagnose"
1225
-                    ></div>
1226
+                    >
1227
+                    {{ patientPrint.diagnose }}
1228
+                    </div>
1226 1229
                   </td>
1227 1230
                 </tr>
1228 1231
                 <tr>
@@ -1232,8 +1235,10 @@
1232 1235
                   <td colspan="7">
1233 1236
                     <div
1234 1237
                       class="td_proj_content td_align_left"
1235
-                      v-html="patientPrint.treatment_plan"
1236
-                    ></div>
1238
+                     
1239
+                    >
1240
+                     {{ patientPrint.treatment_plan }}
1241
+                   </div>
1237 1242
                   </td>
1238 1243
                 </tr>
1239 1244
               </tbody>
@@ -2104,6 +2109,9 @@ export default {
2104 2109
               /\n/g,
2105 2110
               "<br/>"
2106 2111
             );
2112
+            
2113
+            
2114
+
2107 2115
             this.patientPrint.sch_remark = patietInfo.sch_remark.replace(
2108 2116
               /\n/g,
2109 2117
               "<br/>"

+ 2 - 2
src/xt_pages/user/components/PatientForm.vue Dosyayı Görüntüle

@@ -969,11 +969,11 @@
969 969
           <el-row :gutter="24">
970 970
             <el-col>
971 971
               <el-form-item>
972
-                <el-input v-model="form.sbp" style="width: 240px" >
972
+                <el-input v-model="form.sbp" style="width: 300px" >
973 973
                   <template slot="prepend">收缩压:</template>
974 974
                   <template slot="append">mmHg</template>
975 975
                 </el-input>
976
-                <el-input v-model="form.dbp" style="width: 240px" >
976
+                <el-input v-model="form.dbp" style="width: 300px" >
977 977
                   <template slot="prepend">舒张压:</template>
978 978
                   <template slot="append">mmHg</template>
979 979
                 </el-input>

+ 3 - 6
src/xt_pages/user/templateSummaryPrint.vue Dosyayı Görüntüle

@@ -52,7 +52,7 @@
52 52
           <div style="line-height:24px; word-break: break-all;word-wrap: break-word" 
53 53
           v-html="patientList.template_summary_content"></div>
54 54
       </div>
55
-     <div style="padding:20px 0;border-bottom:1px solid #000;min-height:250px;">
55
+     <div style="padding:20px 0;border-bottom:1px solid #000;min-height:250px;" v-if="org_id!=0&&org_id!=10635">
56 56
         <span style="font-weight:bold;">阶段小结化验结果:</span>
57 57
         <div class="borderBox">
58 58
           <div v-for="item in patientList.template_inspection_content">
@@ -266,6 +266,7 @@ export default {
266 266
       patientList:{},
267 267
       doctorList:[],
268 268
       anticoagulantList:[],
269
+      org_id:0,
269 270
     }
270 271
   },
271 272
   methods: {
@@ -301,12 +302,7 @@ export default {
301 302
         })
302 303
       
303 304
     },
304
-  
305 305
 
306
-   
307
-  
308
-   
309
-  
310 306
     getAge: function(val) {
311 307
       if (val.birthday != 0) {
312 308
         return jsGetAge(val.birth, '-')
@@ -405,6 +401,7 @@ export default {
405 401
   },
406 402
  
407 403
   created() {
404
+     this.org_id = this.$store.getters.xt_user.org.id
408 405
      var anticoagulantsConfitOne = this.$store.getters.anticoagulants_confit
409 406
      const arrFour = []
410 407
      Object.keys(anticoagulantsConfitOne).map((item, index) => {

+ 13 - 13
src/xt_permission.js Dosyayı Görüntüle

@@ -12,19 +12,19 @@ const permissionWhiteList = loginWhiteList.concat(['/']) // 权限验证白名
12 12
 
13 13
 router.beforeEach((to, from, next) => {
14 14
   // 线上注释
15
-  // if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
-  //   store.dispatch('VerifyConfigList', []).then(() => {
17
-  //     next()
18
-  //   })
19
-  // }
20
-  // if (store.getters.permission_routers === undefined) {
21
-  //   store.dispatch('xt_GenerateRoutes', []).then(() => {
22
-  //     next()
23
-  //   })
24
-  // } else {
25
-  //   next()
26
-  // }
27
-  // return
15
+  if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
+    store.dispatch('VerifyConfigList', []).then(() => {
17
+      next()
18
+    })
19
+  }
20
+  if (store.getters.permission_routers === undefined) {
21
+    store.dispatch('xt_GenerateRoutes', []).then(() => {
22
+      next()
23
+    })
24
+  } else {
25
+    next()
26
+  }
27
+  return
28 28
   // 线上注释
29 29
   NProgress.start()
30 30
   // console.log(store.getters.current_role_urls.indexOf(to.path))