feat: show job region and website source separately
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
2026-07-21 18:01:32 +08:00
parent 13256db26d
commit 13fdce8104
2 changed files with 12 additions and 1 deletions

View File

@@ -275,7 +275,7 @@ function ManagementList() {
hideInSearch: true,
},
{
title: '岗位来源',
title: '岗位区域',
dataIndex: 'jobType',
valueType: 'text',
align: 'center',
@@ -299,6 +299,14 @@ function ManagementList() {
);
},
},
{
title: '岗位来源',
dataIndex: 'externalSourceName',
valueType: 'text',
align: 'center',
hideInSearch: true,
render: (_, record) => record.externalSourceName || record.dataSource || '本地岗位',
},
{
title: '浏览量',
dataIndex: 'view',

View File

@@ -32,6 +32,9 @@ declare namespace API.ManagementList {
release?: number;
isPublish?: number;
jobType?: string;
dataSource?: string;
externalSourceCode?: string;
externalSourceName?: string;
jobContactList?: ContactPerson[];
createTime?: string;
jobCategory?: string;