NurseStationPersonAppletUl/api/MyBenefits/MyBenefits.js

17 lines
834 B
JavaScript
Raw Normal View History

2023-04-03 15:42:14 +08:00
import request from "../request.js"
//个人中心 我的收益 金额
2023-04-12 11:14:16 +08:00
export function personRevenue(nurseStationPersonId, monthTime, monthStartTime, monthEndTime) {
2023-04-03 15:42:14 +08:00
return request({
2023-04-11 10:50:22 +08:00
url: `/nurseApplet/personCenter/personRevenue?nurseStationPersonId=${nurseStationPersonId}&&monthTime=${monthTime}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`,
2023-04-03 15:42:14 +08:00
method: 'GET'
})
}
// 个人中心 我的收益 订单列表分页
2023-04-12 11:14:16 +08:00
export function personRevenueDetails(pageNum, pageSize, nurseStationPersonId, monthTime, monthStartTime, monthEndTime) {
2023-04-03 15:42:14 +08:00
return request({
2023-04-12 11:14:16 +08:00
url: `/nurseApplet/personCenter/personRevenueDetails?pageNum=${pageNum}&&pageSize=${pageSize}&&nurseStationPersonId=${nurseStationPersonId}&&monthTime=${monthTime}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`,
2023-04-03 15:42:14 +08:00
method: 'GET',
})
}