diff --git a/src/api/system/apiSecret.js b/src/api/system/apiSecret.js
new file mode 100644
index 00000000..01822b6f
--- /dev/null
+++ b/src/api/system/apiSecret.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询api密钥列表
+export function listSecret(query) {
+ return request({
+ url: '/system/secret/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询api密钥详细
+export function getSecret(recordId) {
+ return request({
+ url: '/system/secret/' + recordId,
+ method: 'get'
+ })
+}
+
+// 新增api密钥
+export function addSecret(data) {
+ return request({
+ url: '/system/secret',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改api密钥
+export function updateSecret(data) {
+ return request({
+ url: '/system/secret',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除api密钥
+export function delSecret(recordId) {
+ return request({
+ url: '/system/secret/' + recordId,
+ method: 'delete'
+ })
+}
+
+// 导出api密钥
+export function exportSecret(query) {
+ return request({
+ url: '/system/secret/export',
+ method: 'get',
+ params: query
+ })
+}
\ No newline at end of file
diff --git a/src/views/apiSecret/index.vue b/src/views/apiSecret/index.vue
new file mode 100644
index 00000000..529eeac0
--- /dev/null
+++ b/src/views/apiSecret/index.vue
@@ -0,0 +1,381 @@
+
+