|
|
|
|
200
|
<div>{{'天'}}</div>
|
200
|
<div>{{'天'}}</div>
|
201
|
</div>
|
201
|
</div>
|
202
|
</template>
|
202
|
</template>
|
|
|
203
|
+
|
203
|
</el-table-column>
|
204
|
</el-table-column>
|
204
|
<el-table-column align="center" prop="total" width="70" label="总量">
|
205
|
<el-table-column align="center" prop="total" width="70" label="总量">
|
205
|
<template slot-scope="scope">
|
206
|
<template slot-scope="scope">
|
|
|
|
|
547
|
scope.row.prescribing_number = Math.ceil((scope.row.single_dose * (scope.row.execution_frequency ? this.getNum(scope.row.execution_frequency) : 1) * (scope.row.day ? scope.row.day : 1)) / scope.row.drug.dose ) // / scope.row.drug.dose
|
548
|
scope.row.prescribing_number = Math.ceil((scope.row.single_dose * (scope.row.execution_frequency ? this.getNum(scope.row.execution_frequency) : 1) * (scope.row.day ? scope.row.day : 1)) / scope.row.drug.dose ) // / scope.row.drug.dose
|
548
|
} else {
|
549
|
} else {
|
549
|
console.log(1234)
|
550
|
console.log(1234)
|
550
|
- scope.row.prescribing_number = Math.ceil((scope.row.single_dose * (scope.row.execution_frequency ? this.getNum(scope.row.execution_frequency) : 1) * (scope.row.day ? scope.row.day : 1)) / scope.row.drug.dose / scope.row.drug.min_number)//
|
|
|
|
|
551
|
+ scope.row.prescribing_number = Math.ceil((scope.row.single_dose * (scope.row.execution_frequency ? this.getNum(scope.row.execution_frequency) : 1) * (scope.row.day ? scope.row.day : 1)) / scope.row.drug.dose / scope.row.drug.min_number)//
|
551
|
}
|
552
|
}
|
552
|
}
|
553
|
}
|
553
|
if (scope.row.prescribing_number == 0) {
|
554
|
if (scope.row.prescribing_number == 0) {
|