修改
This commit is contained in:
parent
44225d644e
commit
af7c13d45d
@ -2,9 +2,9 @@ import request from "../request.js"
|
||||
|
||||
|
||||
//新人优惠券
|
||||
export function couponByUseStatus(patientId) {
|
||||
export function couponByUseStatus(pageNum, pageSize, patientId) {
|
||||
return request({
|
||||
url: `/nurseApplet/patientInfo/couponByUseStatus?patientId=${patientId}`,
|
||||
url: `/nurseApplet/patientInfo/couponByUseStatus?pageNum=${pageNum}&pageSize=${pageSize}patientId=${patientId}`,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
@ -152,7 +152,7 @@
|
||||
}
|
||||
},
|
||||
getlist() {
|
||||
couponByUseStatus(this.patientId).then(res => {
|
||||
couponByUseStatus(this.pageNum, this.pageSize, this.patientId).then(res => {
|
||||
this.couponlist = res.rows
|
||||
this.total = res.total
|
||||
})
|
||||
@ -181,7 +181,7 @@
|
||||
onReachBottom() { //下滑加载
|
||||
if (this.couponlist.length >= this.total) {} else {
|
||||
this.pageNum++;
|
||||
couponByUseStatus(this.patientId).then(res => {
|
||||
couponByUseStatus(this.pageNum, this.pageSize, this.patientId).then(res => {
|
||||
res.rows.forEach(e => {
|
||||
this.couponlist.push(e)
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user