From c83e653ebaef064b0741c1f35cf6576762ccbc68 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期六, 10 七月 2021 16:30:14 +0800 Subject: [PATCH] 系统设置修改 --- src/api/system.ts | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/api/system.ts b/src/api/system.ts index 22c50bc..4683aef 100644 --- a/src/api/system.ts +++ b/src/api/system.ts @@ -135,6 +135,21 @@ }); }; +export const upNetCard = (query: any) => { + return request({ + url: "/data/api-v/sysset/upNetCard", + method: "post", + data: qs.stringify(query) + }); +}; +export const downNetCard = (query: any) => { + return request({ + url: "/data/api-v/sysset/downNetCard", + method: "post", + data: qs.stringify(query) + }); +}; + export const setServerName = (query: any) => { return request({ url: "/data/api-v/sysset/setSerName", @@ -239,4 +254,4 @@ method: "get", params: query }); -}; \ No newline at end of file +}; -- Gitblit v1.8.0