File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import request from '@/config/axios'
3
3
// IoT 插件信息 VO
4
4
export interface PluginInfoVO {
5
5
id : number // 主键ID
6
- pluginId : string // 插件包id
6
+ pluginKey : string // 插件标识
7
7
name : string // 插件名称
8
8
description : string // 描述
9
9
deployType : number // 部署方式
Original file line number Diff line number Diff line change 14
14
<el-descriptions-item label =" 插件名称" >
15
15
{{ pluginInfo.name }}
16
16
</el-descriptions-item >
17
- <el-descriptions-item label =" 插件ID " >
18
- {{ pluginInfo.pluginId }}
17
+ <el-descriptions-item label =" 插件标识 " >
18
+ {{ pluginInfo.pluginKey }}
19
19
</el-descriptions-item >
20
20
<el-descriptions-item label =" 版本号" >
21
21
{{ pluginInfo.version }}
Original file line number Diff line number Diff line change 52
52
<ContentWrap >
53
53
<el-table v-loading =" loading" :data =" list" :stripe =" true" :show-overflow-tooltip =" true" >
54
54
<el-table-column label =" 插件名称" align =" center" prop =" name" />
55
- <el-table-column label =" 组件id " align =" center" prop =" pluginId " />
55
+ <el-table-column label =" 插件标识 " align =" center" prop =" pluginKey " />
56
56
<el-table-column label =" jar包" align =" center" prop =" file" />
57
57
<el-table-column label =" 版本号" align =" center" prop =" version" />
58
58
<el-table-column label =" 部署方式" align =" center" prop =" deployType" >
You can’t perform that action at this time.
0 commit comments