diff --git a/openhis-ui-vue3/src/views/doctorstation/components/prescription/prescriptionlist.vue b/openhis-ui-vue3/src/views/doctorstation/components/prescription/prescriptionlist.vue index 7781f273..ee3ab512 100644 --- a/openhis-ui-vue3/src/views/doctorstation/components/prescription/prescriptionlist.vue +++ b/openhis-ui-vue3/src/views/doctorstation/components/prescription/prescriptionlist.vue @@ -108,24 +108,7 @@ v-for="item in scope.row.stockList" :key="item.inventoryId" :value="item.inventoryId" - :label=" - item.locationName + - ' ' + - '批次号: ' + - item.lotNumber + - ' ' + - ' 库存:' + - stockFormat( - scope.row.partPercent, - scope.row.unitCode_dictText, - scope.row.minUnitCode_dictText, - item.quantity - ) + - ' 单价:' + - item.price.toFixed(2) + - '/' + - item.unitCode_dictText - " + :label="item.locationName" @click="handleNumberClick(item, scope.$index)" /> @@ -390,24 +373,7 @@ v-for="item in scope.row.stockList" :key="item.lotNumber" :value="item.lotNumber" - :label=" - item.locationName + - ' ' + - '批次号: ' + - item.lotNumber + - ' ' + - ' 库存:' + - stockFormat( - scope.row.partPercent, - scope.row.unitCode_dictText, - scope.row.minUnitCode_dictText, - item.quantity - ) + - ' 单价:' + - item.price.toFixed(2) + - '/' + - item.unitCode_dictText - " + :label="item.locationName " @click="handleNumberClick(item, scope.$index)" />