From 63cf45a7aed8c23f66356f8ca0ee2cb64d9aa8da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=86=8A=E6=88=90=E5=BC=BA?= Date: Tue, 10 Nov 2020 10:46:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/kpi/assessment/performance/components/table.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/kpi/assessment/performance/components/table.vue b/src/views/kpi/assessment/performance/components/table.vue index 30e9652..bcee8ba 100644 --- a/src/views/kpi/assessment/performance/components/table.vue +++ b/src/views/kpi/assessment/performance/components/table.vue @@ -166,7 +166,7 @@ export default { }, async handleGetNext () { this.loadingTi = true - let res1 = await apiSaveDetail(Object.assign({}, this.score, this.obj)) + let res1 = await apiSaveDetail(Object.assign({}, this.obj, this.score)) if (res1.code !== 200) { this.$message.error(res1.msg) this.loadingTi = false @@ -194,7 +194,7 @@ export default { if (res.code !== 200) return this.scoreList = res.data }, - async handleSaveDetail (params = this.obj) { + async handleSaveDetail (params = Object.assign({}, this.obj, this.score)) { this.loadingZan = true let res = await apiSaveDetail(params) this.loadingZan = false