From 8a6f996f83b198401bcd664e7abe931d4c6cba78 Mon Sep 17 00:00:00 2001 From: jinna Date: Mon, 30 Mar 2026 22:17:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/productionTesting/components/trialItem.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/productionTesting/components/trialItem.vue b/src/views/productionTesting/components/trialItem.vue index 43d7b21..049d8ee 100644 --- a/src/views/productionTesting/components/trialItem.vue +++ b/src/views/productionTesting/components/trialItem.vue @@ -349,6 +349,9 @@ export default { this.loading = true; getList({ current: this.page.currentPage, size: this.page.pageSize, ...this.search }).then( res => { + res.data.data.records.map(item =>{ + item.standardWorkMinute = item.standardWorkMinute == -1 ? '' : item.standardWorkMinute + }) this.data = res.data.data.records; this.page.total = res.data.data.total; this.loading = false;