对接新版结算

This commit is contained in:
gyq
2025-10-13 11:15:47 +08:00
parent b3b788d8d4
commit aabbeced98
19 changed files with 10770 additions and 719 deletions

View File

@@ -356,7 +356,7 @@ export function printerAdd(data, method = "post") {
export function findCoupon(params) {
return request({
method: "get",
url: "/account/admin/coupon/findCoupon",
url: "/market/admin/coupon/findCoupon",
params,
});
}

14
src/api/market.js Normal file
View File

@@ -0,0 +1,14 @@
import request from "@/utils/request.js";
/**
* 智慧充值 配置信息获取
* @param {*} data
* @returns
*/
export function shopRecharge(params) {
return request({
method: "get",
url: "/market/admin/shopRecharge",
params,
});
}