This commit is contained in:
2026-05-05 16:35:30 +08:00
parent ed0d1aaacf
commit 2b63fe4147
19 changed files with 777 additions and 121 deletions
+8
View File
@@ -0,0 +1,8 @@
import request from "@/utils/request";
export function getProductPrice(data) {
return request({
url: "/product/getPrice",
method: "post",
data: data,
});
}