From 5c3558f43a876afacccc4d0404d94546c4fe2d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E9=98=BF=E9=BE=99?= Date: Mon, 15 Aug 2022 11:21:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E5=B1=95=E7=A4=BA=E5=9C=B0?= =?UTF-8?q?=E5=9B=BE=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue/src/api/iot/bigScreen.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vue/src/api/iot/bigScreen.js diff --git a/vue/src/api/iot/bigScreen.js b/vue/src/api/iot/bigScreen.js new file mode 100644 index 00000000..603b9685 --- /dev/null +++ b/vue/src/api/iot/bigScreen.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +// 大屏 map +export function map(data) { + return request({ + url: '/iot/big/screen/map', + method: 'post', + data: data + }) +}