@@ -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'
+ })
+}