Kaynağa Gözat

错题调整

wangxy 4 ay önce
ebeveyn
işleme
44c24f87c7
1 değiştirilmiş dosya ile 24 ekleme ve 0 silme
  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
+    })
+}