From 2bd9ddd56697e202a443d04139f854afa2559e95 Mon Sep 17 00:00:00 2001 From: WangHan <wwh_work@126.com> Date: 星期一, 29 四月 2024 14:26:58 +0800 Subject: [PATCH] 漏洞修改 --- admin-web/src/views/stock/accessStock/outbound/detail.vue | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/admin-web/src/views/stock/accessStock/outbound/detail.vue b/admin-web/src/views/stock/accessStock/outbound/detail.vue index ff58e36..d09af1a 100644 --- a/admin-web/src/views/stock/accessStock/outbound/detail.vue +++ b/admin-web/src/views/stock/accessStock/outbound/detail.vue @@ -59,9 +59,9 @@ {{ scope.row.counts }} </template> </el-table-column> - <el-table-column prop="counts" label="閲戦" align="center"> + <el-table-column prop="totalAmount" label="閲戦" align="center"> <template slot-scope="scope"> - {{ scope.row.price * scope.row.counts | formatPrice}} + {{ scope.row.totalAmount}} </template> </el-table-column> </el-table> @@ -118,9 +118,6 @@ formatTime(time) { if (!time) return; return DateFormatter.LongToDateTime(time); - }, - formatPrice(price) { - return price / 100 } }, created() { -- Gitblit v1.9.1