Browse Source

引导页接口文件

DESKTOP-O04BTUJ\muzen 3 years ago
parent
commit
d1490b97f6
1 changed files with 9 additions and 0 deletions
  1. 9 0
      src/api/guide.js

+ 9 - 0
src/api/guide.js

@@ -0,0 +1,9 @@
+import request from "../utils/request";
+
+export function getGuidePageContent(data) {
+  return request({
+    url: `/web/device/getGuidePageContent`,
+    method: 'get',
+    data: data
+  })
+}