From 5954c8a838fb8fa51e234216da108c1b95bd7412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E9=B9=8F?= Date: Sun, 6 Apr 2025 15:20:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E6=88=90=E7=9B=91=E6=8E=A7?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/p2p.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 api/p2p.js diff --git a/api/p2p.js b/api/p2p.js new file mode 100644 index 0000000..7f6d4a4 --- /dev/null +++ b/api/p2p.js @@ -0,0 +1,12 @@ +import request from '../utils/request' + +// p2p 模块 + +// 获取p2pInfo +export function getP2pInfo(data) { + return request({ + url: '/v1/tencentYun/getDeviceDetail', + method: 'POST', + data + }) +}