Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
3c2c0c00955eb4476632c5d5e3ac3da6fdeb2d9a
Authored by
fengwotao
2023-08-01 11:20:23 +0800
1 parent
6f5258fa
fix: 修改报表配置设备属性之前取的identifier,应该取name字段
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/report/config/hooks/index.hooks.ts
src/views/report/config/hooks/index.hooks.ts
View file @
3c2c0c0
...
...
@@ -49,7 +49,7 @@ export const useHooks = () => {
49
49
const item = ref<TSelectOption>();
50
50
if (items?.identifier !== null) {
51
51
item.value = {
52
-
label: items?.
identifier
,
52
+
label: items?.
name
,
53
53
value: items?.identifier,
54
54
};
55
55
return item.value;
...
...