File tree Expand file tree Collapse file tree 5 files changed +15
-5
lines changed
dss-data-api/dss-data-api-server/src/main/java/com/webank/wedatasphere/dss/data/api/server/dao/impl Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 56
56
<if test =" apiName != null and apiName != ''" >
57
57
AND a.api_name LIKE concat('%', #{apiName}, '%')
58
58
</if >
59
- ORDER BY a.create_by DESC
59
+ ORDER BY a.update_time DESC
60
60
</select >
61
61
</mapper >
Original file line number Diff line number Diff line change 51
51
"col_groupName" : " GroupName" ,
52
52
"col_label" : " Label" ,
53
53
"col_createBy" : " CreateBy" ,
54
+ "col_updateTime" : " updateTime" ,
55
+ "col_createTime" : " createTime" ,
54
56
"viewMonitor" : " View Monitor"
55
57
},
56
58
"apiCall" : {
Original file line number Diff line number Diff line change 51
51
"col_groupName" : " 业务流程" ,
52
52
"col_label" : " 标签" ,
53
53
"col_createBy" : " 负责人" ,
54
+ "col_updateTime" : " 更新时间" ,
55
+ "col_createTime" : " 创建时间" ,
54
56
"viewMonitor" : " 查看监控图表"
55
57
},
56
58
"apiCall" : {
Original file line number Diff line number Diff line change 94
94
</Form-item >
95
95
<Form-item :label =" $t('message.dataService.apiCall.authForm.labelFlow')" prop =" groupId" >
96
96
<Select filterable v-model =" authFormData.groupId" :disabled =" !!authFormData.id" >
97
- <Option v-for =" item in groups" :key =" item.groupId" :value =" `${item.groupId}`" >
98
- {{ item.groupName}}
99
- </Option >
97
+ <Option v-for =" item in groups" :key =" item.groupId" :value =" `${item.groupId}`" >{{ item.groupName}}</Option >
100
98
</Select >
101
99
</Form-item >
102
100
</Form >
Original file line number Diff line number Diff line change @@ -195,6 +195,14 @@ export default {
195
195
title: this .$t (" message.dataService.apiMonitor.col_createBy" ),
196
196
key: ' createBy'
197
197
},
198
+ {
199
+ title: this .$t (" message.dataService.apiMonitor.col_updateTime" ),
200
+ key: ' updateTime'
201
+ },
202
+ {
203
+ title: this .$t (" message.dataService.apiMonitor.col_createTime" ),
204
+ key: ' createTime'
205
+ },
198
206
{
199
207
title: this .$t (" message.dataService.operation" ),
200
208
key: " operation" ,
@@ -540,4 +548,4 @@ export default {
540
548
margin : 15px 0 ;
541
549
padding : 10px 0 ;
542
550
}
543
- </style >
551
+ </style >
You can’t perform that action at this time.
0 commit comments