|
@@ -256,13 +256,13 @@
|
256
|
256
|
type="primary"
|
257
|
257
|
>打印</el-button
|
258
|
258
|
>
|
259
|
|
- </template>
|
|
259
|
+ </template>
|
260
|
260
|
<div id='printMain'>
|
261
|
261
|
<print ref="print" v-if="selecting_schs1.length > 0" :paramsObj='paramsObj'></print>
|
262
|
262
|
<treatPrint ref="treatPrint" v-if="selecting_schs2.length > 0" :paramsObj='paramsObj2'></treatPrint>
|
263
|
263
|
<checkPrint ref="checkPrint" v-if="selecting_schs3.length > 0" :paramsObj='paramsObj3'></checkPrint>
|
264
|
264
|
</div>
|
265
|
|
-
|
|
265
|
+
|
266
|
266
|
</el-dialog>
|
267
|
267
|
<span slot="footer" class="dialog-footer">
|
268
|
268
|
<el-button @click="centerDialogVisible = false">取 消</el-button>
|
|
@@ -1449,7 +1449,7 @@
|
1449
|
1449
|
single_dose: prescription.advices[b].single_dose,
|
1450
|
1450
|
delivery_way: prescription.advices[b].delivery_way,
|
1451
|
1451
|
execution_frequency: prescription.advices[b].execution_frequency,
|
1452
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
1452
|
+ // retail_price: prescription.advices[b].price.toString(),
|
1453
|
1453
|
remark: prescription.advices[b].remark,
|
1454
|
1454
|
day: prescription.advices[b].day,
|
1455
|
1455
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -1459,6 +1459,13 @@
|
1459
|
1459
|
id: prescription.advices[b].drug_id,
|
1460
|
1460
|
drug:prescription.advices[b].drug
|
1461
|
1461
|
};
|
|
1462
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
1463
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
1464
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
1465
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
1466
|
+ } else {
|
|
1467
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
1468
|
+ }
|
1462
|
1469
|
tempAdvice.push(obj)
|
1463
|
1470
|
}
|
1464
|
1471
|
|
|
@@ -1474,7 +1481,6 @@
|
1474
|
1481
|
execution_frequency: prescription.project[b].execution_frequency,
|
1475
|
1482
|
number_days: prescription.project[b].day,
|
1476
|
1483
|
total: prescription.project[b].count.toString(),
|
1477
|
|
- price: prescription.project[b].price,
|
1478
|
1484
|
remark: prescription.project[b].remark,
|
1479
|
1485
|
medical_code: prescription.project[b].project.medical_code,
|
1480
|
1486
|
unit: prescription.project[b].project.unit,
|
|
@@ -1485,11 +1491,16 @@
|
1485
|
1491
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
1486
|
1492
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
1487
|
1493
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
1494
|
+ obj['price'] = prescription.project[b].project.price
|
|
1495
|
+
|
|
1496
|
+
|
1488
|
1497
|
|
1489
|
1498
|
} else if (prescription.project[b].type == 3) {
|
1490
|
1499
|
obj['statistical_classification'] = ""
|
1491
|
1500
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
1492
|
1501
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
1502
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
1503
|
+
|
1493
|
1504
|
}
|
1494
|
1505
|
tempProject.push(obj)
|
1495
|
1506
|
}
|
|
@@ -1765,7 +1776,7 @@
|
1765
|
1776
|
single_dose: prescription.advices[b].single_dose,
|
1766
|
1777
|
delivery_way: prescription.advices[b].delivery_way,
|
1767
|
1778
|
execution_frequency: prescription.advices[b].execution_frequency,
|
1768
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
1779
|
+ // retail_price: prescription.advices[b].price.toString(),
|
1769
|
1780
|
remark: prescription.advices[b].remark,
|
1770
|
1781
|
day: prescription.advices[b].day,
|
1771
|
1782
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -1774,8 +1785,14 @@
|
1774
|
1785
|
medical_insurance_number: prescription.advices[b].med_list_codg,
|
1775
|
1786
|
id: prescription.advices[b].drug_id,
|
1776
|
1787
|
drug:prescription.advices[b].drug
|
1777
|
|
-
|
1778
|
1788
|
};
|
|
1789
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
1790
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
1791
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
1792
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
1793
|
+ } else {
|
|
1794
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
1795
|
+ }
|
1779
|
1796
|
tempAdvice.push(obj)
|
1780
|
1797
|
}
|
1781
|
1798
|
|
|
@@ -1791,7 +1808,6 @@
|
1791
|
1808
|
execution_frequency: prescription.project[b].execution_frequency,
|
1792
|
1809
|
number_days: prescription.project[b].day,
|
1793
|
1810
|
total: prescription.project[b].count.toString(),
|
1794
|
|
- price: prescription.project[b].price,
|
1795
|
1811
|
remark: prescription.project[b].remark,
|
1796
|
1812
|
medical_code: prescription.project[b].project.medical_code,
|
1797
|
1813
|
unit: prescription.project[b].project.unit,
|
|
@@ -1802,11 +1818,16 @@
|
1802
|
1818
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
1803
|
1819
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
1804
|
1820
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
1821
|
+ obj['price'] = prescription.project[b].project.price
|
|
1822
|
+
|
|
1823
|
+
|
1805
|
1824
|
|
1806
|
1825
|
} else if (prescription.project[b].type == 3) {
|
1807
|
1826
|
obj['statistical_classification'] = ""
|
1808
|
1827
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
1809
|
1828
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
1829
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
1830
|
+
|
1810
|
1831
|
}
|
1811
|
1832
|
tempProject.push(obj)
|
1812
|
1833
|
}
|
|
@@ -1815,9 +1836,6 @@
|
1815
|
1836
|
var preTime = nowTime
|
1816
|
1837
|
|
1817
|
1838
|
|
1818
|
|
-
|
1819
|
|
-
|
1820
|
|
-
|
1821
|
1839
|
let index = i + 1;
|
1822
|
1840
|
let obj = {
|
1823
|
1841
|
id: 0,
|
|
@@ -1836,10 +1854,8 @@
|
1836
|
1854
|
|
1837
|
1855
|
}else{
|
1838
|
1856
|
|
1839
|
|
- obj.med_type = parseInt(prescription.med_type)
|
|
1857
|
+ obj.med_type = parseInt(prescription.med_type)
|
1840
|
1858
|
}
|
1841
|
|
-
|
1842
|
|
-
|
1843
|
1859
|
if(obj.med_type== 0 || obj.med_type == "") {
|
1844
|
1860
|
if (this.$store.getters.xt_user.org_id == 10028 || this.$store.getters.xt_user.org_id == 9504 || this.$store.getters.xt_user.org_id == 10138) {
|
1845
|
1861
|
obj.med_type = 13
|
|
@@ -2193,7 +2209,7 @@
|
2193
|
2209
|
single_dose: prescription.advices[b].single_dose,
|
2194
|
2210
|
delivery_way: prescription.advices[b].delivery_way,
|
2195
|
2211
|
execution_frequency: prescription.advices[b].execution_frequency,
|
2196
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
2212
|
+ // retail_price: prescription.advices[b].price.toString(),
|
2197
|
2213
|
remark: prescription.advices[b].remark,
|
2198
|
2214
|
day: prescription.advices[b].day,
|
2199
|
2215
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -2202,8 +2218,14 @@
|
2202
|
2218
|
medical_insurance_number: prescription.advices[b].med_list_codg,
|
2203
|
2219
|
id: prescription.advices[b].drug_id,
|
2204
|
2220
|
drug:prescription.advices[b].drug
|
2205
|
|
-
|
2206
|
2221
|
};
|
|
2222
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
2223
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
2224
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
2225
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
2226
|
+ } else {
|
|
2227
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
2228
|
+ }
|
2207
|
2229
|
tempAdvice.push(obj)
|
2208
|
2230
|
}
|
2209
|
2231
|
|
|
@@ -2219,7 +2241,6 @@
|
2219
|
2241
|
execution_frequency: prescription.project[b].execution_frequency,
|
2220
|
2242
|
number_days: prescription.project[b].day,
|
2221
|
2243
|
total: prescription.project[b].count.toString(),
|
2222
|
|
- price: prescription.project[b].price,
|
2223
|
2244
|
remark: prescription.project[b].remark,
|
2224
|
2245
|
medical_code: prescription.project[b].project.medical_code,
|
2225
|
2246
|
unit: prescription.project[b].project.unit,
|
|
@@ -2230,11 +2251,16 @@
|
2230
|
2251
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
2231
|
2252
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
2232
|
2253
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
2254
|
+ obj['price'] = prescription.project[b].project.price
|
|
2255
|
+
|
|
2256
|
+
|
2233
|
2257
|
|
2234
|
2258
|
} else if (prescription.project[b].type == 3) {
|
2235
|
2259
|
obj['statistical_classification'] = ""
|
2236
|
2260
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
2237
|
2261
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
2262
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
2263
|
+
|
2238
|
2264
|
}
|
2239
|
2265
|
tempProject.push(obj)
|
2240
|
2266
|
}
|
|
@@ -2242,6 +2268,7 @@
|
2242
|
2268
|
|
2243
|
2269
|
var preTime = nowTime
|
2244
|
2270
|
|
|
2271
|
+
|
2245
|
2272
|
let index = i + 1;
|
2246
|
2273
|
let obj = {
|
2247
|
2274
|
id: 0,
|
|
@@ -2260,10 +2287,8 @@
|
2260
|
2287
|
|
2261
|
2288
|
}else{
|
2262
|
2289
|
|
2263
|
|
- obj.med_type = parseInt(prescription.med_type)
|
|
2290
|
+ obj.med_type = parseInt(prescription.med_type)
|
2264
|
2291
|
}
|
2265
|
|
-
|
2266
|
|
-
|
2267
|
2292
|
if(obj.med_type== 0 || obj.med_type == "") {
|
2268
|
2293
|
if (this.$store.getters.xt_user.org_id == 10028 || this.$store.getters.xt_user.org_id == 9504 || this.$store.getters.xt_user.org_id == 10138) {
|
2269
|
2294
|
obj.med_type = 13
|
|
@@ -2615,7 +2640,7 @@
|
2615
|
2640
|
single_dose: prescription.advices[b].single_dose,
|
2616
|
2641
|
delivery_way: prescription.advices[b].delivery_way,
|
2617
|
2642
|
execution_frequency: prescription.advices[b].execution_frequency,
|
2618
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
2643
|
+ // retail_price: prescription.advices[b].price.toString(),
|
2619
|
2644
|
remark: prescription.advices[b].remark,
|
2620
|
2645
|
day: prescription.advices[b].day,
|
2621
|
2646
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -2624,8 +2649,14 @@
|
2624
|
2649
|
medical_insurance_number: prescription.advices[b].med_list_codg,
|
2625
|
2650
|
id: prescription.advices[b].drug_id,
|
2626
|
2651
|
drug:prescription.advices[b].drug
|
2627
|
|
-
|
2628
|
2652
|
};
|
|
2653
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
2654
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
2655
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
2656
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
2657
|
+ } else {
|
|
2658
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
2659
|
+ }
|
2629
|
2660
|
tempAdvice.push(obj)
|
2630
|
2661
|
}
|
2631
|
2662
|
|
|
@@ -2641,7 +2672,6 @@
|
2641
|
2672
|
execution_frequency: prescription.project[b].execution_frequency,
|
2642
|
2673
|
number_days: prescription.project[b].day,
|
2643
|
2674
|
total: prescription.project[b].count.toString(),
|
2644
|
|
- price: prescription.project[b].price,
|
2645
|
2675
|
remark: prescription.project[b].remark,
|
2646
|
2676
|
medical_code: prescription.project[b].project.medical_code,
|
2647
|
2677
|
unit: prescription.project[b].project.unit,
|
|
@@ -2652,11 +2682,16 @@
|
2652
|
2682
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
2653
|
2683
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
2654
|
2684
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
2685
|
+ obj['price'] = prescription.project[b].project.price
|
|
2686
|
+
|
|
2687
|
+
|
2655
|
2688
|
|
2656
|
2689
|
} else if (prescription.project[b].type == 3) {
|
2657
|
2690
|
obj['statistical_classification'] = ""
|
2658
|
2691
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
2659
|
2692
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
2693
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
2694
|
+
|
2660
|
2695
|
}
|
2661
|
2696
|
tempProject.push(obj)
|
2662
|
2697
|
}
|
|
@@ -3092,7 +3127,7 @@
|
3092
|
3127
|
single_dose: prescription.advices[b].single_dose,
|
3093
|
3128
|
delivery_way: prescription.advices[b].delivery_way,
|
3094
|
3129
|
execution_frequency: prescription.advices[b].execution_frequency,
|
3095
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
3130
|
+ // retail_price: prescription.advices[b].price.toString(),
|
3096
|
3131
|
remark: prescription.advices[b].remark,
|
3097
|
3132
|
day: prescription.advices[b].day,
|
3098
|
3133
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -3101,8 +3136,14 @@
|
3101
|
3136
|
medical_insurance_number: prescription.advices[b].med_list_codg,
|
3102
|
3137
|
id: prescription.advices[b].drug_id,
|
3103
|
3138
|
drug:prescription.advices[b].drug
|
3104
|
|
-
|
3105
|
3139
|
};
|
|
3140
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
3141
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
3142
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
3143
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
3144
|
+ } else {
|
|
3145
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
3146
|
+ }
|
3106
|
3147
|
tempAdvice.push(obj)
|
3107
|
3148
|
}
|
3108
|
3149
|
|
|
@@ -3118,7 +3159,6 @@
|
3118
|
3159
|
execution_frequency: prescription.project[b].execution_frequency,
|
3119
|
3160
|
number_days: prescription.project[b].day,
|
3120
|
3161
|
total: prescription.project[b].count.toString(),
|
3121
|
|
- price: prescription.project[b].price,
|
3122
|
3162
|
remark: prescription.project[b].remark,
|
3123
|
3163
|
medical_code: prescription.project[b].project.medical_code,
|
3124
|
3164
|
unit: prescription.project[b].project.unit,
|
|
@@ -3129,11 +3169,16 @@
|
3129
|
3169
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
3130
|
3170
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
3131
|
3171
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
3172
|
+ obj['price'] = prescription.project[b].project.price
|
|
3173
|
+
|
|
3174
|
+
|
3132
|
3175
|
|
3133
|
3176
|
} else if (prescription.project[b].type == 3) {
|
3134
|
3177
|
obj['statistical_classification'] = ""
|
3135
|
3178
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
3136
|
3179
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
3180
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
3181
|
+
|
3137
|
3182
|
}
|
3138
|
3183
|
tempProject.push(obj)
|
3139
|
3184
|
}
|
|
@@ -3141,6 +3186,7 @@
|
3141
|
3186
|
|
3142
|
3187
|
var preTime = nowTime
|
3143
|
3188
|
|
|
3189
|
+
|
3144
|
3190
|
let index = i + 1;
|
3145
|
3191
|
let obj = {
|
3146
|
3192
|
id: 0,
|
|
@@ -3513,7 +3559,7 @@
|
3513
|
3559
|
single_dose: prescription.advices[b].single_dose,
|
3514
|
3560
|
delivery_way: prescription.advices[b].delivery_way,
|
3515
|
3561
|
execution_frequency: prescription.advices[b].execution_frequency,
|
3516
|
|
- retail_price: prescription.advices[b].price.toString(),
|
|
3562
|
+ // retail_price: prescription.advices[b].price.toString(),
|
3517
|
3563
|
remark: prescription.advices[b].remark,
|
3518
|
3564
|
day: prescription.advices[b].day,
|
3519
|
3565
|
prescribing_number: prescription.advices[b].prescribing_number.toString(),
|
|
@@ -3522,8 +3568,14 @@
|
3522
|
3568
|
medical_insurance_number: prescription.advices[b].med_list_codg,
|
3523
|
3569
|
id: prescription.advices[b].drug_id,
|
3524
|
3570
|
drug:prescription.advices[b].drug
|
3525
|
|
-
|
3526
|
3571
|
};
|
|
3572
|
+ if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit){
|
|
3573
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
3574
|
+ } else if(obj.prescribing_number_unit == prescription.advices[b].drug.max_unit){
|
|
3575
|
+ obj['retail_price'] = prescription.advices[b].drug.max_price
|
|
3576
|
+ } else {
|
|
3577
|
+ obj['retail_price'] = prescription.advices[b].drug.min_price
|
|
3578
|
+ }
|
3527
|
3579
|
tempAdvice.push(obj)
|
3528
|
3580
|
}
|
3529
|
3581
|
|
|
@@ -3539,7 +3591,6 @@
|
3539
|
3591
|
execution_frequency: prescription.project[b].execution_frequency,
|
3540
|
3592
|
number_days: prescription.project[b].day,
|
3541
|
3593
|
total: prescription.project[b].count.toString(),
|
3542
|
|
- price: prescription.project[b].price,
|
3543
|
3594
|
remark: prescription.project[b].remark,
|
3544
|
3595
|
medical_code: prescription.project[b].project.medical_code,
|
3545
|
3596
|
unit: prescription.project[b].project.unit,
|
|
@@ -3550,11 +3601,16 @@
|
3550
|
3601
|
obj['statistical_classification'] = prescription.project[b].project.statistical_classification
|
3551
|
3602
|
obj['medical_code'] = prescription.project[b].project.medical_code
|
3552
|
3603
|
obj['project_name'] = prescription.project[b].project.project_name
|
|
3604
|
+ obj['price'] = prescription.project[b].project.price
|
|
3605
|
+
|
|
3606
|
+
|
3553
|
3607
|
|
3554
|
3608
|
} else if (prescription.project[b].type == 3) {
|
3555
|
3609
|
obj['statistical_classification'] = ""
|
3556
|
3610
|
obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
|
3557
|
3611
|
obj['project_name'] = prescription.project[b].good_info.good_name
|
|
3612
|
+ obj['price'] = prescription.project[b].good_info.packing_price
|
|
3613
|
+
|
3558
|
3614
|
}
|
3559
|
3615
|
tempProject.push(obj)
|
3560
|
3616
|
}
|
|
@@ -3581,7 +3637,7 @@
|
3581
|
3637
|
|
3582
|
3638
|
}else{
|
3583
|
3639
|
|
3584
|
|
- obj.med_type = parseInt(prescription.med_type)
|
|
3640
|
+ obj.med_type = parseInt(prescription.med_type)
|
3585
|
3641
|
}
|
3586
|
3642
|
if(obj.med_type== 0 || obj.med_type == "") {
|
3587
|
3643
|
if (this.$store.getters.xt_user.org_id == 10028 || this.$store.getters.xt_user.org_id == 9504 || this.$store.getters.xt_user.org_id == 10138) {
|
|
@@ -3861,7 +3917,7 @@
|
3861
|
3917
|
this.tableData2 = arr2
|
3862
|
3918
|
this.tableData4 = arr4
|
3863
|
3919
|
this.tableData3 = [arr3[0]]
|
3864
|
|
-
|
|
3920
|
+
|
3865
|
3921
|
}else{
|
3866
|
3922
|
var list = response.data.data.list
|
3867
|
3923
|
let arr = []
|
|
@@ -3874,10 +3930,10 @@
|
3874
|
3930
|
}
|
3875
|
3931
|
console.log('arrrrrrrrrr',arr)
|
3876
|
3932
|
this.selecting_schs = arr
|
3877
|
|
-
|
|
3933
|
+
|
3878
|
3934
|
this.savePrint()
|
3879
|
3935
|
}
|
3880
|
|
-
|
|
3936
|
+
|
3881
|
3937
|
}
|
3882
|
3938
|
})
|
3883
|
3939
|
},
|
|
@@ -3938,7 +3994,7 @@
|
3938
|
3994
|
};
|
3939
|
3995
|
this.paramsObj = obj1;
|
3940
|
3996
|
}
|
3941
|
|
-
|
|
3997
|
+
|
3942
|
3998
|
//治疗
|
3943
|
3999
|
var arr2 = [];
|
3944
|
4000
|
if(this.selecting_schs2.length > 0){
|
|
@@ -3968,10 +4024,10 @@
|
3968
|
4024
|
};
|
3969
|
4025
|
this.paramsObj3 = obj3;
|
3970
|
4026
|
}
|
3971
|
|
-
|
3972
|
|
-
|
3973
|
|
-
|
3974
|
|
-
|
|
4027
|
+
|
|
4028
|
+
|
|
4029
|
+
|
|
4030
|
+
|
3975
|
4031
|
this.innerVisible = true
|
3976
|
4032
|
|
3977
|
4033
|
// if(this.index == 20){
|