This commit is contained in:
weicw
2023-08-11 14:30:03 +08:00
parent 7a73b38bd5
commit 81ecfd9df0
9 changed files with 176 additions and 10 deletions

11
api/shop/profitLog.js Normal file
View File

@@ -0,0 +1,11 @@
import http from '@/websoft/api/index.js';
// api地址
const api = {
list: '/shop/profit-log/page',
}
// 商品评价列表
export const list = (params, option) => {
return http.get(api.list, {params}, option)
}