@@ -0,0 +1,9 @@
+import request from '@/utils/request';
+
+// 查询平台列表
+export function listPlatform() {
+ return request({
+ url: '/system/platform/list',
+ method: 'get'
+ });
+}
@@ -0,0 +1,5 @@
+// 平台类型
+export interface PlatformVO {
+ id: number;
+ label: string;