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
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:
@@ -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',
|
||||
|
||||
3
src/types/Management/list.d.ts
vendored
3
src/types/Management/list.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user