|
@@ -8,7 +8,7 @@
|
|
|
>
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="6">
|
|
|
- <a-form-item label="招聘会名称" :label-col="{ span: 8 }" name="name">
|
|
|
+ <a-form-item label="活动名称" :label-col="{ span: 8 }" name="name">
|
|
|
<a-input v-model:value="searchParams.jobFairsName" placeholder="" :allow-clear="true"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -26,7 +26,7 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
- <a-form-item label="招聘会时间" :label-col="{ span: 8 }" name="createDate">
|
|
|
+ <a-form-item label="活动时间" :label-col="{ span: 8 }" name="createDate">
|
|
|
<a-range-picker v-model:value="fairDate" :placeholder="['开始日期', '结束日期']" format="YYYY-MM-DD"
|
|
|
@change="onFairDateChange"/>
|
|
|
</a-form-item>
|
|
@@ -140,11 +140,11 @@ const tableColumns: TableColumnsType = [
|
|
|
customRender: item => `${searchParams.pageSize * (searchParams.pageIndex - 1) + item.index + 1}`,
|
|
|
width: 100
|
|
|
},
|
|
|
- {title: '招聘会名称', dataIndex: 'name', key: 'name', align: "center"},
|
|
|
- {title: '招聘会地址', dataIndex: 'address', key: 'address', align: "center"},
|
|
|
+ {title: '活动名称', dataIndex: 'name', key: 'name', align: "center"},
|
|
|
+ {title: '活动地址', dataIndex: 'address', key: 'address', align: "center"},
|
|
|
{title: '联系人', dataIndex: 'userName', key: 'userName', align: "center"},
|
|
|
{title: '联系电话', dataIndex: 'userMrobile', key: 'userMrobile', align: "center"},
|
|
|
- {title: '招聘会时间', dataIndex: 'startTime', key: 'startTime', align: "center"},
|
|
|
+ {title: '活动时间', dataIndex: 'startTime', key: 'startTime', align: "center"},
|
|
|
{title: '操作', key: 'operation', fixed: 'right', width: 150, align: "center"},
|
|
|
]
|
|
|
const tablePagination = computed(() => ({
|
|
@@ -190,6 +190,7 @@ function onDetail(record) {
|
|
|
|
|
|
// 删除
|
|
|
function onDel(record) {
|
|
|
+ tableState.selectedRowKeys=[];
|
|
|
if (record) {
|
|
|
tableState.selectedRowKeys.push(record.jobfairsID as never)
|
|
|
}
|
|
@@ -199,7 +200,7 @@ function onDel(record) {
|
|
|
return false;
|
|
|
}
|
|
|
Modal.confirm({
|
|
|
- title: '确认删除?',
|
|
|
+ title: '确认删除选中的就业服务活动?',
|
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
|
content: '',
|
|
|
okText: '确认删除',
|