新增营销中心图标以及新版首页

This commit is contained in:
gyq
2025-11-18 18:40:59 +08:00
parent e40b4fe8cc
commit 98b7ee56b1
43 changed files with 531 additions and 139 deletions

27
http/api/market/index.js Normal file
View File

@@ -0,0 +1,27 @@
import http from "@/http/http.js";
const request = http.request;
const urlType = "market";
/**
* 限时折扣-分页
* @param {Object} data
*/
export function limitTimeDiscountPage(data) {
return request({
url: `${urlType}/admin/limitTimeDiscount/page`,
method: "GET",
data
});
}
/**
* 删除限时折扣
* @param {Object} data
*/
export function limitTimeDiscountDel(params) {
return request({
url: `${urlType}/admin/limitTimeDiscount`,
method: "DELETE",
params
});
}