68 lines
2.0 KiB
TypeScript
68 lines
2.0 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: 'status_dictText'
|
||
|
},
|
||
|
{
|
||
|
title: '咨询人姓名',
|
||
|
align: "center",
|
||
|
dataIndex: 'name'
|
||
|
},
|
||
|
{
|
||
|
title: '性别',
|
||
|
align: "center",
|
||
|
dataIndex: 'sex'
|
||
|
},
|
||
|
{
|
||
|
title: '联系电话',
|
||
|
align: "center",
|
||
|
dataIndex: 'tel'
|
||
|
},
|
||
|
{
|
||
|
title: '申请日期',
|
||
|
align: "center",
|
||
|
dataIndex: 'createTime'
|
||
|
},
|
||
|
{
|
||
|
title: '机构地址',
|
||
|
align: "center",
|
||
|
dataIndex: 'orgAddress'
|
||
|
},
|
||
|
{
|
||
|
title: '机构负责人电话',
|
||
|
align: "center",
|
||
|
dataIndex: 'orgLeaderPhone'
|
||
|
},
|
||
|
{
|
||
|
title: '机构房屋性质',
|
||
|
align: "center",
|
||
|
dataIndex: 'orgPropertyType'
|
||
|
},
|
||
|
{
|
||
|
title: '机构建筑面积',
|
||
|
align: "center",
|
||
|
dataIndex: 'orgBuildingArea'
|
||
|
},
|
||
|
];
|
||
|
|
||
|
// 高级查询数据
|
||
|
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',},
|
||
|
};
|