first commit

此提交包含在:
2025-03-22 11:57:02 +08:00
當前提交 cc42c65fc9
共有 687 個檔案被更改,包括 86288 行新增0 行删除
+24
查看文件
@@ -0,0 +1,24 @@
import request from '@/utils/request';
// 查询商品列表
export function getList() {
return request({
url: '/front/product/index',
method: 'get',
});
}
// 查询商品材质列表
export function getProductDetail(id) {
return request({
url: '/front/product/' + id,
method: 'get',
});
}
// 查询商品材质列表
export function getProductCompute(data) {
return request({
url: '/front/product/compute',
method: 'post',
data: data,
});
}