| | |
| | | PreviewBtnV2, |
| | | } from '@bole-core/components'; |
| | | import { setOSSLink } from '@/utils'; |
| | | import { BaseDeclareEnterpriseTableViewColumns } from '@/constants'; |
| | | |
| | | defineOptions({ |
| | | name: 'DeclareEnterpriseTableView', |
| | |
| | | searchKeyWord: string; |
| | | }; |
| | | openDialog?: (row) => void; |
| | | column?: API.ModuleColumnDto[]; |
| | | }; |
| | | |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | | |
| | | const column = defineColumns([ |
| | | { |
| | | id: '1', |
| | | enCode: 'userName', |
| | | name: '帐号', |
| | | }, |
| | | { |
| | | id: '2', |
| | | enCode: 'enterpriseName', |
| | | name: '企业名称', |
| | | }, |
| | | { |
| | | id: '3', |
| | | enCode: 'societyCreditCode', |
| | | name: '信用代码', |
| | | }, |
| | | { |
| | | id: '4', |
| | | enCode: 'contactPhone', |
| | | name: '电话', |
| | | }, |
| | | { |
| | | id: '5', |
| | | enCode: 'authType', |
| | | name: '企业类型', |
| | | }, |
| | | { |
| | | id: '6', |
| | | enCode: 'licenseUrl', |
| | | name: '营业执照', |
| | | }, |
| | | { |
| | | id: '7', |
| | | enCode: 'bankAccountInfo', |
| | | name: '基本户信息', |
| | | }, |
| | | ]); |
| | | const props = withDefaults(defineProps<Props>(), { |
| | | column: () => BaseDeclareEnterpriseTableViewColumns, |
| | | }); |
| | | |
| | | const operationBtns = defineOperationBtns([ |
| | | { |