From 1b879addc786dbf998260c9f724f0e45f245750e Mon Sep 17 00:00:00 2001 From: wzk <2438381872@qq.com> Date: Mon, 3 Nov 2025 16:14:52 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=A8=E8=AF=8A=E5=8C=BB=E7=94=9F=E5=BC=80?= =?UTF-8?q?=E5=A4=84=E6=96=B9=E5=8D=95=EF=BC=8C=E7=B3=BB=E7=BB=9F=E6=8A=8A?= =?UTF-8?q?=E8=8D=AF=E5=93=81=E6=97=A0=E8=AE=BA=E6=98=AF=E8=8D=AF=E5=BA=93?= =?UTF-8?q?=E6=88=96=E8=8D=AF=E6=88=BF=E6=9C=89=E7=9A=84=E5=BA=93=E5=AD=98?= =?UTF-8?q?=E9=83=BD=E6=98=BE=E7=A4=BA=E5=87=BA=E6=9D=A5=E4=BA=86=E3=80=82?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=98=BE=E7=A4=BA=E5=8F=AA=E6=9C=89=E8=8D=AF?= =?UTF-8?q?=E6=88=BF=E7=9A=84=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../prescription/prescriptionlist.vue | 38 +------------------ 1 file changed, 2 insertions(+), 36 deletions(-) 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)" />