|
@@ -229,7 +229,7 @@ export default defineComponent({
|
|
|
customRender: (item) => `${searchParams.pageSize * (searchParams.pageIndex - 1) + item.index + 1}`,
|
|
|
isDisabled: true
|
|
|
},
|
|
|
- {title: '岗位名称', dataIndex: 'professionName', key: 'professionName', align: "center"},
|
|
|
+ {title: '岗位名称', dataIndex: 'professionName', key: 'professionName', width: 150, align: "center"},
|
|
|
{title: '工种名称', dataIndex: 'workName', key: 'workName', width: 200, align: "center"},
|
|
|
{title: '招聘人数', dataIndex: 'recruitCount', key: 'recruitCount', width: 120, align: "center"},
|
|
|
{title: '开始日期', dataIndex: 'startTime', key: 'startTime', width: 120, align: "center",
|
|
@@ -242,8 +242,8 @@ export default defineComponent({
|
|
|
return item.record.endTime == null ? "" : (dayjs(item.record.endTime).format('YYYY-MM-DD'))
|
|
|
}
|
|
|
},
|
|
|
- {title: '招聘企业', dataIndex: 'companyName', key: 'companyName',align: "center"},
|
|
|
- {title: '所属驿站', dataIndex: 'siteName', key: 'siteName', align: "center"},
|
|
|
+ {title: '招聘企业', dataIndex: 'companyName', key: 'companyName', width: 150,align: "center"},
|
|
|
+ {title: '所属驿站', dataIndex: 'siteName', key: 'siteName', width: 150, align: "center"},
|
|
|
{title: '岗位状态', dataIndex: 'recordStatus', key: 'recordStatus', width: 100, align: "center"},
|
|
|
{title: '学历要求', dataIndex: 'cultureLevelName', key: 'cultureLevelName', width: 150, align: "center", isDefaultClose: true},
|
|
|
{title: '薪酬', dataIndex: 'postSalary', key: 'postSalary', width: 150, align: "center",
|
|
@@ -252,8 +252,8 @@ export default defineComponent({
|
|
|
},
|
|
|
isDefaultClose: true
|
|
|
},
|
|
|
- {title: '联系人', dataIndex: 'contactName', key: 'contactName', width: 150, align: "center", isDefaultClose: true},
|
|
|
- {title: '联系电话', dataIndex: 'contactMobile', key: 'contactMobile', width: 200, align: "center", isDefaultClose: true},
|
|
|
+ {title: '联系人', dataIndex: 'contactName', key: 'contactName', width: 120, align: "center", isDefaultClose: true},
|
|
|
+ {title: '联系电话', dataIndex: 'contactMobile', key: 'contactMobile', width: 140, align: "center", isDefaultClose: true},
|
|
|
{title: '推荐数量', dataIndex: 'recommendNum', key: 'recommendNum', width: 100, align: "center", isDefaultClose: true},
|
|
|
{title: '操作', key: 'operation', fixed: 'right', width: 290, align: "center", isDisabled: true},
|
|
|
];
|