优惠卷和商品卷

This commit is contained in:
wwz
2025-03-10 16:33:43 +08:00
parent 70edc6756d
commit 5342133cbd
30 changed files with 2820 additions and 3338 deletions

14
common/api/shop/index.js Normal file
View File

@@ -0,0 +1,14 @@
// 引入 request 文件
import request from '@/common/api/request.js'
const urlAccount = '/account'
const urlProduct = '/product'
const urlOrder = '/order'
//商品列表
export const APIgeocodelocation = (data) => {
return request({
url: urlAccount + '/user/points/mall/goods/page',
method: 'get',
data: data
})
}