From 5a8dd8ca39fedd291d6d31adaaa1c9832307b0ab Mon Sep 17 00:00:00 2001 From: lbw_9527443 <780139497@qq.com> Date: Fri, 6 Feb 2026 18:36:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=E8=A1=A8=E5=8D=95=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E2=80=9C=E5=AE=A2=E6=88=B7=E6=9C=AA=E5=A1=AB=E5=86=99=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新错误提示信息以更准确地反映实际情况,当用户没有填写表单时显示更友好的提示。 --- 247_Contry/src/views/index/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/247_Contry/src/views/index/index.vue b/247_Contry/src/views/index/index.vue index 3198cca..1c5752d 100644 --- a/247_Contry/src/views/index/index.vue +++ b/247_Contry/src/views/index/index.vue @@ -292,7 +292,7 @@ const fetchUserForms = async (userId: string) => { userForms.value = res.data; } else { userForms.value = []; - formsError.value = '表单数据格式错误'; + formsError.value = '客户未填写表单'; } console.log('userForms:', userForms.value); } catch (error) {