@@ -30,7 +30,15 @@
SELECT
'' AS ServiceID,
jobUser.JobUserID,
- CONCAT( '已入职', company.CompanyName, '的', prof.ProfessionName, '岗位' ) AS ServiceContent,
+ CONCAT(
+ '已入职推荐的',
+ company.CompanyName,
+ '的',
+ prof.ProfessionName,
+ '岗位',
+ IF
+ ( mgt.remark IS NOT NULL AND mgt.remark != '', CONCAT( '(', mgt.remark, ')' ), '' )
+ ) AS ServiceContent,
mgt.ModifyTime AS ServiceTime,
mgt.ModifyUserID AS ServiceUserID,
2 AS ServiceType
@@ -131,7 +131,7 @@ const tableColumns = [
];
// 表格分页数据
const tablePagination = computed(() => ({
- total: serviceRecordsTotal,
+ total: serviceRecordsTotal.value,
current: searchParams.pageIndex,
pageSize: searchParams.pageSize,
showSizeChanger: true,