This commit is contained in:
曹辉 2023-04-11 10:50:22 +08:00
parent fafaada4b3
commit d51b9fb2be

View File

@ -1,9 +1,9 @@
import request from "../request.js" import request from "../request.js"
//个人中心 我的收益 金额 //个人中心 我的收益 金额
export function personRevenue(nurseStationPersonId, monthStartTime, monthEndTime) { export function personRevenue(nurseStationPersonId, monthTime,monthStartTime, monthEndTime) {
return request({ return request({
url: `/nurseApplet/personCenter/personRevenue?nurseStationPersonId=${nurseStationPersonId}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`, url: `/nurseApplet/personCenter/personRevenue?nurseStationPersonId=${nurseStationPersonId}&&monthTime=${monthTime}&&monthStartTime=${monthStartTime}&&monthEndTime=${monthEndTime}`,
method: 'GET' method: 'GET'
}) })
} }