浏览代码

[Fix 0000] 可配置首页模块会短暂显示非预期内容的问题修复

houzekong 1 月之前
父节点
当前提交
e89d9ee23e

+ 2 - 2
src/views/vent/home/configurable/configurable.data.ts

@@ -427,7 +427,7 @@ export const testConfigVent: Config[] = [
       ],
       gallery_list: [],
       complex_list: [],
-      to: '/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=sys_surface_caimei',
+      to: '/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=sys_surface_caimei&deviceid=${deviceID}',
     },
     showStyle: {
       size: 'width:450px;height:280px;',
@@ -1859,7 +1859,7 @@ export const testConfigVentRealtime: Config[] = [
       ],
       gallery_list: [],
       complex_list: [],
-      to: '/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=sys_surface_caimei',
+      to: '/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=sys_surface_caimei&deviceid=${deviceID}',
     },
     showStyle: {
       size: 'width:450px;height:280px;',

+ 4 - 4
src/views/vent/home/configurable/hooks/helper.ts

@@ -2,7 +2,8 @@ import { get, isNil } from 'lodash-es';
 
 /** 根据配置中的 formatter 将文本格式并返回 */
 export function getFormattedText(data: any, formatter: string, trans?: Record<string, string>, defaultValue?: any): string {
-  if (!data) return formatter;
+  const defval = defaultValue === undefined ? '-' : defaultValue;
+  if (!data) return defval;
 
   // e.g. 'pre${prop[0].name}suf' => ['pre${prop[0].name}suf', 'prop[0].name']
   const exp = /\$\{([\w|\.|\[|\]]*)\}/g;
@@ -12,7 +13,6 @@ export function getFormattedText(data: any, formatter: string, trans?: Record<st
   if (!res) return formatter;
 
   const [__, prop] = res;
-  const val = defaultValue === undefined ? '-' : defaultValue;
   const txt = get(data, prop);
 
   // 如果指明了需要进行翻译,那么根据 txt 的值查找翻译内容,必要时进行二次翻译
@@ -21,9 +21,9 @@ export function getFormattedText(data: any, formatter: string, trans?: Record<st
     // 如果查不出翻译内容则返回原本的值
     if (translated === undefined) return txt;
     const result = getFormattedText(data, translated);
-    return formatter.replace(exp, isNil(result) ? val : result);
+    return formatter.replace(exp, isNil(result) ? defval : result);
   }
-  return formatter.replace(exp, isNil(txt) ? val : txt);
+  return formatter.replace(exp, isNil(txt) ? defval : txt);
 }
 
 /** 获取 formatter 需要取的源 prop,用于在一些不支持 formatter 的组件中使用 */