Jelajahi Sumber

错题调整

wangxy 4 bulan lalu
induk
melakukan
44c24f87c7
1 mengubah file dengan 24 tambahan dan 0 penghapusan
  1. 24 0
      api/game.js

+ 24 - 0
api/game.js

@@ -0,0 +1,24 @@
+import request from '@/utils/request'
+export function getYouxiInfo(data = {}) {
+    return request({
+        'url': '/app/youxi/info',
+        headers: {
+            isToken: true
+        },
+        method: 'post',
+        data,
+        timeout: 20000
+    })
+}
+
+export function getYouxiWeishi(data = {}) {
+    return request({
+        'url': '/app/youxi/weishi',
+        headers: {
+            isToken: true
+        },
+        method: 'post',
+        data,
+        timeout: 20000
+    })
+}