Skip to content

Commit 8588106

Browse files
author
万安沛
committed
Merge branch 'dev-1.2.0_k8s' into 'develop'
Dev 1.2.0 k8s See merge request luban/dataspherestudio!237
2 parents 117d7e7 + 5086d3e commit 8588106

File tree

5 files changed

+15
-5
lines changed

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/ApiConfigMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@
5656
<if test="apiName != null and apiName != ''">
5757
AND a.api_name LIKE concat('%', #{apiName}, '%')
5858
</if>
59-
ORDER BY a.create_by DESC
59+
ORDER BY a.update_time DESC
6060
</select>
6161
</mapper>

web/src/apps/dataService/i18n/en.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
"col_groupName": "GroupName",
5252
"col_label": "Label",
5353
"col_createBy": "CreateBy",
54+
"col_updateTime": "updateTime",
55+
"col_createTime": "createTime",
5456
"viewMonitor": "View Monitor"
5557
},
5658
"apiCall": {

web/src/apps/dataService/i18n/zh.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
"col_groupName": "业务流程",
5252
"col_label": "标签",
5353
"col_createBy": "负责人",
54+
"col_updateTime": "更新时间",
55+
"col_createTime": "创建时间",
5456
"viewMonitor": "查看监控图表"
5557
},
5658
"apiCall": {

web/src/apps/dataService/module/dataManagement/apiCall.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@
9494
</Form-item>
9595
<Form-item :label="$t('message.dataService.apiCall.authForm.labelFlow')" prop="groupId">
9696
<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>
10098
</Select>
10199
</Form-item>
102100
</Form>

web/src/apps/dataService/module/dataManagement/apiMonitor.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,14 @@ export default {
195195
title: this.$t("message.dataService.apiMonitor.col_createBy"),
196196
key: 'createBy'
197197
},
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+
},
198206
{
199207
title: this.$t("message.dataService.operation"),
200208
key: "operation",
@@ -540,4 +548,4 @@ export default {
540548
margin: 15px 0;
541549
padding: 10px 0;
542550
}
543-
</style>
551+
</style>

0 commit comments

Comments
 (0)