16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
|
|
class ShpProfitServer {
|
|
async report(param) {
|
|
let res = await window.framework.http.post('/shpProfit/report', param)
|
|
return res
|
|
}
|
|
|
|
async list(param) {
|
|
let res = await window.framework.http.post('/shpProfit/list', param)
|
|
return res
|
|
}
|
|
}
|
|
|
|
const shpProfitServer = new ShpProfitServer()
|
|
export default shpProfitServer
|