From fb145199400bfdc523ea10d4409bd783f0bb7fcf Mon Sep 17 00:00:00 2001 From: "zyx.net" Date: Wed, 6 Sep 2023 15:58:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=AA=E7=AC=A6=E5=90=88=E9=A1=B9=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/projectManagement/components/nonConformance.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/nonConformance.vue b/jero-web/src/views/projectManagement/components/nonConformance.vue index 103d035f9..f2fbcb51b 100644 --- a/jero-web/src/views/projectManagement/components/nonConformance.vue +++ b/jero-web/src/views/projectManagement/components/nonConformance.vue @@ -266,7 +266,7 @@ export default { { title: this.$t('creator'), align: 'left', - dataIndex: 'creator', + dataIndex: 'createBy', width: 100, sorter:true, ellipsis: true @@ -411,12 +411,12 @@ export default { this.loading = true getAction(this.url.page, query).then((res) => { if (res.success) { - if (res.result.current > 1 && res.result.records.length == 0) { + if (res.result.current > 1 && res.result.length == 0) { this.pageNo = 1 this.getList() return } - this.dataSource = res.result.records || [] + this.dataSource = res.result || [] this.total = res.result.total this.loading = false } else {