Browse Source

接口文件

DESKTOP-O04BTUJ\muzen 3 years ago
parent
commit
3511f6462a
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/api/guide.js

+ 2 - 3
src/api/guide.js

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