From 170c89b9b8e6d5c3117d53e7b38f782651ebfcde Mon Sep 17 00:00:00 2001
From: futian.liu <liufutianyoo@163.com>
Date: 星期五, 22 十二月 2023 14:04:04 +0800
Subject: [PATCH] 物品统计表中总数量改为在库数量+报废数量

---
 admin-web/src/views/stock/transfer/transferApplication/detail.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/admin-web/src/views/stock/transfer/transferApplication/detail.vue b/admin-web/src/views/stock/transfer/transferApplication/detail.vue
index f4c453a..d537880 100644
--- a/admin-web/src/views/stock/transfer/transferApplication/detail.vue
+++ b/admin-web/src/views/stock/transfer/transferApplication/detail.vue
@@ -66,7 +66,7 @@
         </el-table-column>
         <el-table-column prop="price" label="閲戦" align="center">
           <template slot-scope="scope">
-            {{ scope.row.price }}
+            {{ scope.row.totalAmount }}
           </template>
         </el-table-column>
       </el-table>
@@ -77,7 +77,7 @@
         <img
             v-if="checkImg(src.name)"
             class="v-img"
-            :src="src.url"
+            :src="getUrl(src.path)"
             :alt="src.name"
             style="width: 100px; height: 100px"
         />

--
Gitblit v1.9.1