修改积分相关接口

This commit is contained in:
2025-12-10 15:15:35 +08:00
parent a95fa69c62
commit 1447960908
12 changed files with 378 additions and 254 deletions

View File

@@ -0,0 +1,13 @@
// 引入 request 文件
import request from '@/common/api/request.js'
import {prveUrl} from './config.js'
export const pointsShopList = (data) => {
return request({
url: prveUrl + '/user/point/shopList',
method: 'get',
data: data
})
}