|
|
|
|
@ -8,6 +8,7 @@ import {
|
|
|
|
|
xcsjNowStatusOptions,
|
|
|
|
|
xcsjMapTypeOptions,
|
|
|
|
|
} from '@/utils/global';
|
|
|
|
|
import { yongtufenleiOptions } from '@/components/farmland/util'
|
|
|
|
|
|
|
|
|
|
export const columns: BasicColumn[] = [
|
|
|
|
|
{
|
|
|
|
|
@ -163,33 +164,29 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'nowStatus',
|
|
|
|
|
field: 'is_chuzhiwancheng',
|
|
|
|
|
label: '处置情况',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
componentProps: {
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '未处置', value: '未处置' },
|
|
|
|
|
{ label: '拟处置', value: '拟处置' },
|
|
|
|
|
{ label: '已处置', value: '已处置' },
|
|
|
|
|
{ label: '未处置', value: '' },
|
|
|
|
|
{ label: '拟处置', value: '否' },
|
|
|
|
|
{ label: '已处置', value: '是' },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'isIllegal',
|
|
|
|
|
field: 'yongtufenlei',
|
|
|
|
|
label: '用途分类',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: {
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '产业类', value: '产业类' },
|
|
|
|
|
{ label: '公共管理服务类', value: '公共管理服务类' },
|
|
|
|
|
{ label: '设施农业类', value: '设施农业类' },
|
|
|
|
|
],
|
|
|
|
|
options: yongtufenleiOptions,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'measureName',
|
|
|
|
|
field: 'measure_name',
|
|
|
|
|
label: '整改措施',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
@ -202,29 +199,37 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'measureName',
|
|
|
|
|
field: 'is_fuheguihua',
|
|
|
|
|
label: '是否符合规划',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
componentProps: {
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '是', value: '是' },
|
|
|
|
|
{ label: '否', value: '否' },
|
|
|
|
|
{ label: '是', value: 1 },
|
|
|
|
|
{ label: '否', value: 0 },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'nowStatus',
|
|
|
|
|
field: 'handle_status_name',
|
|
|
|
|
label: '当前状态',
|
|
|
|
|
component: 'Select',
|
|
|
|
|
componentProps: {
|
|
|
|
|
options: [],
|
|
|
|
|
options: [
|
|
|
|
|
{ label: '待填报', value: 1 },
|
|
|
|
|
{ label: '已完成', value: 5 },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
colProps: { span: 4 },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
field: 'caseNo',
|
|
|
|
|
field: 'case_name',
|
|
|
|
|
label: '项目名称',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 5 },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'case_no',
|
|
|
|
|
label: '线索编号',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
colProps: { span: 5 },
|
|
|
|
|
|