|
|
@@ -0,0 +1,103 @@
|
|
|
+import https from '@/plugins/luch-request_0.0.7/request'
|
|
|
+
|
|
|
+export const batchGoOnFn = data => {
|
|
|
+ return https.post('/book-item-custom/batch-go-on', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const goOffFn = data => {
|
|
|
+ return https.get('/book-item-custom/go-off', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const goOnFn = data => {
|
|
|
+ return https.get('/book-item-custom/go-on', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const toBoxFn = data => {
|
|
|
+ return https.get('/book-item-custom/to-box', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const cancelBoxFn = data => {
|
|
|
+ return https.get('/book-item-custom/cancel-box', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getCombineFn = data => {
|
|
|
+ return https.get('/book-io/get-combine', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getIoList = data => {
|
|
|
+ return https.get('/book-io/get-io-list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getGlobalBookChangeList = data => {
|
|
|
+ return https.get('/book-change-global/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getGlobalBookOnChangeList = data => {
|
|
|
+ return https.get('/book-on-change-global/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getGlobalBookRoadChangeList = data => {
|
|
|
+ return https.get('/book-road-change-global/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getGlobalBookCgChangeList = data => {
|
|
|
+ return https.get('/book-cg-change-global/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getCustomBookChangeList = data => {
|
|
|
+ return https.get('/book-custom-change/list', data)
|
|
|
+}
|
|
|
+export const getCustomBookOnChangeList = data => {
|
|
|
+ return https.get('/book-custom-on-change/list', data)
|
|
|
+}
|
|
|
+export const getCustomBookRoadChangeList = data => {
|
|
|
+ return https.get('/book-custom-road-change/list', data)
|
|
|
+}
|
|
|
+export const getCustomBookCgChangeList = data => {
|
|
|
+ return https.get('/book-custom-cg-change/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookChangeList = data => {
|
|
|
+ return https.get('/book-change/list', data)
|
|
|
+}
|
|
|
+export const getBookOnChangeList = data => {
|
|
|
+ return https.get('/book-on-change/list', data)
|
|
|
+}
|
|
|
+export const getBookCgChangeList = data => {
|
|
|
+ return https.get('/book-cg-change/list', data)
|
|
|
+}
|
|
|
+export const getBookRoadChangeList = data => {
|
|
|
+ return https.get('/book-road-change/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookItemCustomDetail = data => {
|
|
|
+ return https.get('/book-item-ghs/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookItemCustomList = data => {
|
|
|
+ return https.get('/book-item-custom/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookCustomList = data => {
|
|
|
+ return https.get('/book-custom/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getJdBookList = data => {
|
|
|
+ return https.get('/book/jd-list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookList = data => {
|
|
|
+ return https.get('/book/list', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const getBookDetail = data => {
|
|
|
+ return https.get('/book/detail', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const closeBook = data => {
|
|
|
+ return https.get('/book/close-book', data)
|
|
|
+}
|
|
|
+
|
|
|
+export const changeBook = data => {
|
|
|
+ return https.get('/book/change-book', data)
|
|
|
+}
|