From 3b130cfd5384d25020a4fe91c7e0bb9ea36214ea Mon Sep 17 00:00:00 2001 From: XingQue Date: Sat, 27 Jun 2026 02:38:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=8D=8F=E8=AE=AE=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BC=BA=E5=88=B6=E7=AD=BE=E7=BD=B2=E5=BC=80?= =?UTF-8?q?=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- src/views/miniapp/XieyiManage.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/miniapp/XieyiManage.vue b/src/views/miniapp/XieyiManage.vue index 0588c80..65aa6bb 100644 --- a/src/views/miniapp/XieyiManage.vue +++ b/src/views/miniapp/XieyiManage.vue @@ -99,6 +99,10 @@ + + + 开启后未签署将无法接单/派单 + 修改内容后开启,用户需重新签署 @@ -136,6 +140,7 @@ const form = reactive({ content_text: '', sort_order: 0, is_active: true, + must_sign: true, bump_version: false, images: [], }) @@ -186,6 +191,7 @@ const openEdit = (row) => { content_text: row.content_text || '', sort_order: row.sort_order || 0, is_active: row.is_active, + must_sign: row.must_sign ?? true, bump_version: false, images: row.images || [], }) @@ -199,6 +205,7 @@ const openEdit = (row) => { content_text: '', sort_order: 0, is_active: true, + must_sign: true, bump_version: false, images: [], }) @@ -224,6 +231,7 @@ const saveForm = async () => { content_text: form.content_text, sort_order: form.sort_order, is_active: form.is_active, + must_sign: form.must_sign, bump_version: form.bump_version, } const res = await request.post('/houtai/htxgxy', payload)