From e92f6a6ee67c2ac291ebaea0ed793d7fe7aecb56 Mon Sep 17 00:00:00 2001 From: zhufu <17863654727@163.com> Date: Sat, 2 Aug 2025 09:45:50 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E8=BF=9D=E6=B3=95=E7=94=A8=E5=9C=B0-?= =?UTF-8?q?=E7=BA=BF=E7=B4=A2=E5=88=97=E8=A1=A8-=E5=BD=93=E5=89=8D?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/global.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/global.ts b/src/utils/global.ts index bafbffef..b40d060d 100644 --- a/src/utils/global.ts +++ b/src/utils/global.ts @@ -211,6 +211,7 @@ export const newQitaUseTOOptions = [ export const nowStatusOptions = [ { label: '待接收', value: '待接收' }, { label: '待填报', value: '待填报' }, + { label: '待确认', value: '待确认' }, { label: '已归档', value: '已归档' }, ]; export const xcsjNowStatusOptions = [ From 7099e7ef8105f1e300b17ef5c597c8696f756b88 Mon Sep 17 00:00:00 2001 From: zhufu <17863654727@163.com> Date: Mon, 4 Aug 2025 17:01:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=98=AF=E5=90=A6=E4=B8=8A=E4=BC=A0=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E7=AD=9B=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/demo/tiankongdi/auditlist/utils.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/views/demo/tiankongdi/auditlist/utils.ts b/src/views/demo/tiankongdi/auditlist/utils.ts index 2bd060a9..00a4cb86 100644 --- a/src/views/demo/tiankongdi/auditlist/utils.ts +++ b/src/views/demo/tiankongdi/auditlist/utils.ts @@ -226,6 +226,18 @@ export const searchFormSchema: FormSchema[] = [ placeholder: ['开始日期', '结束日期'], }, }, + { + field: 'pictureflag', + label: '是否上传图片', + component: 'Select', + colProps: { span: 4 }, + componentProps: { + options: [ + { label: '已上传', value: true }, + { label: '未上传', value: false }, + ], + }, + }, { field: 'caseNo', label: '线索编号',