|
@@ -42,7 +42,7 @@
|
42
|
42
|
|
43
|
43
|
|
44
|
44
|
</div>
|
45
|
|
- <div class="filter-container" v-if="org_id == 0 || org_id ==10101">
|
|
45
|
+ <div class="filter-container">
|
46
|
46
|
<el-input style="width:200px" placeholder="请输入药品名称" v-model="keyword"></el-input>
|
47
|
47
|
<el-button type="primary" @click="toSeachOne">搜索</el-button>
|
48
|
48
|
|
|
@@ -1477,27 +1477,30 @@ export default {
|
1477
|
1477
|
return name
|
1478
|
1478
|
},
|
1479
|
1479
|
getAdviceContent(row, isChild) {
|
|
1480
|
+ console.log("rwoo22222222222222333",row)
|
1480
|
1481
|
let tempSingleDoseDesc = ''
|
1481
|
1482
|
let tempDrugSpecDesc = ''
|
1482
|
1483
|
let tempPrescribingNumberDesc = ''
|
1483
|
1484
|
|
1484
|
1485
|
if (row.prescribing_number) {
|
1485
|
|
- tempPrescribingNumberDesc =
|
1486
|
|
- row.prescribing_number + '' + row.prescribing_number_unit
|
|
1486
|
+ tempPrescribingNumberDesc = row.prescribing_number + '' + row.prescribing_number_unit
|
|
1487
|
+
|
1487
|
1488
|
}
|
1488
|
1489
|
|
1489
|
1490
|
if (row.single_dose) {
|
1490
|
1491
|
if (this.template_id != 6) {
|
1491
|
|
- tempSingleDoseDesc =
|
1492
|
|
- ' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
|
|
1492
|
+ tempSingleDoseDesc =' 单次用量 ' + ' ' + row.single_dose + '' + row.single_dose_unit
|
|
1493
|
+
|
1493
|
1494
|
} else {
|
1494
|
|
- tempSingleDoseDesc = row.single_dose ? row.single_dose : '' + '' + row.single_dose_unit ? row.single_dose_unit : ''
|
|
1495
|
+ tempSingleDoseDesc = row.single_dose + row.single_dose_unit
|
1495
|
1496
|
|
1496
|
1497
|
}
|
1497
|
1498
|
}
|
1498
|
1499
|
|
1499
|
1500
|
if (row.advice_desc) {
|
1500
|
|
- tempDrugSpecDesc = '(' + row.advice_desc + row.drug_spec_unit + ')'
|
|
1501
|
+ tempDrugSpecDesc = '(' + row.advice_desc + row.drug_spec_unit + ')'
|
|
1502
|
+
|
|
1503
|
+
|
1501
|
1504
|
}
|
1502
|
1505
|
|
1503
|
1506
|
if (isChild == 1) {
|
|
@@ -1508,30 +1511,15 @@ export default {
|
1508
|
1511
|
// console.log(11,row.delivery_way)
|
1509
|
1512
|
// console.log(22,row.execution_frequency)
|
1510
|
1513
|
|
1511
|
|
- return (
|
1512
|
|
- row.advice_name +
|
1513
|
|
- tempDrugSpecDesc +
|
1514
|
|
- ' ' +
|
1515
|
|
- tempPrescribingNumberDesc +
|
1516
|
|
- tempSingleDoseDesc +
|
1517
|
|
- ' ' +
|
1518
|
|
- row.delivery_way +
|
1519
|
|
- ' ' +
|
1520
|
|
- row.execution_frequency
|
1521
|
|
- )
|
|
1514
|
+ return (row.advice_name + tempDrugSpecDesc + ' ' + tempPrescribingNumberDesc + tempSingleDoseDesc +' ' + row.delivery_way +' ' +row.execution_frequency)
|
1522
|
1515
|
} else {
|
1523
|
1516
|
// 是子药
|
1524
|
|
- return (
|
1525
|
|
- row.advice_name +
|
1526
|
|
- tempDrugSpecDesc +
|
1527
|
|
- ' ' +
|
1528
|
|
- tempPrescribingNumberDesc +
|
1529
|
|
- tempSingleDoseDesc
|
1530
|
|
- )
|
|
1517
|
+ return (row.advice_name +tempDrugSpecDesc +' ' + tempPrescribingNumberDesc + tempSingleDoseDesc)
|
|
1518
|
+
|
1531
|
1519
|
}
|
1532
|
1520
|
},
|
1533
|
1521
|
handleSelectionChange(val){
|
1534
|
|
- console.log("val88888888",val)
|
|
1522
|
+
|
1535
|
1523
|
this.selecting_schs = val;
|
1536
|
1524
|
this.is_status = 1
|
1537
|
1525
|
},
|