增加激活码列表页面,修复进件部分问题

This commit is contained in:
2026-01-16 13:42:58 +08:00
parent 6bbe3b2d09
commit 6535b6f580
29 changed files with 3583 additions and 128 deletions

View File

@@ -0,0 +1,33 @@
import http from "@/http/http.js";
const request = http.request;
const urlType = "order";
export function shopMerchant(data) {
return request({
url: `${urlType}/admin/shopMerchant`,
method: "GET",
data: {
...data,
},
});
}
export function editShopMerchant(data) {
return request({
url: `${urlType}/admin/shopMerchant`,
method: "PUT",
data: {
...data,
},
});
}
//获取当前店铺的主店进件信息
export function getMainMerchant(data) {
return request({
url: `${urlType}/admin/shopMerchant/getMainMerchant`,
method: "GET",
data: {
...data,
},
});
}