|
@@ -131,7 +131,7 @@
|
|
|
<template v-if="column.key === 'recordStatus'">
|
|
|
<div style="text-align: center;">
|
|
|
<label v-if="record.recordStatus==1" style="color:green;" >启用</label>
|
|
|
- <label v-if="record.recordStatus==0" style="color:red;">停用</label>
|
|
|
+ <label v-if="record.recordStatus==0" style="color:red;">禁用</label>
|
|
|
</div>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -206,7 +206,7 @@ export default defineComponent({
|
|
|
{cnName: '岗位最高月薪', enName: 'maxSalary', width: 100},
|
|
|
{cnName: '岗位最低月薪', enName: 'minSalary', width: 100},
|
|
|
{cnName: '是否有试用期', enName: 'isTrailName', width: 100},
|
|
|
- {cnName: '试用期时长(月)', enName: 'trailtime', width: 100},
|
|
|
+ {cnName: '试用期时长(月)', enName: 'trailMonths', width: 100},
|
|
|
{cnName: '试用期最高薪酬', enName: 'trailMaxSalary', width: 100},
|
|
|
{cnName: '试用期最低薪酬', enName: 'trailMinSalary', width: 100},
|
|
|
{cnName: '福利待遇', enName: 'welfare', width: 100},
|
|
@@ -230,6 +230,7 @@ export default defineComponent({
|
|
|
isDisabled: true
|
|
|
},
|
|
|
{title: '岗位名称', dataIndex: 'professionName', key: 'professionName', 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",
|
|
|
customRender: (item) => {
|