From 13a5bf8585650a7cc626a34711102edf60398192 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期四, 30 十二月 2021 15:55:02 +0800 Subject: [PATCH] 修复显示详情信息出现的报错 --- src/views/monitor/job/index.vue | 2 +- src/views/monitor/operlog/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/monitor/job/index.vue b/src/views/monitor/job/index.vue index f7b9e35..cb008b7 100644 --- a/src/views/monitor/job/index.vue +++ b/src/views/monitor/job/index.vue @@ -348,7 +348,7 @@ } /** 浠诲姟缁勫悕瀛楀吀缈昏瘧 */ function jobGroupFormat(row, column) { - return proxy.selectDictLabel(sys_job_group, row.jobGroup); + return proxy.selectDictLabel(sys_job_group.value, row.jobGroup); } /** 鍙栨秷鎸夐挳 */ function cancel() { diff --git a/src/views/monitor/operlog/index.vue b/src/views/monitor/operlog/index.vue index d998d5c..d6501cd 100644 --- a/src/views/monitor/operlog/index.vue +++ b/src/views/monitor/operlog/index.vue @@ -238,7 +238,7 @@ } /** 鎿嶄綔鏃ュ織绫诲瀷瀛楀吀缈昏瘧 */ function typeFormat(row, column) { - return selectDictLabel(sys_oper_type, row.businessType); + return proxy.selectDictLabel(sys_oper_type.value, row.businessType); } /** 鎼滅储鎸夐挳鎿嶄綔 */ function handleQuery() { -- Gitblit v1.9.3