refactor(credit): 调整信用模块数据结构和界面展示

- 修改CreditFinalVersion和CreditGqdj接口字段定义,调整字段顺序和内容
- 移除搜索工具栏中的添加按钮,暂时禁用该功能
- 更新行政许可编辑弹窗样式,设置宽度为70%并移除底部操作按钮
- 移除行政许可编辑表单中的多个冗余字段,精简表单内容
- 为信用相关表格组件添加选择功能和横向滚动支持
- 调整多个信用模块表格列配置,移除省略号显示,优化列标题
- 隐藏表格操作列,暂时禁用行操作功能
- 更新企业信息表格字段配置,增加更多企业相关信息列
- 调整企业表格显示逻辑,将名称替换为匹配名称进行展示
- 为多个信用模块表格添加复选框选择功能
- 移除部分表格中的备注字段,简化数据显示
- 注释掉行双击编辑事件,暂停双击编辑功能
This commit is contained in:
2026-01-19 14:21:24 +08:00
parent 463636578d
commit 1031ed9199
23 changed files with 695 additions and 705 deletions

View File

@@ -6,28 +6,17 @@ import type { PageParam } from '@/api';
export interface CreditFinalVersion { export interface CreditFinalVersion {
// ID // ID
id?: number; id?: number;
// 数据类型
dataType?: string;
// 原告/上诉人
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间
occurrenceTime?: string;
// 案号 // 案号
caseNumber?: string; caseNumber?: string;
// 案由 appellee?: string;
causeOfAction?: string; plaintiffAppellant?: string;
// 涉案金额 unfulfilledAmount?: string;
involvedAmount?: string; involvedAmount?: string;
// 法院
courtName?: string; courtName?: string;
// 数据状态 occurrenceTime?: string;
dataStatus?: string; finalDate?: string;
// 链接地址
url?: string;
// 备注 // 备注
comments?: string; comments?: string;
// 是否推荐 // 是否推荐

View File

@@ -6,28 +6,34 @@ import type { PageParam } from '@/api';
export interface CreditGqdj { export interface CreditGqdj {
// ID // ID
id?: number; id?: number;
// 数据类型 // 执行通知文书号
dataType?: string; caseNumber?: string;
// 原告/上诉 // 被执行
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string; appellee?: string;
// 冻结股权标的企业
plaintiffAppellant?: string;
// 被执行人持有股权、其他投资权益数额
involvedAmount?: string;
// 执行法院
courtName?: string;
// 类型
dataType?: string;
// 状态
dataStatus?: string;
// 冻结日期自
freezeDateStart?: string;
// 冻结日期至
freezeDateEnd?: string;
// 公示日期
publicDate?: string;
// 链接地址 // 链接地址
url?: string; url?: string;
// 其他当事人/第三人 // 其他当事人/第三人
otherPartiesThirdParty?: string; otherPartiesThirdParty?: string;
// 发生时间 // 发生时间
occurrenceTime?: string; occurrenceTime?: string;
// 案号
caseNumber?: string;
// 案由 // 案由
causeOfAction?: string; causeOfAction?: string;
// 涉案金额
involvedAmount?: string;
// 法院
courtName?: string;
// 数据状态
dataStatus?: string;
// 备注 // 备注
comments?: string; comments?: string;
// 是否推荐 // 是否推荐

View File

@@ -1,12 +1,12 @@
<!-- 信用模块通用工具栏 --> <!-- 信用模块通用工具栏 -->
<template> <template>
<a-space :size="10" style="flex-wrap: wrap"> <a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="add"> <!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
<template #icon> <!-- <template #icon>-->
<PlusOutlined /> <!-- <PlusOutlined />-->
</template> <!-- </template>-->
<span>添加</span> <!-- <span>添加</span>-->
</a-button> <!-- </a-button>-->
<a-button class="ele-btn-icon" @click="openImport"> <a-button class="ele-btn-icon" @click="openImport">
<template #icon> <template #icon>
<CloudUploadOutlined /> <CloudUploadOutlined />

View File

@@ -1,13 +1,14 @@
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<template> <template>
<ele-modal <ele-modal
:width="800" width="70%"
:visible="visible" :visible="visible"
:maskClosable="false" :maskClosable="false"
:maxable="maxable" :maxable="maxable"
:title="isUpdate ? '编辑行政许可' : '添加行政许可'" :title="isUpdate ? '行政许可详情' : '添加行政许可'"
:body-style="{ paddingBottom: '28px' }" :body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible" @update:visible="updateVisible"
:footer="null"
@ok="save" @ok="save"
> >
<a-form <a-form
@@ -47,13 +48,6 @@
v-model:value="form.type" v-model:value="form.type"
/> />
</a-form-item> </a-form-item>
<a-form-item label="链接" name="url">
<a-input
allow-clear
placeholder="请输入链接"
v-model:value="form.url"
/>
</a-form-item>
<a-form-item label="有效期自" name="validityStart"> <a-form-item label="有效期自" name="validityStart">
<a-input <a-input
allow-clear allow-clear
@@ -89,64 +83,6 @@
v-model:value="form.dataSourceUnit" v-model:value="form.dataSourceUnit"
/> />
</a-form-item> </a-form-item>
<a-form-item label="备注" name="comments">
<a-textarea
:rows="4"
:maxlength="200"
placeholder="请输入描述"
v-model:value="form.comments"
/>
</a-form-item>
<a-form-item label="企业ID" name="companyId">
<a-input
allow-clear
placeholder="请输入企业ID"
v-model:value="form.companyId"
/>
</a-form-item>
<a-form-item label="是否推荐" name="recommend">
<a-input
allow-clear
placeholder="请输入是否推荐"
v-model:value="form.recommend"
/>
</a-form-item>
<a-form-item label="排序(数字越小越靠前)" name="sortNumber">
<a-input-number
:min="0"
:max="9999"
class="ele-fluid"
placeholder="请输入排序号"
v-model:value="form.sortNumber"
/>
</a-form-item>
<a-form-item label="状态, 0正常, 1冻结" name="status">
<a-radio-group v-model:value="form.status">
<a-radio :value="0">显示</a-radio>
<a-radio :value="1">隐藏</a-radio>
</a-radio-group>
</a-form-item>
<a-form-item label="是否删除, 0否, 1是" name="deleted">
<a-input
allow-clear
placeholder="请输入是否删除, 0否, 1是"
v-model:value="form.deleted"
/>
</a-form-item>
<a-form-item label="用户ID" name="userId">
<a-input
allow-clear
placeholder="请输入用户ID"
v-model:value="form.userId"
/>
</a-form-item>
<a-form-item label="修改时间" name="updateTime">
<a-input
allow-clear
placeholder="请输入修改时间"
v-model:value="form.updateTime"
/>
</a-form-item>
</a-form> </a-form>
</ele-modal> </ele-modal>
</template> </template>

View File

@@ -7,6 +7,8 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:selection="selection"
:scroll="{ x: 2400 }"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -145,44 +147,37 @@
{ {
title: '决定文书/许可编号', title: '决定文书/许可编号',
dataIndex: 'code', dataIndex: 'code',
key: 'code', key: 'code'
ellipsis: true
}, },
{ {
title: '决定文书/许可证名称', title: '决定文书/许可证名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '许可状态', title: '许可状态',
dataIndex: 'statusText', dataIndex: 'statusText',
key: 'statusText', key: 'statusText'
ellipsis: true
}, },
{ {
title: '许可类型', title: '许可类型',
dataIndex: 'type', dataIndex: 'type',
key: 'type', key: 'type'
ellipsis: true
}, },
{ {
title: '有效期自', title: '有效期自',
dataIndex: 'validityStart', dataIndex: 'validityStart',
key: 'validityStart', key: 'validityStart'
ellipsis: true
}, },
{ {
title: '有效期至', title: '有效期至',
dataIndex: 'validityEnd', dataIndex: 'validityEnd',
key: 'validityEnd', key: 'validityEnd'
ellipsis: true
}, },
{ {
title: '许可机关', title: '许可机关',
dataIndex: 'licensingAuthority', dataIndex: 'licensingAuthority',
key: 'licensingAuthority', key: 'licensingAuthority'
ellipsis: true
}, },
{ {
title: '许可内容', title: '许可内容',
@@ -193,8 +188,7 @@
{ {
title: '数据来源单位', title: '数据来源单位',
dataIndex: 'dataSourceUnit', dataIndex: 'dataSourceUnit',
key: 'dataSourceUnit', key: 'dataSourceUnit'
ellipsis: true
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -206,14 +200,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -251,21 +245,12 @@
{ title: '决定文书/许可编号', dataIndex: 'code' }, { title: '决定文书/许可编号', dataIndex: 'code' },
{ title: '决定文书/许可证名称', dataIndex: 'name' }, { title: '决定文书/许可证名称', dataIndex: 'name' },
{ title: '许可状态', dataIndex: 'statusText' }, { title: '许可状态', dataIndex: 'statusText' },
{ title: '许可类', dataIndex: 'type' }, { title: '许可类', dataIndex: 'type' },
{ title: '有效期自', dataIndex: 'validityStart' }, { title: '有效期自', dataIndex: 'validityStart' },
{ title: '有效期至', dataIndex: 'validityEnd' }, { title: '有效期至', dataIndex: 'validityEnd' },
{ title: '许可机关', dataIndex: 'licensingAuthority' }, { title: '许可机关', dataIndex: 'licensingAuthority' },
{ title: '许可内容', dataIndex: 'licenseContent' }, { title: '许可内容', dataIndex: 'licenseContent' },
{ title: '数据来源单位', dataIndex: 'dataSourceUnit' }, { title: '数据来源单位', dataIndex: 'dataSourceUnit' }
{ title: '备注', dataIndex: 'comments' },
{
title: '创建时间',
dataIndex: 'createTime',
formatter: (record: CreditAdministrativeLicense) =>
record.createTime
? toDateString(record.createTime, 'yyyy-MM-dd HH:mm:ss')
: ''
}
], ],
fetchData: () => fetchData: () =>
listCreditAdministrativeLicense({ listCreditAdministrativeLicense({

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -142,32 +143,27 @@
{ {
title: '案号', title: '案号',
dataIndex: 'code', dataIndex: 'code',
key: 'code', key: 'code'
ellipsis: true
}, },
{ {
title: '案件类型', title: '案件类型',
dataIndex: 'type', dataIndex: 'type',
key: 'type', key: 'type'
ellipsis: true
}, },
{ {
title: '当事人', title: '当事人',
dataIndex: 'party', dataIndex: 'party',
key: 'party', key: 'party'
ellipsis: true
}, },
{ {
title: '经办法院', title: '经办法院',
dataIndex: 'court', dataIndex: 'court',
key: 'court', key: 'court'
ellipsis: true
}, },
{ {
title: '公开日期', title: '公开日期',
dataIndex: 'publicDate', dataIndex: 'publicDate',
key: 'publicDate', key: 'publicDate'
ellipsis: true
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -179,14 +175,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -299,7 +295,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -142,8 +143,7 @@
{ {
title: '分支机构名称', title: '分支机构名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '负责人', title: '负责人',
@@ -179,14 +179,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -226,7 +226,6 @@
{ title: '地区', dataIndex: 'region' }, { title: '地区', dataIndex: 'region' },
{ title: '成立日期', dataIndex: 'establishDate' }, { title: '成立日期', dataIndex: 'establishDate' },
{ title: '状态', dataIndex: 'statusText' }, { title: '状态', dataIndex: 'statusText' },
{ title: '备注', dataIndex: 'comments' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -299,7 +298,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -139,52 +140,44 @@
key: 'id', key: 'id',
width: 80 width: 80
}, },
{
title: '数据类型',
dataIndex: 'dataType',
key: 'dataType',
ellipsis: true
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant',
ellipsis: true
},
{
title: '发生时间',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
width: 120
},
{ {
title: '案号', title: '案号',
dataIndex: 'caseNumber', dataIndex: 'caseNumber',
key: 'caseNumber', key: 'caseNumber',
ellipsis: true width: 200
}, },
{ {
title: '案由', title: '失信被执行人',
dataIndex: 'causeOfAction', dataIndex: 'plaintiffAppellant',
key: 'causeOfAction', key: 'plaintiffAppellant'
ellipsis: true
}, },
{ {
title: '涉案金额', title: '疑似申请执行人',
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '涉案金额(元)',
dataIndex: 'involvedAmount', dataIndex: 'involvedAmount',
key: 'involvedAmount', key: 'involvedAmount',
width: 120 width: 120
}, },
{ {
title: '法院', title: '执行法院',
dataIndex: 'courtName', dataIndex: 'courtName',
key: 'courtName', key: 'courtName',
ellipsis: true ellipsis: true
}, },
{ {
title: '数据状态', title: '立案日期',
dataIndex: 'dataStatus', dataIndex: 'occurrenceTime',
key: 'dataStatus', key: 'occurrenceTime',
width: 120
},
{
title: '发布日期',
dataIndex: 'releaseDate',
key: 'releaseDate',
ellipsis: true ellipsis: true
}, },
{ {
@@ -196,14 +189,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 160, // width: 160,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -318,7 +311,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -1,7 +1,7 @@
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<template> <template>
<ele-modal <ele-modal
:width="800" width="80%"
:visible="visible" :visible="visible"
:maskClosable="false" :maskClosable="false"
:maxable="maxable" :maxable="maxable"

View File

@@ -7,8 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
tool-class="ele-toolbar-form" :scroll="{ x: 10000 }"
:scroll="{ x: 2000 }"
class="sys-org-table" class="sys-org-table"
> >
<template #toolbar> <template #toolbar>
@@ -26,12 +25,12 @@
<template v-if="column.key === 'image'"> <template v-if="column.key === 'image'">
<a-image :src="record.image" :width="50" /> <a-image :src="record.image" :width="50" />
</template> </template>
<template v-if="column.key === 'name'"> <template v-if="column.key === 'matchName'">
<template v-if="record.url"> <template v-if="record.url">
<a :href="record.url" target="_blank">{{ record.name }}</a> <a :href="record.url" target="_blank">{{ record.matchName }}</a>
</template> </template>
<template v-else> <template v-else>
{{ record.name }} {{ record.matchName }}
</template> </template>
</template> </template>
<template v-if="column.key === 'status'"> <template v-if="column.key === 'status'">
@@ -179,44 +178,37 @@
title: '原文件导入名称', title: '原文件导入名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name',
ellipsis: true,
width: 240 width: 240
}, },
{ {
title: '系统匹配企业名称', title: '系统匹配企业名称',
dataIndex: 'matchName', dataIndex: 'matchName',
key: 'matchName', key: 'matchName',
ellipsis: true,
width: 240 width: 240
}, },
{
title: '统一社会信用代码',
dataIndex: 'code',
key: 'code',
ellipsis: true,
width: 200
},
{ {
title: '登记状态', title: '登记状态',
dataIndex: 'registrationStatus', dataIndex: 'registrationStatus',
key: 'registrationStatus', key: 'registrationStatus',
ellipsis: true,
width: 120 width: 120
}, },
{ {
title: '法定代表人', title: '法定代表人',
dataIndex: 'legalPerson', dataIndex: 'legalPerson',
key: 'legalPerson', key: 'legalPerson',
ellipsis: true,
width: 120 width: 120
}, },
{ {
title: '注册资本', title: '注册资本',
dataIndex: 'registeredCapital', dataIndex: 'registeredCapital',
key: 'registeredCapital', key: 'registeredCapital',
ellipsis: true,
width: 120 width: 120
}, },
{
title: '实缴资本',
dataIndex: 'paidinCapital',
key: 'paidinCapital'
},
{ {
title: '成立日期', title: '成立日期',
dataIndex: 'establishDate', dataIndex: 'establishDate',
@@ -225,39 +217,225 @@
width: 120 width: 120
}, },
{ {
title: '电话', title: '统一社会信用代码',
dataIndex: 'tel', dataIndex: 'code',
key: 'tel', key: 'code',
ellipsis: true, ellipsis: true,
width: 150 width: 200
},
{
title: '企业地址',
dataIndex: 'address',
key: 'address',
ellipsis: true,
width: 120
}, },
{ {
title: '所属省份', title: '所属省份',
dataIndex: 'province', dataIndex: 'province',
key: 'province', key: 'province',
ellipsis: true,
width: 120 width: 120
}, },
{ {
title: '所属城市', title: '所属城市',
dataIndex: 'city', dataIndex: 'city',
key: 'city', key: 'city',
ellipsis: true,
width: 120 width: 120
}, },
{
title: '所属县区',
dataIndex: 'region',
key: 'region',
width: 120
},
{
title: '电话',
dataIndex: 'tel',
key: 'tel',
width: 150
},
{
title: '更多电话',
dataIndex: 'tel',
key: 'tel',
ellipsis: true,
width: 150
},
{
title: '邮箱',
dataIndex: 'email',
key: 'email',
ellipsis: true,
width: 150
},
{
title: '更多邮箱',
dataIndex: 'moreEmail',
key: 'moreEmail',
width: 120,
ellipsis: true
},
{
title: '企业(机构)类型',
dataIndex: 'institutionType',
key: 'institutionType',
width: 120
},
{
title: '纳税人识别号',
dataIndex: 'taxpayerCode',
key: 'taxpayerCode',
width: 120
},
{
title: '注册号',
dataIndex: 'registrationNumber',
key: 'registrationNumber'
},
{
title: '组织机构代码',
dataIndex: 'organizationalCode',
key: 'organizationalCode',
width: 120
},
{
title: '参保人数',
dataIndex: 'numberOfInsuredPersons',
key: 'numberOfInsuredPersons',
width: 120
},
{
title: '参保人数所属年报',
dataIndex: 'annualReport',
key: 'annualReport',
width: 120
},
{
title: '营业期限',
dataIndex: 'businessTerm',
key: 'businessTerm',
width: 120
},
{
title: '国标行业门类',
dataIndex: 'nationalStandardIndustryCategories',
key: 'nationalStandardIndustryCategories',
},
{
title: '国标行业大类',
dataIndex: 'nationalStandardIndustryCategories2',
key: 'nationalStandardIndustryCategories2'
},
{
title: '国标行业中类',
dataIndex: 'nationalStandardIndustryCategories3',
key: 'nationalStandardIndustryCategories3'
},
{
title: '国标行业小类',
dataIndex: 'nationalStandardIndustryCategories4',
key: 'nationalStandardIndustryCategories4'
},
{
title: '国标行业小类',
dataIndex: 'nationalStandardIndustryCategories5',
key: 'nationalStandardIndustryCategories5'
},
{
title: '企查查行业大类',
dataIndex: 'nationalStandardIndustryCategories6',
key: 'nationalStandardIndustryCategories6'
},
{
title: '企查查行业中类',
dataIndex: 'nationalStandardIndustryCategories7',
key: 'nationalStandardIndustryCategories7'
},
{
title: '企查查行业小类',
dataIndex: 'nationalStandardIndustryCategories8',
key: 'nationalStandardIndustryCategories8'
},
{
title: '企业规模',
dataIndex: 'companySize',
key: 'companySize'
},
{
title: '曾用名',
dataIndex: 'formerName',
key: 'formerName'
},
{
title: '英文名',
dataIndex: 'englishName',
key: 'englishName'
},
{
title: '官网',
dataIndex: 'domain',
key: 'domain'
},
{
title: '通信地址',
dataIndex: 'mailingAddress',
key: 'mailingAddress'
},
{
title: '企业简介',
dataIndex: 'companyProfile',
key: 'companyProfile',
ellipsis: true
},
{
title: '经营范围',
dataIndex: 'natureOfBusiness',
key: 'natureOfBusiness',
ellipsis: true
},
{
title: '登记机关',
dataIndex: 'registrationAuthority',
key: 'registrationAuthority'
},
{
title: '纳税人资质',
dataIndex: 'taxpayerQualification',
key: 'taxpayerQualification'
},
{
title: '最新年报年份',
dataIndex: 'latestAnnualReportYear',
key: 'latestAnnualReportYear'
},
{
title: '最新年报营业收入',
dataIndex: 'latestAnnualReportOnOperatingRevenue',
key: 'latestAnnualReportOnOperatingRevenue'
},
{ {
title: '企查分', title: '企查分',
dataIndex: 'enterpriseScoreCheck', dataIndex: 'enterpriseScoreCheck',
key: 'enterpriseScoreCheck', key: 'enterpriseScoreCheck'
ellipsis: true,
width: 120
}, },
{ {
title: '信用等级', title: '信用等级',
dataIndex: 'creditRating', dataIndex: 'creditRating',
key: 'creditRating', key: 'creditRating'
ellipsis: true, },
width: 120 {
title: '科创分',
dataIndex: 'cechnologyScore',
key: 'cechnologyScore'
},
{
title: '科创等级',
dataIndex: 'cechnologyLevel',
key: 'cechnologyLevel'
}, },
{ {
title: '是否小微企业', title: '是否小微企业',

View File

@@ -1,12 +1,12 @@
<!-- 搜索表单 --> <!-- 搜索表单 -->
<template> <template>
<a-space :size="10" style="flex-wrap: wrap"> <a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="add"> <!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
<template #icon> <!-- <template #icon>-->
<PlusOutlined /> <!-- <PlusOutlined />-->
</template> <!-- </template>-->
<span>添加</span> <!-- <span>添加</span>-->
</a-button> <!-- </a-button>-->
<a-button class="ele-btn-icon" @click="openImport"> <a-button class="ele-btn-icon" @click="openImport">
<template #icon> <template #icon>
<CloudUploadOutlined /> <CloudUploadOutlined />

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -132,53 +133,49 @@
width: 90 width: 90
}, },
{ {
title: '数据类型', title: '案号',
dataIndex: 'dataType', dataIndex: 'caseNumber',
key: 'dataType', key: 'caseNumber',
ellipsis: true width: 200
}, },
{ {
title: '原告/上诉人', title: '被执行人',
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '疑似申请执行人',
dataIndex: 'plaintiffAppellant', dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant', key: 'plaintiffAppellant'
ellipsis: true
}, },
{ {
title: '发生时间', title: '未履行金额(元)',
dataIndex: 'unfulfilledAmount',
key: 'unfulfilledAmount'
},
{
title: '执行标的(元)',
dataIndex: 'involvedAmount',
key: 'involvedAmount'
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName',
width: 120
},
{
title: '立案日期',
dataIndex: 'occurrenceTime', dataIndex: 'occurrenceTime',
key: 'occurrenceTime', key: 'occurrenceTime',
width: 120 width: 120
}, },
{ {
title: '案号', title: '终本日期',
dataIndex: 'caseNumber', dataIndex: 'finalDate',
key: 'caseNumber', key: 'finalDate',
ellipsis: true
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction',
ellipsis: true
},
{
title: '涉案金额',
dataIndex: 'involvedAmount',
key: 'involvedAmount',
width: 120 width: 120
}, },
{
title: '法院',
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true
},
{
title: '数据状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
ellipsis: true
},
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -188,14 +185,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 160, // width: 160,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -230,14 +227,14 @@
filename: '终本案件', filename: '终本案件',
columns: [ columns: [
{ title: 'ID', dataIndex: 'id' }, { title: 'ID', dataIndex: 'id' },
{ title: '数据类型', dataIndex: 'dataType' },
{ title: '原告/上诉人', dataIndex: 'plaintiffAppellant' },
{ title: '发生时间', dataIndex: 'occurrenceTime' },
{ title: '案号', dataIndex: 'caseNumber' }, { title: '案号', dataIndex: 'caseNumber' },
{ title: '案由', dataIndex: 'causeOfAction' }, { title: '被执行人', dataIndex: 'appellee' },
{ title: '涉案金额', dataIndex: 'involvedAmount' }, { title: '疑似申请执行人', dataIndex: 'plaintiffAppellant' },
{ title: '法院', dataIndex: 'courtName' }, { title: '未履行金额(元)', dataIndex: 'unfulfilledAmount' },
{ title: '数据状态', dataIndex: 'dataStatus' }, { title: '执行标的(元)', dataIndex: 'involvedAmount' },
{ title: '执行法院', dataIndex: 'courtName' },
{ title: '立案日期', dataIndex: 'occurrenceTime' },
{ title: '终本日期', dataIndex: 'finalDate' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -310,7 +307,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -128,52 +129,50 @@
width: 80 width: 80
}, },
{ {
title: '数据类型', title: '被执行人',
dataIndex: 'dataType', dataIndex: 'appellee',
key: 'dataType', key: 'appellee'
ellipsis: true
}, },
{ {
title: '原告/上诉人', title: '冻结股权标的企业',
dataIndex: 'plaintiffAppellant', dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant', key: 'plaintiffAppellant'
ellipsis: true
}, },
{ {
title: '发生时间', title: '被执行人持有股权、其他投资权益数额',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
width: 120
},
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
ellipsis: true
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction',
ellipsis: true
},
{
title: '涉案金额',
dataIndex: 'involvedAmount', dataIndex: 'involvedAmount',
key: 'involvedAmount', key: 'involvedAmount',
width: 260
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName',
width: 200
},
{
title: '状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
width: 90
},
{
title: '冻结日期自',
dataIndex: 'freezeDateStart',
key: 'freezeDateStart',
width: 120 width: 120
}, },
{ {
title: '法院', title: '冻结日期至',
dataIndex: 'courtName', dataIndex: 'freezeDateEnd',
key: 'courtName', key: 'freezeDateEnd',
ellipsis: true width: 120
}, },
{ {
title: '数据状态', title: '公示日期',
dataIndex: 'dataStatus', dataIndex: 'publicDate',
key: 'dataStatus', key: 'publicDate',
ellipsis: true width: 120
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -184,14 +183,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 160, // width: 160,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -226,14 +225,16 @@
filename: '股权冻结', filename: '股权冻结',
columns: [ columns: [
{ title: 'ID', dataIndex: 'id' }, { title: 'ID', dataIndex: 'id' },
{ title: '数据类型', dataIndex: 'dataType' }, { title: '执行通知文书号', dataIndex: '执行通知文书号' },
{ title: '原告/上诉人', dataIndex: 'plaintiffAppellant' }, { title: '被执行人', dataIndex: 'appellee' },
{ title: '发生时间', dataIndex: 'occurrenceTime' }, { title: '冻结股权标的企业', dataIndex: 'plaintiffAppellant' },
{ title: '案号', dataIndex: 'caseNumber' }, { title: '被执行人持有股权、其他投资权益数额', dataIndex: 'involvedAmount' },
{ title: '案由', dataIndex: 'causeOfAction' }, { title: '执行法院', dataIndex: 'courtName' },
{ title: '涉案金额', dataIndex: 'involvedAmount' }, { title: '类型', dataIndex: 'dataType' },
{ title: '法院', dataIndex: 'courtName' }, { title: '状态', dataIndex: 'dataStatus' },
{ title: '数据状态', dataIndex: 'dataStatus' }, { title: '冻结日期自', dataIndex: 'freezeDateStart' },
{ title: '冻结日期至', dataIndex: 'freezeDateEnd' },
{ title: '公示日期', dataIndex: 'publicDate' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -306,7 +307,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -145,20 +146,17 @@
{ {
title: '名称', title: '名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '任职日期', title: '任职日期',
dataIndex: 'registerDate', dataIndex: 'registerDate',
key: 'registerDate', key: 'registerDate'
ellipsis: true
}, },
{ {
title: '卸任日期', title: '卸任日期',
dataIndex: 'publicDate', dataIndex: 'publicDate',
key: 'publicDate', key: 'publicDate'
ellipsis: true
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -170,14 +168,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -215,7 +213,6 @@
{ title: '名称', dataIndex: 'name' }, { title: '名称', dataIndex: 'name' },
{ title: '任职日期', dataIndex: 'registerDate' }, { title: '任职日期', dataIndex: 'registerDate' },
{ title: '卸任日期', dataIndex: 'publicDate' }, { title: '卸任日期', dataIndex: 'publicDate' },
{ title: '备注', dataIndex: 'comments' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -288,7 +285,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -277,10 +278,22 @@
key: 'name', key: 'name',
ellipsis: true ellipsis: true
}, },
// {
// title: '证件号/组织机构代码',
// dataIndex: 'code',
// key: 'code',
// ellipsis: true
// },
{ {
title: '证件号/组织机构代码', title: '执行标的(元)',
dataIndex: 'code', dataIndex: 'amount',
key: 'code', key: 'amount',
width: 120
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true ellipsis: true
}, },
{ {
@@ -289,26 +302,14 @@
key: 'occurrenceTime', key: 'occurrenceTime',
width: 120 width: 120
}, },
{ // {
title: '执行标的(元)', // title: '状态',
dataIndex: 'amount', // dataIndex: 'dataStatus',
key: 'amount', // key: 'dataStatus',
width: 120 // ellipsis: true,
}, // align: 'center',
{ // width: 90
title: '法院', // },
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true
},
{
title: '状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
ellipsis: true,
align: 'center',
width: 90
},
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -318,14 +319,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 160, // width: 160,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */

View File

@@ -1,12 +1,12 @@
<!-- 搜索表单 --> <!-- 搜索表单 -->
<template> <template>
<a-space :size="10" style="flex-wrap: wrap"> <a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="add"> <!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
<template #icon> <!-- <template #icon>-->
<PlusOutlined /> <!-- <PlusOutlined />-->
</template> <!-- </template>-->
<span>添加</span> <!-- <span>添加</span>-->
</a-button> <!-- </a-button>-->
<a-button class="ele-btn-icon" @click="openImport"> <a-button class="ele-btn-icon" @click="openImport">
<template #icon> <template #icon>
<CloudUploadOutlined /> <CloudUploadOutlined />

View File

@@ -8,6 +8,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:scroll="{ x: 2400 }"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -141,162 +142,49 @@
{ {
title: '案件名称', title: '案件名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '案件类型', title: '案件类型',
dataIndex: 'infoType', dataIndex: 'infoType',
key: 'infoType', key: 'infoType'
ellipsis: true
}, },
{ {
title: '案由', title: '案由',
dataIndex: 'reason', dataIndex: 'reason',
key: 'reason', key: 'reason'
ellipsis: true
}, },
{ {
title: '进程日期', title: '进程日期',
dataIndex: 'processDate', dataIndex: 'processDate',
key: 'processDate', key: 'processDate'
ellipsis: true
}, },
{ {
title: '案件进程', title: '案件进程',
dataIndex: 'caseProgress', dataIndex: 'caseProgress',
key: 'caseProgress', key: 'caseProgress'
ellipsis: true
}, },
{ {
title: '案件身份', title: '案件身份',
dataIndex: 'caseIdentity', dataIndex: 'caseIdentity',
key: 'caseIdentity', key: 'caseIdentity'
ellipsis: true
}, },
{ {
title: '案号', title: '案号',
dataIndex: 'code', dataIndex: 'code',
key: 'code', key: 'code'
ellipsis: true
}, },
{ {
title: '法院', title: '法院',
dataIndex: 'court', dataIndex: 'court',
key: 'court', key: 'court'
ellipsis: true
}, },
{ {
title: '案件金额(元)', title: '案件金额(元)',
dataIndex: 'caseAmount', dataIndex: 'caseAmount',
key: 'caseAmount', key: 'caseAmount'
ellipsis: true
} }
// { // {
// title: '类型, 0普通用户, 1招投标',
// dataIndex: 'type',
// key: 'type',
// width: 120
// },
// {
// title: '上级id, 0是顶级',
// dataIndex: 'parentId',
// key: 'parentId',
// width: 120
// },
// {
// title: '所在国家',
// dataIndex: 'country',
// key: 'country',
// ellipsis: true
// },
// {
// title: '所在省份',
// dataIndex: 'province',
// key: 'province',
// ellipsis: true
// },
// {
// title: '所在城市',
// dataIndex: 'city',
// key: 'city',
// ellipsis: true
// },
// {
// title: '所在辖区',
// dataIndex: 'region',
// key: 'region',
// ellipsis: true
// },
// {
// title: '街道地址',
// dataIndex: 'address',
// key: 'address',
// ellipsis: true
// },
// {
// title: '备注',
// dataIndex: 'comments',
// key: 'comments',
// ellipsis: true
// },
// {
// title: '是否推荐',
// dataIndex: 'recommend',
// key: 'recommend',
// width: 120
// },
// {
// title: '到期时间',
// dataIndex: 'expirationTime',
// key: 'expirationTime',
// width: 120
// },
// {
// title: '排序(数字越小越靠前)',
// dataIndex: 'sortNumber',
// key: 'sortNumber',
// width: 120
// },
// {
// title: '状态, 0正常, 1冻结',
// dataIndex: 'status',
// key: 'status',
// width: 120
// },
// {
// title: '是否删除, 0否, 1是',
// dataIndex: 'deleted',
// key: 'deleted',
// width: 120
// },
// {
// title: '用户ID',
// dataIndex: 'userId',
// key: 'userId',
// width: 120
// },
// {
// title: '创建时间',
// dataIndex: 'createTime',
// key: 'createTime',
// width: 200,
// align: 'center',
// sorter: true,
// ellipsis: true,
// customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
// },
// {
// title: '修改时间',
// dataIndex: 'updateTime',
// key: 'updateTime',
// width: 200,
// align: 'center',
// sorter: true,
// ellipsis: true,
// customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
// },
// {
// title: '操作', // title: '操作',
// key: 'action', // key: 'action',
// width: 180, // width: 180,
@@ -406,7 +294,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -1,13 +1,14 @@
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<template> <template>
<ele-modal <ele-modal
:width="800" width="70%"
:visible="visible" :visible="visible"
:maskClosable="false" :maskClosable="false"
:maxable="maxable" :maxable="maxable"
:title="isUpdate ? '编辑附近企业' : '添加附近企业'" :title="isUpdate ? '查看详情' : '添加附近企业'"
:body-style="{ paddingBottom: '28px' }" :body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible" @update:visible="updateVisible"
:footer="null"
@ok="save" @ok="save"
> >
<a-form <a-form

View File

@@ -8,6 +8,7 @@
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
:scroll="{ x: 9000 }" :scroll="{ x: 9000 }"
:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -40,14 +41,15 @@
</template> </template>
<template v-if="column.key === 'action'"> <template v-if="column.key === 'action'">
<a-space> <a-space>
<a @click="openEdit(record)">修改</a> <a @click="openEdit(record)">详情</a>
<a-divider type="vertical" /> <!-- <a @click="openEdit(record)">修改</a>-->
<a-popconfirm <!-- <a-divider type="vertical" />-->
title="确定要删除此记录吗?" <!-- <a-popconfirm-->
@confirm="remove(record)" <!-- title="确定要删除此记录吗?"-->
> <!-- @confirm="remove(record)"-->
<a class="ele-text-danger">删除</a> <!-- >-->
</a-popconfirm> <!-- <a class="ele-text-danger">删除</a>-->
<!-- </a-popconfirm>-->
</a-space> </a-space>
</template> </template>
</template> </template>
@@ -148,59 +150,47 @@
{ {
title: '登记状态', title: '登记状态',
dataIndex: 'registrationStatus', dataIndex: 'registrationStatus',
key: 'registrationStatus', key: 'registrationStatus'
ellipsis: true
}, },
{ {
title: '法定代表人', title: '法定代表人',
dataIndex: 'legalPerson', dataIndex: 'legalPerson',
key: 'legalPerson', key: 'legalPerson'
ellipsis: true
}, },
{ {
title: '注册资本', title: '注册资本',
dataIndex: 'registeredCapital', dataIndex: 'registeredCapital',
key: 'registeredCapital', key: 'registeredCapital'
ellipsis: true
}, },
{ {
title: '成立日期', title: '成立日期',
dataIndex: 'establishDate', dataIndex: 'establishDate',
key: 'establishDate', key: 'establishDate'
ellipsis: true
}, },
{ {
title: '统一社会信用代码', title: '统一社会信用代码',
dataIndex: 'code', dataIndex: 'code',
key: 'code', key: 'code'
ellipsis: true
}, },
{ {
title: '注册地址', title: '注册地址',
dataIndex: 'address', dataIndex: 'address',
key: 'address', key: 'address'
ellipsis: true,
hideInTable: true
}, },
{ {
title: '注册地址邮编', title: '注册地址邮编',
dataIndex: 'postalCode', dataIndex: 'postalCode',
key: 'postalCode', key: 'postalCode'
ellipsis: true,
hideInTable: true
}, },
{ {
title: '有效手机号', title: '有效手机号',
dataIndex: 'phone', dataIndex: 'phone',
key: 'phone', key: 'phone'
ellipsis: true
}, },
{ {
title: '更多电话', title: '更多电话',
dataIndex: 'moreTel', dataIndex: 'moreTel',
key: 'moreTel', key: 'moreTel'
ellipsis: true,
hideInTable: true
}, },
{ {
title: '邮箱', title: '邮箱',
@@ -212,8 +202,7 @@
title: '邮箱', title: '邮箱',
dataIndex: 'moreEmail', dataIndex: 'moreEmail',
key: 'moreEmail', key: 'moreEmail',
ellipsis: true, ellipsis: true
hideInTable: true
}, },
{ {
title: '所在国家', title: '所在国家',
@@ -225,122 +214,118 @@
{ {
title: '所属省份', title: '所属省份',
dataIndex: 'province', dataIndex: 'province',
key: 'province', key: 'province'
ellipsis: true
}, },
{ {
title: '所属城市', title: '所属城市',
dataIndex: 'city', dataIndex: 'city',
key: 'city', key: 'city'
ellipsis: true
}, },
{ {
title: '所属区县', title: '所属区县',
dataIndex: 'region', dataIndex: 'region',
key: 'region', key: 'region'
ellipsis: true
}, },
{ {
title: '纳税人识别号', title: '纳税人识别号',
dataIndex: 'taxpayerCode', dataIndex: 'taxpayerCode',
key: 'taxpayerCode', key: 'taxpayerCode'
ellipsis: true
}, },
{ {
title: '注册号', title: '注册号',
dataIndex: 'registrationNumber', dataIndex: 'registrationNumber',
key: 'registrationNumber', key: 'registrationNumber',
ellipsis: true
}, },
{ {
title: '组织机构代码', title: '组织机构代码',
dataIndex: 'organizationalCode', dataIndex: 'organizationalCode',
key: 'organizationalCode', key: 'organizationalCode',
ellipsis: true
}, },
{ {
title: '参保人数', title: '参保人数',
dataIndex: 'numberOfInsuredPersons', dataIndex: 'numberOfInsuredPersons',
key: 'numberOfInsuredPersons', key: 'numberOfInsuredPersons',
ellipsis: true
}, },
{ {
title: '参保人数所属年报', title: '参保人数所属年报',
dataIndex: 'annualReport', dataIndex: 'annualReport',
key: 'annualReport', key: 'annualReport',
ellipsis: true
}, },
{ {
title: '企业(机构)类型', title: '企业(机构)类型',
dataIndex: 'institutionType', dataIndex: 'institutionType',
key: 'institutionType', key: 'institutionType',
ellipsis: true
}, },
{ {
title: '企业规模', title: '企业规模',
dataIndex: 'companySize', dataIndex: 'companySize',
key: 'companySize', key: 'companySize',
ellipsis: true
}, },
{ {
title: '营业期限', title: '营业期限',
dataIndex: 'businessTerm', dataIndex: 'businessTerm',
key: 'businessTerm', key: 'businessTerm',
ellipsis: true
}, },
{ {
title: '国标行业门类', title: '国标行业门类',
dataIndex: 'nationalStandardIndustryCategories', dataIndex: 'nationalStandardIndustryCategories',
key: 'nationalStandardIndustryCategories', key: 'nationalStandardIndustryCategories',
ellipsis: true
}, },
{ {
title: '国标行业大类', title: '国标行业大类',
dataIndex: 'nationalStandardIndustryCategories2', dataIndex: 'nationalStandardIndustryCategories2',
key: 'nationalStandardIndustryCategories2', key: 'nationalStandardIndustryCategories2',
ellipsis: true
}, },
{ {
title: '国标行业中类', title: '国标行业中类',
dataIndex: 'nationalStandardIndustryCategories3', dataIndex: 'nationalStandardIndustryCategories3',
key: 'nationalStandardIndustryCategories3', key: 'nationalStandardIndustryCategories3',
ellipsis: true
}, },
{ {
title: '国标行业小类', title: '国标行业小类',
dataIndex: 'nationalStandardIndustryCategories4', dataIndex: 'nationalStandardIndustryCategories4',
key: 'nationalStandardIndustryCategories4', key: 'nationalStandardIndustryCategories4',
ellipsis: true
}, },
{ {
title: '曾用名', title: '曾用名',
dataIndex: 'formerName', dataIndex: 'formerName',
key: 'formerName', key: 'formerName',
ellipsis: true
}, },
{ {
title: '英文名', title: '英文名',
dataIndex: 'englishName', dataIndex: 'englishName',
key: 'englishName', key: 'englishName',
ellipsis: true
}, },
{ {
title: '官网网址', title: '官网网址',
dataIndex: 'domain', dataIndex: 'domain',
key: 'domain', key: 'domain',
ellipsis: true
}, },
{ {
title: '通信地址', title: '通信地址',
dataIndex: 'mailingAddress', dataIndex: 'mailingAddress',
key: 'mailingAddress', key: 'mailingAddress',
ellipsis: true
}, },
{ {
title: '通信地址邮箱', title: '通信地址邮箱',
dataIndex: 'mailingEmail', dataIndex: 'mailingEmail',
key: 'mailingEmail', key: 'mailingEmail',
ellipsis: true
}, },
{ {
title: '企业简介', title: '企业简介',
@@ -358,31 +343,31 @@
title: '电话', title: '电话',
dataIndex: 'tel', dataIndex: 'tel',
key: 'tel', key: 'tel',
ellipsis: true
}, },
{ {
title: '企查查行业门类', title: '企查查行业门类',
dataIndex: 'nationalStandardIndustryCategories5', dataIndex: 'nationalStandardIndustryCategories5',
key: 'nationalStandardIndustryCategories5', key: 'nationalStandardIndustryCategories5',
ellipsis: true
}, },
{ {
title: '企查查行业大类', title: '企查查行业大类',
dataIndex: 'nationalStandardIndustryCategories6', dataIndex: 'nationalStandardIndustryCategories6',
key: 'nationalStandardIndustryCategories6', key: 'nationalStandardIndustryCategories6',
ellipsis: true
}, },
{ {
title: '企查查行业中类', title: '企查查行业中类',
dataIndex: 'nationalStandardIndustryCategories7', dataIndex: 'nationalStandardIndustryCategories7',
key: 'nationalStandardIndustryCategories7', key: 'nationalStandardIndustryCategories7',
ellipsis: true
}, },
{ {
title: '企查查行业小类', title: '企查查行业小类',
dataIndex: 'nationalStandardIndustryCategories8', dataIndex: 'nationalStandardIndustryCategories8',
key: 'nationalStandardIndustryCategories8', key: 'nationalStandardIndustryCategories8',
ellipsis: true
}, },
{ {
title: '类型', title: '类型',
@@ -394,61 +379,61 @@
title: '实缴资本', title: '实缴资本',
dataIndex: 'paidinCapital', dataIndex: 'paidinCapital',
key: 'paidinCapital', key: 'paidinCapital',
ellipsis: true
}, },
{ {
title: '登记机关', title: '登记机关',
dataIndex: 'registrationAuthority', dataIndex: 'registrationAuthority',
key: 'registrationAuthority', key: 'registrationAuthority',
ellipsis: true
}, },
{ {
title: '纳税人资质', title: '纳税人资质',
dataIndex: 'taxpayerQualification', dataIndex: 'taxpayerQualification',
key: 'taxpayerQualification', key: 'taxpayerQualification',
ellipsis: true
}, },
{ {
title: '最新年报年份', title: '最新年报年份',
dataIndex: 'latestAnnualReportYear', dataIndex: 'latestAnnualReportYear',
key: 'latestAnnualReportYear', key: 'latestAnnualReportYear',
ellipsis: true
}, },
{ {
title: '最新年报营业收入', title: '最新年报营业收入',
dataIndex: 'latestAnnualReportOnOperatingRevenue', dataIndex: 'latestAnnualReportOnOperatingRevenue',
key: 'latestAnnualReportOnOperatingRevenue', key: 'latestAnnualReportOnOperatingRevenue',
ellipsis: true
}, },
{ {
title: '企查分', title: '企查分',
dataIndex: 'enterpriseScoreCheck', dataIndex: 'enterpriseScoreCheck',
key: 'enterpriseScoreCheck', key: 'enterpriseScoreCheck',
ellipsis: true
}, },
{ {
title: '信用等级', title: '信用等级',
dataIndex: 'creditRating', dataIndex: 'creditRating',
key: 'creditRating', key: 'creditRating',
ellipsis: true
}, },
{ {
title: '科创分', title: '科创分',
dataIndex: 'cechnologyScore', dataIndex: 'cechnologyScore',
key: 'cechnologyScore', key: 'cechnologyScore',
ellipsis: true
}, },
{ {
title: '科创等级', title: '科创等级',
dataIndex: 'cechnologyLevel', dataIndex: 'cechnologyLevel',
key: 'cechnologyLevel', key: 'cechnologyLevel',
ellipsis: true
}, },
{ {
title: '是否小微企业', title: '是否小微企业',
dataIndex: 'smallEnterprise', dataIndex: 'smallEnterprise',
key: 'smallEnterprise', key: 'smallEnterprise',
ellipsis: true
}, },
// { // {
// title: '备注', // title: '备注',
@@ -487,7 +472,7 @@
{ {
title: '操作', title: '操作',
key: 'action', key: 'action',
width: 180, width: 90,
fixed: 'right', fixed: 'right',
align: 'center', align: 'center',
hideInSetting: true hideInSetting: true
@@ -524,6 +509,8 @@
const exportData = () => { const exportData = () => {
exportCreditData<CreditNearbyCompany>({ exportCreditData<CreditNearbyCompany>({
filename: '附近企业', filename: '附近企业',
// “附近企业”本身就是企业列表,避免自动插入 companyName 导致多一个空“企业名称”列
includeCompanyName: false,
columns: [ columns: [
{ title: 'ID', dataIndex: 'id' }, { title: 'ID', dataIndex: 'id' },
{ title: '企业名称', dataIndex: 'name' }, { title: '企业名称', dataIndex: 'name' },
@@ -533,10 +520,59 @@
{ title: '成立日期', dataIndex: 'establishDate' }, { title: '成立日期', dataIndex: 'establishDate' },
{ title: '统一社会信用代码', dataIndex: 'code' }, { title: '统一社会信用代码', dataIndex: 'code' },
{ title: '注册地址', dataIndex: 'address' }, { title: '注册地址', dataIndex: 'address' },
{ title: '注册地址邮编', dataIndex: 'postalCode' },
{ title: '有效手机号', dataIndex: 'phone' }, { title: '有效手机号', dataIndex: 'phone' },
{ title: '更多电话', dataIndex: 'moreTel' },
{ title: '邮箱', dataIndex: 'email' }, { title: '邮箱', dataIndex: 'email' },
{ title: '网址', dataIndex: 'domain' }, { title: '更多邮箱', dataIndex: 'moreEmail' },
{ title: '所在国家', dataIndex: 'country' },
{ title: '所属省份', dataIndex: 'province' },
{ title: '所属城市', dataIndex: 'city' },
{ title: '所属区县', dataIndex: 'region' },
{ title: '纳税人识别号', dataIndex: 'taxpayerCode' },
{ title: '注册号', dataIndex: 'registrationNumber' },
{ title: '组织机构代码', dataIndex: 'organizationalCode' },
{ title: '参保人数', dataIndex: 'numberOfInsuredPersons' },
{ title: '参保人数所属年报', dataIndex: 'annualReport' },
{ title: '企业(机构)类型', dataIndex: 'institutionType' },
{ title: '企业规模', dataIndex: 'companySize' },
{ title: '营业期限', dataIndex: 'businessTerm' },
{ title: '国标行业门类', dataIndex: 'nationalStandardIndustryCategories' },
{ title: '国标行业大类', dataIndex: 'nationalStandardIndustryCategories2' },
{ title: '国标行业中类', dataIndex: 'nationalStandardIndustryCategories3' },
{ title: '国标行业小类', dataIndex: 'nationalStandardIndustryCategories4' },
{ title: '曾用名', dataIndex: 'formerName' },
{ title: '英文名', dataIndex: 'englishName' },
{ title: '官网网址', dataIndex: 'domain' },
{ title: '通信地址', dataIndex: 'mailingAddress' },
{ title: '通信地址邮箱', dataIndex: 'mailingEmail' },
{ title: '企业简介', dataIndex: 'companyProfile' },
{ title: '经营范围', dataIndex: 'natureOfBusiness' },
{ title: '电话', dataIndex: 'tel' },
{ title: '企查查行业门类', dataIndex: 'nationalStandardIndustryCategories5' },
{ title: '企查查行业大类', dataIndex: 'nationalStandardIndustryCategories6' },
{ title: '企查查行业中类', dataIndex: 'nationalStandardIndustryCategories7' },
{ title: '企查查行业小类', dataIndex: 'nationalStandardIndustryCategories8' },
{ title: '链接', dataIndex: 'url' },
{ title: '类型', dataIndex: 'type' },
{ title: '上级ID', dataIndex: 'parentId' },
{ title: '实缴资本', dataIndex: 'paidinCapital' },
{ title: '登记机关', dataIndex: 'registrationAuthority' },
{ title: '纳税人资质', dataIndex: 'taxpayerQualification' },
{ title: '最新年报年份', dataIndex: 'latestAnnualReportYear' },
{ title: '最新年报营业收入', dataIndex: 'latestAnnualReportOnOperatingRevenue' },
{ title: '企查分', dataIndex: 'enterpriseScoreCheck' },
{ title: '信用等级', dataIndex: 'creditRating' },
{ title: '科创分', dataIndex: 'cechnologyScore' },
{ title: '科创等级', dataIndex: 'cechnologyLevel' },
{ title: '是否小微企业', dataIndex: 'smallEnterprise' },
{ title: '备注', dataIndex: 'comments' }, { title: '备注', dataIndex: 'comments' },
{ title: '是否推荐', dataIndex: 'recommend' },
{ title: '排序(数字越小越靠前)', dataIndex: 'sortNumber' },
{ title: '状态, 0正常, 1冻结', dataIndex: 'status' },
{ title: '是否删除, 0否, 1是', dataIndex: 'deleted' },
{ title: '用户ID', dataIndex: 'userId' },
{ title: '租户id', dataIndex: 'tenantId' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -544,6 +580,14 @@
record.createTime record.createTime
? toDateString(record.createTime, 'yyyy-MM-dd HH:mm:ss') ? toDateString(record.createTime, 'yyyy-MM-dd HH:mm:ss')
: '' : ''
},
{
title: '修改时间',
dataIndex: 'updateTime',
formatter: (record: CreditNearbyCompany) =>
record.updateTime
? toDateString(record.updateTime, 'yyyy-MM-dd HH:mm:ss')
: ''
} }
], ],
fetchData: () => fetchData: () =>

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -142,56 +143,47 @@
{ {
title: '发明名称', title: '发明名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '专利类型', title: '专利类型',
dataIndex: 'type', dataIndex: 'type',
key: 'type', key: 'type'
ellipsis: true
}, },
{ {
title: '法律状态', title: '法律状态',
dataIndex: 'statusText', dataIndex: 'statusText',
key: 'statusText', key: 'statusText'
ellipsis: true
}, },
{ {
title: '申请号', title: '申请号',
dataIndex: 'registerNo', dataIndex: 'registerNo',
key: 'registerNo', key: 'registerNo'
ellipsis: true
}, },
{ {
title: '申请日', title: '申请日',
dataIndex: 'registerDate', dataIndex: 'registerDate',
key: 'registerDate', key: 'registerDate'
ellipsis: true
}, },
{ {
title: '公开(公告)号', title: '公开(公告)号',
dataIndex: 'publicNo', dataIndex: 'publicNo',
key: 'publicNo', key: 'publicNo'
ellipsis: true
}, },
{ {
title: '公开(公告)日期', title: '公开(公告)日期',
dataIndex: 'publicDate', dataIndex: 'publicDate',
key: 'publicDate', key: 'publicDate'
ellipsis: true
}, },
{ {
title: '发明人', title: '发明人',
dataIndex: 'inventor', dataIndex: 'inventor',
key: 'inventor', key: 'inventor'
ellipsis: true
}, },
{ {
title: '申请(专利权)人', title: '申请(专利权)人',
dataIndex: 'patentApplicant', dataIndex: 'patentApplicant',
key: 'patentApplicant', key: 'patentApplicant'
ellipsis: true
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -203,14 +195,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -254,7 +246,6 @@
{ title: '公开(公告)日期', dataIndex: 'publicDate' }, { title: '公开(公告)日期', dataIndex: 'publicDate' },
{ title: '发明人', dataIndex: 'inventor' }, { title: '发明人', dataIndex: 'inventor' },
{ title: '申请(专利权)人', dataIndex: 'patentApplicant' }, { title: '申请(专利权)人', dataIndex: 'patentApplicant' },
{ title: '备注', dataIndex: 'comments' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -327,7 +318,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -145,50 +146,42 @@
{ {
title: '企业名称', title: '企业名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name'
ellipsis: true
}, },
{ {
title: '状态', title: '状态',
dataIndex: 'statusText', dataIndex: 'statusText',
key: 'statusText', key: 'statusText'
ellipsis: true
}, },
{ {
title: '法定代表人', title: '法定代表人',
dataIndex: 'legalPerson', dataIndex: 'legalPerson',
key: 'legalPerson', key: 'legalPerson'
ellipsis: true
}, },
{ {
title: '注册资本', title: '注册资本',
dataIndex: 'registeredCapital', dataIndex: 'registeredCapital',
key: 'registeredCapital', key: 'registeredCapital'
ellipsis: true
}, },
{ {
title: '成立日期', title: '成立日期',
dataIndex: 'createDate', dataIndex: 'createDate',
key: 'createDate', key: 'createDate'
ellipsis: true
}, },
{ {
title: '关联方', title: '关联方',
dataIndex: 'relatedParty', dataIndex: 'relatedParty',
key: 'relatedParty', key: 'relatedParty'
ellipsis: true
}, },
{ {
title: '疑似关系类型', title: '疑似关系类型',
dataIndex: 'type', dataIndex: 'type',
key: 'type', key: 'type'
ellipsis: true
}, },
{ {
title: '疑似关系详情', title: '疑似关系详情',
dataIndex: 'detail', dataIndex: 'detail',
key: 'detail', key: 'detail'
ellipsis: true
}, },
{ {
title: '创建时间', title: '创建时间',
@@ -200,14 +193,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 180, // width: 180,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -250,7 +243,6 @@
{ title: '关联方', dataIndex: 'relatedParty' }, { title: '关联方', dataIndex: 'relatedParty' },
{ title: '疑似关系类型', dataIndex: 'type' }, { title: '疑似关系类型', dataIndex: 'type' },
{ title: '疑似关系详情', dataIndex: 'detail' }, { title: '疑似关系详情', dataIndex: 'detail' },
{ title: '备注', dataIndex: 'comments' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -323,7 +315,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };

View File

@@ -1,12 +1,12 @@
<!-- 搜索表单 --> <!-- 搜索表单 -->
<template> <template>
<a-space :size="10" style="flex-wrap: wrap"> <a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="add"> <!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
<template #icon> <!-- <template #icon>-->
<PlusOutlined /> <!-- <PlusOutlined />-->
</template> <!-- </template>-->
<span>添加</span> <!-- <span>添加</span>-->
</a-button> <!-- </a-button>-->
<a-button class="ele-btn-icon" @click="openImport"> <a-button class="ele-btn-icon" @click="openImport">
<template #icon> <template #icon>
<CloudUploadOutlined /> <CloudUploadOutlined />

View File

@@ -7,6 +7,7 @@
:columns="columns" :columns="columns"
:datasource="datasource" :datasource="datasource"
:customRow="customRow" :customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form" tool-class="ele-toolbar-form"
class="sys-org-table" class="sys-org-table"
> >
@@ -128,53 +129,48 @@
width: 80 width: 80
}, },
{ {
title: '数据类型', title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
width: 220
},
{
title: '限消令对象',
dataIndex: 'dataType', dataIndex: 'dataType',
key: 'dataType', key: 'dataType'
ellipsis: true
}, },
{ {
title: '原告/上诉人', title: '限制法定代表人',
dataIndex: 'plaintiffAppellant', dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant', key: 'plaintiffAppellant'
ellipsis: true
}, },
{ {
title: '发生时间', title: '申请人',
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '涉案金额(元)',
dataIndex: 'involvedAmount',
key: 'involvedAmount'
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName'
},
{
title: '立案日期',
dataIndex: 'occurrenceTime', dataIndex: 'occurrenceTime',
key: 'occurrenceTime', key: 'occurrenceTime',
width: 120 width: 120
}, },
{ {
title: '案号', title: '发布日期',
dataIndex: 'caseNumber', dataIndex: 'releaseDate',
key: 'caseNumber', key: 'releaseDate',
ellipsis: true
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction',
ellipsis: true
},
{
title: '涉案金额',
dataIndex: 'involvedAmount',
key: 'involvedAmount',
width: 120 width: 120
}, },
{
title: '法院',
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true
},
{
title: '数据状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
ellipsis: true
},
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -184,14 +180,14 @@
ellipsis: true, ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss') customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
}, },
{ // {
title: '操作', // title: '操作',
key: 'action', // key: 'action',
width: 160, // width: 160,
fixed: 'right', // fixed: 'right',
align: 'center', // align: 'center',
hideInSetting: true // hideInSetting: true
} // }
]); ]);
/* 搜索 */ /* 搜索 */
@@ -226,14 +222,14 @@
filename: '限制高消费', filename: '限制高消费',
columns: [ columns: [
{ title: 'ID', dataIndex: 'id' }, { title: 'ID', dataIndex: 'id' },
{ title: '数据类型', dataIndex: 'dataType' },
{ title: '原告/上诉人', dataIndex: 'plaintiffAppellant' },
{ title: '发生时间', dataIndex: 'occurrenceTime' },
{ title: '案号', dataIndex: 'caseNumber' }, { title: '案号', dataIndex: 'caseNumber' },
{ title: '案由', dataIndex: 'causeOfAction' }, { title: '限消令对象', dataIndex: 'dataType' },
{ title: '涉案金额', dataIndex: 'involvedAmount' }, { title: '限制法定代表人', dataIndex: 'plaintiffAppellant' },
{ title: '法院', dataIndex: 'courtName' }, { title: '申请人', dataIndex: 'appellee' },
{ title: '数据状态', dataIndex: 'dataStatus' }, { title: '涉案金额(元)', dataIndex: 'involvedAmount' },
{ title: '执行法院', dataIndex: 'courtName' },
{ title: '立案日期', dataIndex: 'occurrenceTime' },
{ title: '发布日期', dataIndex: 'releaseDate' },
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',
@@ -306,7 +302,7 @@
}, },
// 行双击事件 // 行双击事件
onDblclick: () => { onDblclick: () => {
openEdit(record); // openEdit(record);
} }
}; };
}; };