From acb236431d87a46ec5fa4385c2779eb52d242232 Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Sun, 23 Feb 2025 17:09:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E6=8E=A5=E5=8F=A3api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/screen/index.ts | 15 ++++----- src/views/screen/compenonts/leftwrapper.vue | 33 +++++++++++++++++++- src/views/screen/compenonts/numbox.vue | 2 +- src/views/screen/compenonts/rightwrapper.vue | 24 ++++++++++++++ 4 files changed, 63 insertions(+), 11 deletions(-) diff --git a/src/api/screen/index.ts b/src/api/screen/index.ts index f4f148b..47d8d45 100644 --- a/src/api/screen/index.ts +++ b/src/api/screen/index.ts @@ -4,31 +4,28 @@ import request from '@/config/axios' // 数据大屏 API export const ScreenApi = { // 查询大屏左侧第一个接口 - getLifeFirst: async (params: any) => { - return await request.get({ url: `/system/big-view-data/getLifeFirst`, params }) + getLeftFirst: async (params: any) => { + return await request.get({ url: `/system/big-view-data/getLeftFirst`, params }) }, getLeftSecond: async (params: any) => { return await request.get({ url: `/system/big-view-data/getLeftSecond`, params }) }, - getLeftThird: async (params: any) => { + getLeftThird: async (params: any) => { return await request.get({ url: `/system/big-view-data/getLeftThird`, params }) }, - getRightFirst: async (params: any) => { + getRightFirst: async (params: any) => { return await request.get({ url: `/system/big-view-data/getRightFirst`, params }) }, - getRightSecond: async (params: any) => { + getRightSecond: async (params: any) => { return await request.get({ url: `/system/big-view-data/getRightSecond`, params }) }, - getRightThird: async (params: any) => { + getRightThird: async (params: any) => { return await request.get({ url: `/system/big-view-data/getRightThird`, params }) }, - - - } \ No newline at end of file diff --git a/src/views/screen/compenonts/leftwrapper.vue b/src/views/screen/compenonts/leftwrapper.vue index 9ec9bb2..504171a 100644 --- a/src/views/screen/compenonts/leftwrapper.vue +++ b/src/views/screen/compenonts/leftwrapper.vue @@ -14,6 +14,8 @@