石超 2025-07-31 08:55:57 +08:00
commit 8a0694ee49
3 changed files with 12 additions and 4 deletions

View File

@ -201,6 +201,14 @@ export const nowStatusOptions = [
{ label: '待填报', value: '待填报' }, { label: '待填报', value: '待填报' },
{ label: '已归档', value: '已归档' }, { label: '已归档', value: '已归档' },
]; ];
export const xcsjNowStatusOptions = [
{ label: '待接收', value: '待接收' },
{ label: '待填报', value: '待填报' },
{ label: '待整改', value: '待整改' },
{ label: '市级审核', value: '市级审核' },
{ label: '县级审核', value: '县级审核' },
{ label: '已归档', value: '已归档' },
];
//获取近7个月的时间 //获取近7个月的时间
export const getMonth = () => { export const getMonth = () => {
//创建现在的时间 //创建现在的时间

View File

@ -13,7 +13,7 @@
showArrow showArrow
mode="multiple" mode="multiple"
v-model:value="nowStatus" v-model:value="nowStatus"
:options="nowStatusOptions" :options="xcsjNowStatusOptions"
:max-tag-count="1" :max-tag-count="1"
placeholder="请选择" placeholder="请选择"
@change="changeStatus" @change="changeStatus"
@ -109,7 +109,7 @@
import { PageWrapper } from '@/components/Page'; import { PageWrapper } from '@/components/Page';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import { message } from 'ant-design-vue'; import { message } from 'ant-design-vue';
import { nowStatusOptions } from '@/utils/global'; import { xcsjNowStatusOptions } from '@/utils/global';
const { VITE_GLOB_API_URL } = getAppEnvConfig(); const { VITE_GLOB_API_URL } = getAppEnvConfig();

View File

@ -5,7 +5,7 @@ import {
patchSourceOptions, patchSourceOptions,
yearOptions, yearOptions,
markTypeOptions, markTypeOptions,
nowStatusOptions, xcsjNowStatusOptions,
mapTypeOptions, mapTypeOptions,
} from '@/utils/global'; } from '@/utils/global';
@ -194,7 +194,7 @@ export const searchFormSchema: FormSchema[] = [
label: '当前状态', label: '当前状态',
component: 'Select', component: 'Select',
componentProps: { componentProps: {
options: nowStatusOptions, options: xcsjNowStatusOptions,
}, },
colProps: { span: 4 }, colProps: { span: 4 },
slot: 'dangqianzhuangtai', slot: 'dangqianzhuangtai',