소스 검색

登录开屏

ouyj 4 달 전
부모
커밋
23daff9428
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      api/system/config.uts

+ 14 - 0
api/system/config.uts

@@ -0,0 +1,14 @@
+/**
+ * 系统参数配置接口
+ */
+import { request } from '@/utils/request'
+
+/**
+ * 根据参数键名查询参数值
+ */
+export const getConfigKey = (configKey: string): Promise<any> => {
+    return request({
+        url: '/system/config/configKey/' + configKey,
+        method: 'GET'
+    })
+}