diff --git a/ruoyi-ui/src/views/isc/application/index.vue b/ruoyi-ui/src/views/isc/application/index.vue
index 74e652153..e8a3464bd 100644
--- a/ruoyi-ui/src/views/isc/application/index.vue
+++ b/ruoyi-ui/src/views/isc/application/index.vue
@@ -82,7 +82,12 @@
-
+
+
+ {{ scope.row.accessKey }}
+
+
+
@@ -254,6 +259,19 @@ export default {
this.title = "修改应用信息";
});
},
+ // 复制ak
+ handleCopy(data) {
+ let oInput = document.createElement('input')
+ oInput.value = data
+ document.body.appendChild(oInput)
+ oInput.select()
+ document.execCommand('copy')
+ this.$message({
+ message: '复制成功',
+ type: 'success'
+ })
+ oInput.remove()
+ },
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
diff --git a/ruoyi-ui/src/views/isc/appservice/index.vue b/ruoyi-ui/src/views/isc/appservice/index.vue
index 3239730a6..3a19cd800 100644
--- a/ruoyi-ui/src/views/isc/appservice/index.vue
+++ b/ruoyi-ui/src/views/isc/appservice/index.vue
@@ -88,7 +88,12 @@
-
+
+
+
+
+
+
@@ -256,7 +261,9 @@ export default {
pageSize: 10,
enabled: undefined,
status: undefined,
- applicationId: undefined
+ applicationId: undefined,
+ orderByColumn: 'update_time',
+ isAsc: 'desc'
},
applicationName: undefined,
applicationId: undefined,
@@ -399,6 +406,23 @@ export default {
this.title = "应用服务续期";
});
},
+ // 复制地址
+ handleCopy(data) {
+ let oInput = document.createElement('input')
+ oInput.value = data
+ document.body.appendChild(oInput)
+ oInput.select()
+ document.execCommand('copy')
+ this.$message({
+ message: '复制成功',
+ type: 'success'
+ })
+ oInput.remove()
+ },
+ // 处理虚拟地址
+ handleVirtualAddr(data) {
+ return data.length > 40 ? data.substring(0, 37) + '...' : data;
+ },
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {