From 600bfd869906318840338ca5b12bf46769f176ac Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Tue, 24 Sep 2024 11:14:55 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=96=B0=E5=A2=9E=E5=BA=95=E9=83=A8=E5=AF=BC?= =?UTF-8?q?=E8=88=AA=E5=8D=95=E7=8B=AC=E9=85=8D=E7=BD=AE=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tabbar/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/tabbar/index.vue b/src/views/tabbar/index.vue index a9f8f68c..1fa71982 100644 --- a/src/views/tabbar/index.vue +++ b/src/views/tabbar/index.vue @@ -71,8 +71,12 @@ const loading_event = () => { //#region 顶部导航回调方法 ---------------------start const save_event = () => { const clone_form = cloneDeep(form.value); + const new_data = { + type: 'home', + config: clone_form, + }; // 数据改造 - DiyAPI.saveTabbar(clone_form).then((res: any) => { + DiyAPI.saveTabbar(new_data).then((res: any) => { // 如果是导出或预览模式,则不显示保存成功的消息 ElMessage.success('保存成功'); });