Browse Source

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

yq1 7 months ago
parent
commit
76d8e92ee3

+ 1 - 1
src/xt_pages/dialysis/doctorAdvicePrint.vue View File

@@ -292,7 +292,7 @@ export default {
292 292
                     this.project = resp.data.project
293 293
                     resp.data.hisAdvices.map((item,index) => {
294 294
                     item.new_advice = item.new_advice ? item.new_advice : []
295
-                      if(this.org_id!=9671 && this.org_id!= 10318 && this.org_id!=0){
295
+                      if(this.org_id!=9671 && this.org_id!= 10318 && this.org_id!=0 && this.org_id!=10633){
296 296
                         if(this.project[index].project.length > 0){
297 297
                             this.project[index].project.map(it => {
298 298
                             let obj = {

+ 2 - 2
src/xt_pages/dialysis/newDoctorAdvice.vue View File

@@ -1365,11 +1365,11 @@ export default {
1365 1365
           name = ""
1366 1366
        }
1367 1367
 
1368
-       if(this.org_id == 9671 || this.org_id == 10340 || this.org_id == 0){
1368
+       if(this.org_id == 9671 || this.org_id == 10340){
1369 1369
         this.$router.push({ path: "/dialysis/doctorAdvicePrint/one",query:{time: new Date(this.time).getTime(),delivery_way:name} });
1370 1370
        }
1371 1371
 
1372
-       if(this.org_id != 9671 && this.org_id != 10340 && this.org_id!=0){
1372
+       if(this.org_id != 9671 && this.org_id != 10340){
1373 1373
         this.$router.push({ path: "/dialysis/doctorAdvicePrint",query:{time: new Date(this.time).getTime(),delivery_way:name} });
1374 1374
        }
1375 1375