|
@@ -1758,7 +1758,7 @@
|
1758
|
1758
|
</table>
|
1759
|
1759
|
</td>
|
1760
|
1760
|
</tr>
|
1761
|
|
- <tr v-if="org_id != 10206">
|
|
1761
|
+ <tr v-if="org_id != 10206 && org_id!=0 && org_id!=10744">
|
1762
|
1762
|
<td style="padding: 0; position: relative" colspan="2">
|
1763
|
1763
|
<table class="inside_table">
|
1764
|
1764
|
<tbody>
|
|
@@ -1944,7 +1944,7 @@
|
1944
|
1944
|
</td>
|
1945
|
1945
|
</tr>
|
1946
|
1946
|
|
1947
|
|
- <tr v-if="org_id == 10206">
|
|
1947
|
+ <tr v-if="org_id == 10206 || org_id == 0 || org_id == 10744">
|
1948
|
1948
|
<td style="padding: 0; position: relative" colspan="2">
|
1949
|
1949
|
<table class="inside_table">
|
1950
|
1950
|
<tbody>
|
|
@@ -4433,7 +4433,7 @@ export default {
|
4433
|
4433
|
|
4434
|
4434
|
|
4435
|
4435
|
//针对内蒙古阿拉善
|
4436
|
|
- if (this.org_id == 10206) {
|
|
4436
|
+ if (this.org_id == 10206 || this.org_id == 0 || this.org_id == 10744) {
|
4437
|
4437
|
|
4438
|
4438
|
if (this.doctor_advices != null && this.doctor_advices.length > 0) {
|
4439
|
4439
|
|
|
@@ -4488,6 +4488,7 @@ export default {
|
4488
|
4488
|
console.log("newArrwowoow", newArr)
|
4489
|
4489
|
|
4490
|
4490
|
this.new_doctor_advice_list = []
|
|
4491
|
+
|
4491
|
4492
|
this.new_doctor_advice_list.push(...newArr)
|
4492
|
4493
|
|
4493
|
4494
|
console.log("newArrwowoow", this.new_doctor_advice_list)
|
|
@@ -4497,11 +4498,25 @@ export default {
|
4497
|
4498
|
|
4498
|
4499
|
console.log("新时间我哦我哦", this.doctor_advices)
|
4499
|
4500
|
|
|
4501
|
+ //过滤口服药
|
|
4502
|
+ if (this.org_id == 0 || this.org_id ==10744) {
|
|
4503
|
+ var docArr = []
|
|
4504
|
+ if (this.new_doctor_advice_list != null && this.new_doctor_advice_list.length > 0) {
|
|
4505
|
+ for (let i = 0; i < this.new_doctor_advice_list.length; i++) {
|
|
4506
|
+ if (this.new_doctor_advice_list[i].delivery_way != '口服' && this.new_doctor_advice_list[i].delivery_way != '中药口服') {
|
|
4507
|
+ docArr.push(this.new_doctor_advice_list[i])
|
|
4508
|
+ }
|
|
4509
|
+ }
|
|
4510
|
+ }
|
|
4511
|
+ this.new_doctor_advice_list = []
|
|
4512
|
+ this.new_doctor_advice_list = docArr
|
|
4513
|
+ }
|
|
4514
|
+
|
4500
|
4515
|
|
4501
|
4516
|
|
4502
|
4517
|
|
4503
|
4518
|
//过滤口服药
|
4504
|
|
- if (this.org_id == 10265) {
|
|
4519
|
+ if (this.org_id == 10265 || this.org_id == 0 || this.org_id ==10744) {
|
4505
|
4520
|
var docArr = []
|
4506
|
4521
|
if (this.doctor_advices != null && this.doctor_advices.length > 0) {
|
4507
|
4522
|
for (let i = 0; i < this.doctor_advices.length; i++) {
|