| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import { BasicColumn } from '/@/components/Table';
- //列表数据
- export const columns: BasicColumn[] = [
- {
- title: '序号',
- align: 'center',
- dataIndex: 'index',
- width: 60,
- customRender: ({ index }) => index + 1,
- },
- {
- title: '统一信用代码',
- align: 'center',
- dataIndex: 'unifiedCreditCode',
- width: 170,
- },
- {
- title: '单位名称',
- align: 'center',
- dataIndex: 'companyName',
- width: 200,
- },
- {
- title: '单位类型',
- align: 'center',
- dataIndex: 'companyType',
- width: 120,
- },
- {
- title: '所属行业',
- align: 'center',
- dataIndex: 'industry',
- width: 120,
- },
- {
- title: '注册地址',
- align: 'center',
- dataIndex: 'regAddrDistrict',
- width: 150,
- },
- {
- title: '经营地址',
- align: 'center',
- dataIndex: 'officeAddress',
- width: 200,
- },
- {
- title: '企业规模',
- align: 'center',
- dataIndex: 'staffSize',
- width: 100,
- },
- {
- title: '是否重点企业',
- align: 'center',
- dataIndex: 'isKeyEnterprise',
- width: 120,
- },
- {
- title: '单位标签',
- align: 'center',
- dataIndex: 'tagNames',
- width: 200,
- },
- {
- title: '经营状态',
- align: 'center',
- dataIndex: 'businessStatus',
- width: 100,
- },
- {
- title: '当前岗位数',
- align: 'center',
- dataIndex: 'postCount',
- width: 100,
- },
- {
- title: '数据来源',
- align: 'center',
- dataIndex: 'dataSource',
- width: 100,
- },
- ];
- // 高级查询数据
- export const superQuerySchema = {
- companyName: { title: '单位名称', order: 0, view: 'text', type: 'string' },
- unifiedCreditCode: { title: '统一社会信用代码', order: 1, view: 'text', type: 'string' },
- orgCode: { title: '组织机构代码', order: 2, view: 'text', type: 'string' },
- businessStatus: { title: '经营状态', order: 3, view: 'text', type: 'string' },
- registeredCapital: { title: '注册资本', order: 4, view: 'text', type: 'string' },
- companyType: { title: '单位类型', order: 5, view: 'text', type: 'string' },
- economyType: { title: '经济类型', order: 6, view: 'text', type: 'string' },
- industry: { title: '所属行业', order: 7, view: 'text', type: 'string' },
- industryField: { title: '行业领域', order: 8, view: 'text', type: 'string' },
- industryAdminDept: { title: '行业主管部门', order: 9, view: 'text', type: 'string' },
- industryTag: { title: '产业标签', order: 10, view: 'text', type: 'string' },
- companyPropertyTag: { title: '单位属性标签', order: 11, view: 'text', type: 'string' },
- provinceOrCity: { title: '省属或所属地市', order: 12, view: 'text', type: 'string' },
- companyAttribute: { title: '单位属性', order: 13, view: 'text', type: 'string' },
- isListedCompany: { title: '是否上市公司', order: 14, view: 'text', type: 'string' },
- isHeadEnterprise: { title: '是否为头部企业', order: 15, view: 'text', type: 'string' },
- isKeyEnterprise: { title: '是否为重点企业', order: 16, view: 'text', type: 'string' },
- isKeyInstitution: { title: '是否为重点事业单位', order: 17, view: 'text', type: 'string' },
- isStrategicIndustry: { title: '是否属于20个战略性产业集群', order: 18, view: 'text', type: 'string' },
- dataSource: { title: '数据来源', order: 19, view: 'text', type: 'string' },
- tagNames: { title: '单位标签', order: 20, view: 'text', type: 'string' },
- staffSize: { title: '人员规模', order: 21, view: 'text', type: 'string' },
- contactPerson: { title: '联系人', order: 22, view: 'text', type: 'string' },
- contactPhone: { title: '联系方式', order: 23, view: 'text', type: 'string' },
- email: { title: '电子邮箱', order: 24, view: 'text', type: 'string' },
- };
|