diff --git a/src/api/screen/index.ts b/src/api/screen/index.ts
new file mode 100644
index 0000000..f4f148b
--- /dev/null
+++ b/src/api/screen/index.ts
@@ -0,0 +1,34 @@
+import request from '@/config/axios'
+
+
+// 数据大屏 API
+export const ScreenApi = {
+      // 查询大屏左侧第一个接口
+      getLifeFirst: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getLifeFirst`, params })
+      },
+
+       getLeftSecond: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getLeftSecond`, params })
+      },
+
+       getLeftThird: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getLeftThird`, params })
+      },
+
+       getRightFirst: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getRightFirst`, params })
+      },
+
+       
+       getRightSecond: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getRightSecond`, params })
+      },
+
+       getRightThird: async (params: any) => {
+        return await request.get({ url: `/system/big-view-data/getRightThird`, params })
+      },
+
+      
+      
+}
\ No newline at end of file