import request from "../request.js" //个人中心 我的收益 金额 export function personRevenue(nurseStationPersonId, monthStartTime, monthEndTime) { return request({ url: `/nurseApplet/personCenter/personRevenue?nurseStationPersonId=${nurseStationPersonId}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`, method: 'GET' }) } // 个人中心 我的收益 订单列表分页 export function personRevenueDetails(nurseStationPersonId, monthStartTime, monthEndTime) { return request({ url: `/nurseApplet/personCenter/personRevenueDetails?nurseStationPersonId=${nurseStationPersonId}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`, method: 'GET', }) }