58 lines
1.9 KiB
TypeScript
58 lines
1.9 KiB
TypeScript
import { BasicColumn } from '/@/components/Table';
|
|
import { FormSchema } from '/@/components/Table';
|
|
import { rules } from '/@/utils/helper/validator';
|
|
import { render } from '/@/utils/common/renderUtils';
|
|
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '企业名称',
|
|
align: 'center',
|
|
dataIndex: 'comName',
|
|
},
|
|
{
|
|
title: '机构负责人',
|
|
align: 'center',
|
|
dataIndex: 'orgLeader',
|
|
},
|
|
{
|
|
title: '机构负责人电话',
|
|
align: 'center',
|
|
dataIndex: 'orgLeaderPhone',
|
|
},
|
|
{
|
|
title: '申请日期',
|
|
align: 'center',
|
|
dataIndex: 'createTime',
|
|
},
|
|
{
|
|
title: '房屋性质',
|
|
align: 'center',
|
|
dataIndex: 'orgPropertyType',
|
|
},
|
|
{
|
|
title: '面积',
|
|
align: 'center',
|
|
dataIndex: 'orgBuildingArea',
|
|
},
|
|
{
|
|
title: '审批意见',
|
|
align: 'center',
|
|
dataIndex: 'status_dictText',
|
|
},
|
|
];
|
|
|
|
// 高级查询数据
|
|
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' },
|
|
};
|