From 51dc012101ddde53ec1c3e4d455dbeb6d33ff9f6 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 19 Sep 2024 16:48:22 +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=EF=BC=8C=E6=B8=85=E5=8D=95=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8E=92=E5=BA=8F=E5=AD=97=E6=AE=B5=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=8A=E7=A7=BB=E4=B8=8B=E7=A7=BB=E6=8C=89?= =?UTF-8?q?=E9=92=AE=EF=BC=9B=E5=A4=96=E6=A0=87=E8=AF=A6=E6=83=85=E9=A1=B5?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E7=AE=80=E4=BB=8B=E6=95=B4=E8=A1=8C=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MarketRegulationsFormPage.vue | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue index a107f07..b20bfa9 100644 --- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue @@ -754,12 +754,26 @@ export default { this.loadData() } else { this.$message.warning(res.message) + this.loading = false } }) }, // 下移 - handleDown () { - + handleDown (record) { + this.loading = true + const param = {} + param.id = this.model.id + param.manifestId = record.id + param.moveFlag = 'down' + marketRegulationDetailMove(param).then(res => { + if (res.success) { + this.$message.success(res.message) + this.loadData() + } else { + this.$message.warning(res.message) + this.loading = false + } + }) }, // 编辑 handleEdit (record) {