Commit 3c2c0c00955eb4476632c5d5e3ac3da6fdeb2d9a

Authored by fengwotao
1 parent 6f5258fa

fix: 修改报表配置设备属性之前取的identifier,应该取name字段

@@ -49,7 +49,7 @@ export const useHooks = () => { @@ -49,7 +49,7 @@ export const useHooks = () => {
49 const item = ref<TSelectOption>(); 49 const item = ref<TSelectOption>();
50 if (items?.identifier !== null) { 50 if (items?.identifier !== null) {
51 item.value = { 51 item.value = {
52 - label: items?.identifier, 52 + label: items?.name,
53 value: items?.identifier, 53 value: items?.identifier,
54 }; 54 };
55 return item.value; 55 return item.value;