2023-03-02 11:22:01 +08:00
|
|
|
import request from "../request.js"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//新人优惠券
|
2023-03-06 15:46:43 +08:00
|
|
|
export function couponByUseStatus(pageNum, pageSize, patientId) {
|
2023-03-02 11:22:01 +08:00
|
|
|
return request({
|
2023-03-06 15:49:25 +08:00
|
|
|
url: `/nurseApplet/patientInfo/couponByUseStatus?pageNum=${pageNum}&pageSize=${pageSize}&patientId=${patientId}`,
|
2023-03-02 11:22:01 +08:00
|
|
|
method: 'get'
|
|
|
|
|
})
|
|
|
|
|
}
|