2023-12-26

This commit is contained in:
2023-12-26 10:19:15 +08:00
parent 565518beac
commit a7996825c4
8 changed files with 697 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
export default {
// 查询提货卡分页列表
listPage: function(params) {
return request({
url: '/lpkgiftcard/cardStatisticsList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
}