47 lines
659 B
JavaScript
47 lines
659 B
JavaScript
/*
|
|
* @Author: daidai
|
|
* @Date: 2021-12-09 10:47:56
|
|
* @LastEditors: Please set LastEditors
|
|
* @LastEditTime: 2022-04-27 16:32:31
|
|
* @FilePath: \web-pc\src\api\index.js
|
|
*/
|
|
|
|
|
|
import { currentList,
|
|
currentPage,
|
|
currentSave,
|
|
currentUpdate,
|
|
currentDelete,
|
|
currentSelect,
|
|
currentSelectList,
|
|
|
|
currentPOST,
|
|
currentGET,
|
|
currentApi
|
|
|
|
} from './modules'
|
|
import {
|
|
GETNOBASE,
|
|
GET
|
|
} from './api'
|
|
|
|
|
|
export {
|
|
GETNOBASE,
|
|
GET
|
|
}
|
|
|
|
|
|
export {
|
|
currentApi,
|
|
currentList,
|
|
currentPage,
|
|
currentSave,
|
|
currentUpdate,
|
|
currentDelete,
|
|
currentSelect,
|
|
currentSelectList,
|
|
currentPOST,
|
|
currentGET
|
|
}
|