hldy_vue/src/views/biz/orgapplyinfo/OrgApplyInfo.data.ts

68 lines
2.0 KiB
TypeScript
Raw Normal View History

import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { rules } from '/@/utils/helper/validator';
2025-06-09 14:46:36 +08:00
import { render } from '/@/utils/common/renderUtils';
import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
2025-06-27 15:24:03 +08:00
title: '姓名',
align: 'center',
dataIndex: 'name',
2025-06-09 14:46:36 +08:00
},
{
title: '性别',
align: 'center',
dataIndex: 'sex',
2025-06-09 14:46:36 +08:00
},
{
title: '联系电话',
align: 'center',
dataIndex: 'tel',
2025-06-09 14:46:36 +08:00
},
{
title: '申请日期',
align: 'center',
dataIndex: 'createTime',
2025-06-09 14:46:36 +08:00
},
{
title: '机构地址',
align: 'center',
dataIndex: 'orgAddress',
2025-06-09 14:46:36 +08:00
},
{
title: '机构负责人电话',
align: 'center',
dataIndex: 'orgLeaderPhone',
2025-06-09 14:46:36 +08:00
},
{
title: '机构房屋性质',
align: 'center',
dataIndex: 'orgPropertyType',
2025-06-09 14:46:36 +08:00
},
{
title: '机构建筑面积',
align: 'center',
dataIndex: 'orgBuildingArea',
},
{
title: '审批状态',
align: 'center',
dataIndex: 'status_dictText',
},
2025-06-09 14:46:36 +08:00
];
// 高级查询数据
export const superQuerySchema = {
tel: { title: '联系电话', order: 2, view: 'text', type: 'string' },
status: { title: '状态 1审核中 2审核完成 3驳回 ', order: 3, view: 'list', type: 'string', dictCode: '' },
createTime: { title: '创建日期', order: 5, view: 'datetime', type: 'string' },
izEntry: { title: '机构是否入驻0否 1是(是否入驻过)', order: 7, view: 'list', type: 'string', dictCode: '' },
name: { title: '咨询人姓名', order: 8, view: 'text', type: 'string' },
sex: { title: '性别', order: 9, view: 'text', type: 'string' },
orgAddress: { title: '机构地址', order: 24, view: 'text', type: 'string' },
orgLeaderPhone: { title: '机构负责人电话', order: 27, view: 'text', type: 'string' },
orgPropertyType: { title: '机构房屋性质', order: 29, view: 'text', type: 'string' },
orgBuildingArea: { title: '机构建筑面积', order: 30, view: 'number', type: 'number' },
2025-06-09 14:46:36 +08:00
};