修复显示详情信息出现的报错

master
RuoYi 3 years ago
parent fa97ed9e2c
commit 13a5bf8585
  1. 2
      src/views/monitor/job/index.vue
  2. 2
      src/views/monitor/operlog/index.vue

@ -348,7 +348,7 @@ function getList() {
} }
/** 任务组名字典翻译 */ /** 任务组名字典翻译 */
function jobGroupFormat(row, column) { function jobGroupFormat(row, column) {
return proxy.selectDictLabel(sys_job_group, row.jobGroup); return proxy.selectDictLabel(sys_job_group.value, row.jobGroup);
} }
/** 取消按钮 */ /** 取消按钮 */
function cancel() { function cancel() {

@ -238,7 +238,7 @@ function getList() {
} }
/** 操作日志类型字典翻译 */ /** 操作日志类型字典翻译 */
function typeFormat(row, column) { function typeFormat(row, column) {
return selectDictLabel(sys_oper_type, row.businessType); return proxy.selectDictLabel(sys_oper_type.value, row.businessType);
} }
/** 搜索按钮操作 */ /** 搜索按钮操作 */
function handleQuery() { function handleQuery() {

Loading…
Cancel
Save