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)