From 5e11d346c870b421ea75918348a67ae2a6089416 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 19 Sep 2024 17:08:54 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=B8=82=E5=9C=BA=E6=B3=95=E8=A7=84?= =?UTF-8?q?=E6=B8=85=E5=8D=95=E4=B8=8A=E7=A7=BB=E4=B8=8B=E7=A7=BB=E4=BC=A0?= =?UTF-8?q?=E5=8F=82=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../marketRegulationsList/MarketRegulationsFormPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue index b20bfa9..8d8d445 100644 --- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue @@ -745,8 +745,8 @@ export default { handleUp (record) { this.loading = true const param = {} - param.id = this.model.id - param.manifestId = record.id + param.manifestId = this.model.id + param.id = record.id param.moveFlag = 'up' marketRegulationDetailMove(param).then(res => { if (res.success) { @@ -762,8 +762,8 @@ export default { handleDown (record) { this.loading = true const param = {} - param.id = this.model.id - param.manifestId = record.id + param.manifestId = this.model.id + param.id = record.id param.moveFlag = 'down' marketRegulationDetailMove(param).then(res => { if (res.success) {