From 54fef31c4701934547e7e9bf835b0dd5fe1dfcb4 Mon Sep 17 00:00:00 2001 From: zhufu <17863654727@163.com> Date: Thu, 31 Jul 2025 08:55:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A1=E6=9F=A5=E5=AE=A1=E8=AE=A1-=E5=9B=BE?= =?UTF-8?q?=E6=96=91=E5=88=97=E8=A1=A8-=E5=BD=93=E5=89=8D=E7=8A=B6?= =?UTF-8?q?=E6=80=81Options=E5=86=85=E5=AE=B9=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/global.ts | 8 ++++++++ src/views/demo/inspectionaudit/patchsummary/index.vue | 4 ++-- .../inspectionaudit/patchsummary/patchsummary.data.ts | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/utils/global.ts b/src/utils/global.ts index f0847fd6..ff214bc4 100644 --- a/src/utils/global.ts +++ b/src/utils/global.ts @@ -201,6 +201,14 @@ export const nowStatusOptions = [ { label: '待填报', value: '待填报' }, { label: '已归档', value: '已归档' }, ]; +export const xcsjNowStatusOptions = [ + { label: '待接收', value: '待接收' }, + { label: '待填报', value: '待填报' }, + { label: '待整改', value: '待整改' }, + { label: '市级审核', value: '市级审核' }, + { label: '县级审核', value: '县级审核' }, + { label: '已归档', value: '已归档' }, +]; //获取近7个月的时间 export const getMonth = () => { //创建现在的时间 diff --git a/src/views/demo/inspectionaudit/patchsummary/index.vue b/src/views/demo/inspectionaudit/patchsummary/index.vue index 859afe24..8565f484 100644 --- a/src/views/demo/inspectionaudit/patchsummary/index.vue +++ b/src/views/demo/inspectionaudit/patchsummary/index.vue @@ -13,7 +13,7 @@ showArrow mode="multiple" v-model:value="nowStatus" - :options="nowStatusOptions" + :options="xcsjNowStatusOptions" :max-tag-count="1" placeholder="请选择" @change="changeStatus" @@ -109,7 +109,7 @@ import { PageWrapper } from '@/components/Page'; import dayjs from 'dayjs'; import { message } from 'ant-design-vue'; - import { nowStatusOptions } from '@/utils/global'; + import { xcsjNowStatusOptions } from '@/utils/global'; const { VITE_GLOB_API_URL } = getAppEnvConfig(); diff --git a/src/views/demo/inspectionaudit/patchsummary/patchsummary.data.ts b/src/views/demo/inspectionaudit/patchsummary/patchsummary.data.ts index 9f717448..fb36a556 100644 --- a/src/views/demo/inspectionaudit/patchsummary/patchsummary.data.ts +++ b/src/views/demo/inspectionaudit/patchsummary/patchsummary.data.ts @@ -5,7 +5,7 @@ import { patchSourceOptions, yearOptions, markTypeOptions, - nowStatusOptions, + xcsjNowStatusOptions, mapTypeOptions, } from '@/utils/global'; @@ -194,7 +194,7 @@ export const searchFormSchema: FormSchema[] = [ label: '当前状态', component: 'Select', componentProps: { - options: nowStatusOptions, + options: xcsjNowStatusOptions, }, colProps: { span: 4 }, slot: 'dangqianzhuangtai',