|
@@ -198,15 +198,15 @@ export default defineComponent({
|
|
|
}
|
|
|
},
|
|
|
// {title: '工种名称', dataIndex: 'workName', key: 'workName', align: "center"},
|
|
|
- {title: '文化程度', dataIndex: 'cultureLevelName', key: 'cultureLevelName', width: 150, align: "center"},
|
|
|
+ {title: '学历要求', dataIndex: 'cultureLevelName', key: 'cultureLevelName', width: 150, align: "center"},
|
|
|
{
|
|
|
title: '薪酬', dataIndex: 'postSalary', key: 'postSalary', align: "center", customRender: (item) => {
|
|
|
const salary = showSalary(item.record.minSalary,item.record.maxSalary);/*`${item.record.minSalary ?? ""}-${item.record.maxSalary ?? ""}`*/
|
|
|
return salary;
|
|
|
}
|
|
|
},
|
|
|
- {title: '联系人', dataIndex: 'userName', key: 'userName', align: "center"},
|
|
|
- {title: '联系电话', dataIndex: 'userMobile', key: 'userMobile', width: 200, align: "center"},
|
|
|
+ {title: '联系人', dataIndex: 'contactName', key: 'contactName', align: "center"},
|
|
|
+ {title: '联系电话', dataIndex: 'contactMobile', key: 'contactMobile', width: 200, align: "center"},
|
|
|
{title: '推荐数量', dataIndex: 'recommendNum',key: 'recommendNum',width: 100, align: "center"},
|
|
|
{title: '操作', key: 'operation', fixed: 'right', width: 240, align: "center"},
|
|
|
];
|