diff --git a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireAllList.js b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireAllList.js index d965cc2716b6a2665e5a73e50cdf4daa27c59312..39c8b31549dbedf21d222cc7c6277baea1613d47 100644 --- a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireAllList.js +++ b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireAllList.js @@ -35,6 +35,7 @@ layui.config({ }}, { field: 'wages', title: '薪资范围', width: 120 }, { field: 'recruitNum', title: '需求人数', width: 100 }, + { field: 'recruitedNum', title: '已招聘人数', width: 100 }, { field: 'processInstanceId', title: '流程ID', width: 100, templet: function (d) { return '' + d.processInstanceId + ''; }}, diff --git a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireList.js b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireList.js index bfc2ffb81051c3a4fa3fad75d09cd9477c5c11c9..2f0be60df6cacf1ae594feeed4b8800b77a464c7 100644 --- a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireList.js +++ b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireList.js @@ -43,6 +43,7 @@ layui.config({ }}, { field: 'wages', title: '薪资范围', width: 120 }, { field: 'recruitNum', title: '需求人数', width: 100 }, + { field: 'recruitedNum', title: '已招聘人数', width: 100 }, { field: 'createName', title: systemLanguage["com.skyeye.createName"][languageType], width: 120 }, { field: 'createTime', title: systemLanguage["com.skyeye.createTime"][languageType], align: 'center', width: 150 }, { field: 'lastUpdateName', title: systemLanguage["com.skyeye.lastUpdateName"][languageType], align: 'left', width: 120 }, diff --git a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeList.js b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeList.js index ac208dd6c0922501c39cf8af723e18715a1ced85..2732f05ea8ce3ed4544a68212fd5073469d3b64b 100644 --- a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeList.js +++ b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeList.js @@ -40,6 +40,7 @@ layui.config({ }}, { field: 'wages', title: '薪资范围', width: 120 }, { field: 'recruitNum', title: '需求人数', width: 100 }, + { field: 'recruitedNum', title: '已招聘人数', width: 100 }, { field: 'createName', title: systemLanguage["com.skyeye.createName"][languageType], width: 120 }, { field: 'createTime', title: systemLanguage["com.skyeye.createTime"][languageType], align: 'center', width: 150 }, { field: 'lastUpdateName', title: systemLanguage["com.skyeye.lastUpdateName"][languageType], align: 'left', width: 120 }, diff --git a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeListChoose.js b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeListChoose.js index 06f1ad7060cd0bcffde0d62afb8aef79e25b0010..56d130498e53de30359baefe6df05b2d35febb59 100644 --- a/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeListChoose.js +++ b/boss/src/main/resources/template/js/bossPersonRequire/bossPersonRequireMyChargeListChoose.js @@ -38,6 +38,7 @@ layui.config({ }}, { field: 'wages', title: '薪资范围', width: 120 }, { field: 'recruitNum', title: '需求人数', width: 100 }, + { field: 'recruitedNum', title: '已招聘人数', width: 100 }, { field: 'createName', title: systemLanguage["com.skyeye.createName"][languageType], width: 120 }, { field: 'createTime', title: systemLanguage["com.skyeye.createTime"][languageType], align: 'center', width: 150 }, { field: 'lastUpdateName', title: systemLanguage["com.skyeye.lastUpdateName"][languageType], align: 'left', width: 120 }, @@ -47,7 +48,7 @@ layui.config({ matchingLanguage(); for (var i = 0; i < res.rows.length; i++) { // 招聘结束的设置为不可选中 - if(res.rows[i].state == 'endRecruitment'){ + if (res.rows[i].state == 'endRecruitment') { systemCommonUtil.disabledRow(res.rows[i].LAY_TABLE_INDEX, 'radio'); } } diff --git a/web/src/main/resources/template/json/skyeyeClassEnum.json b/web/src/main/resources/template/json/skyeyeClassEnum.json index 2786cea21b6d3cf9d57e62fb3e5fb44b13c02070..5e72dfdb5f2aa0d0565749fad1b2e5d7b1aef59a 100644 --- a/web/src/main/resources/template/json/skyeyeClassEnum.json +++ b/web/src/main/resources/template/json/skyeyeClassEnum.json @@ -143,6 +143,7 @@ "jobDiaryType": {"name": "日志类型", "className": "skyeye-jobdiary#com.skyeye.eve.classenum.JobDiaryType"}, "jobDiaryState": {"name": "日志状态", "className": "skyeye-jobdiary#com.skyeye.eve.classenum.JobDiaryState"}, + "readState": {"name": "日志阅读状态", "className": "skyeye-jobdiary#com.skyeye.eve.classenum.ReadState"}, "scheduleRemindType": {"name": "日程提醒时间所属类型", "className": "skyeye-schedule#com.skyeye.eve.classenum.ScheduleRemindType"}, "scheduleImported": {"name": "日程重要性", "className": "skyeye-schedule#com.skyeye.eve.classenum.ScheduleImported"},