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 {
// ID
id?: number;
// 数据类型
dataType?: string;
// 原告/上诉人
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间
occurrenceTime?: string;
// 案号
caseNumber?: string;
// 案由
causeOfAction?: string;
// 涉案金额
appellee?: string;
plaintiffAppellant?: string;
unfulfilledAmount?: string;
involvedAmount?: string;
// 法院
courtName?: string;
// 数据状态
dataStatus?: string;
occurrenceTime?: string;
finalDate?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

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

View File

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

View File

@@ -1,13 +1,14 @@
<!-- 编辑弹窗 -->
<template>
<ele-modal
:width="800"
width="70%"
:visible="visible"
:maskClosable="false"
:maxable="maxable"
:title="isUpdate ? '编辑行政许可' : '添加行政许可'"
:title="isUpdate ? '行政许可详情' : '添加行政许可'"
:body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible"
:footer="null"
@ok="save"
>
<a-form
@@ -47,13 +48,6 @@
v-model:value="form.type"
/>
</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-input
allow-clear
@@ -89,64 +83,6 @@
v-model:value="form.dataSourceUnit"
/>
</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>
</ele-modal>
</template>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -7,8 +7,7 @@
:columns="columns"
:datasource="datasource"
:customRow="customRow"
tool-class="ele-toolbar-form"
:scroll="{ x: 2000 }"
:scroll="{ x: 10000 }"
class="sys-org-table"
>
<template #toolbar>
@@ -26,12 +25,12 @@
<template v-if="column.key === 'image'">
<a-image :src="record.image" :width="50" />
</template>
<template v-if="column.key === 'name'">
<template v-if="column.key === 'matchName'">
<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 v-else>
{{ record.name }}
{{ record.matchName }}
</template>
</template>
<template v-if="column.key === 'status'">
@@ -179,44 +178,37 @@
title: '原文件导入名称',
dataIndex: 'name',
key: 'name',
ellipsis: true,
width: 240
},
{
title: '系统匹配企业名称',
dataIndex: 'matchName',
key: 'matchName',
ellipsis: true,
width: 240
},
{
title: '统一社会信用代码',
dataIndex: 'code',
key: 'code',
ellipsis: true,
width: 200
},
{
title: '登记状态',
dataIndex: 'registrationStatus',
key: 'registrationStatus',
ellipsis: true,
width: 120
},
{
title: '法定代表人',
dataIndex: 'legalPerson',
key: 'legalPerson',
ellipsis: true,
width: 120
},
{
title: '注册资本',
dataIndex: 'registeredCapital',
key: 'registeredCapital',
ellipsis: true,
width: 120
},
{
title: '实缴资本',
dataIndex: 'paidinCapital',
key: 'paidinCapital'
},
{
title: '成立日期',
dataIndex: 'establishDate',
@@ -225,39 +217,225 @@
width: 120
},
{
title: '电话',
dataIndex: 'tel',
key: 'tel',
title: '统一社会信用代码',
dataIndex: 'code',
key: 'code',
ellipsis: true,
width: 150
width: 200
},
{
title: '企业地址',
dataIndex: 'address',
key: 'address',
ellipsis: true,
width: 120
},
{
title: '所属省份',
dataIndex: 'province',
key: 'province',
ellipsis: true,
width: 120
},
{
title: '所属城市',
dataIndex: 'city',
key: 'city',
ellipsis: true,
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: '企查分',
dataIndex: 'enterpriseScoreCheck',
key: 'enterpriseScoreCheck',
ellipsis: true,
width: 120
key: 'enterpriseScoreCheck'
},
{
title: '信用等级',
dataIndex: 'creditRating',
key: 'creditRating',
ellipsis: true,
width: 120
key: 'creditRating'
},
{
title: '科创分',
dataIndex: 'cechnologyScore',
key: 'cechnologyScore'
},
{
title: '科创等级',
dataIndex: 'cechnologyLevel',
key: 'cechnologyLevel'
},
{
title: '是否小微企业',

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -8,6 +8,7 @@
:columns="columns"
:datasource="datasource"
:customRow="customRow"
:scroll="{ x: 2400 }"
tool-class="ele-toolbar-form"
class="sys-org-table"
>
@@ -141,162 +142,49 @@
{
title: '案件名称',
dataIndex: 'name',
key: 'name',
ellipsis: true
key: 'name'
},
{
title: '案件类型',
dataIndex: 'infoType',
key: 'infoType',
ellipsis: true
key: 'infoType'
},
{
title: '案由',
dataIndex: 'reason',
key: 'reason',
ellipsis: true
key: 'reason'
},
{
title: '进程日期',
dataIndex: 'processDate',
key: 'processDate',
ellipsis: true
key: 'processDate'
},
{
title: '案件进程',
dataIndex: 'caseProgress',
key: 'caseProgress',
ellipsis: true
key: 'caseProgress'
},
{
title: '案件身份',
dataIndex: 'caseIdentity',
key: 'caseIdentity',
ellipsis: true
key: 'caseIdentity'
},
{
title: '案号',
dataIndex: 'code',
key: 'code',
ellipsis: true
key: 'code'
},
{
title: '法院',
dataIndex: 'court',
key: 'court',
ellipsis: true
key: 'court'
},
{
title: '案件金额(元)',
dataIndex: 'caseAmount',
key: 'caseAmount',
ellipsis: true
key: 'caseAmount'
}
// {
// 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: '操作',
// key: 'action',
// width: 180,
@@ -406,7 +294,7 @@
},
// 行双击事件
onDblclick: () => {
openEdit(record);
// openEdit(record);
}
};
};

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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