This commit is contained in:
gyq
2024-05-20 17:42:41 +08:00
parent d7dd3d3372
commit a683be3873
8 changed files with 207 additions and 18 deletions

View File

@@ -96,3 +96,15 @@ export function tbCouponCategoryGet(params) {
params
});
}
/**
* 查询资源类别列表
* @returns
*/
export function tbPlatformDictType(params) {
return request({
url: "/api/tbPlatformDictType",
method: "get",
params
});
}

View File

@@ -428,3 +428,18 @@ export function findActivate(params) {
params
});
}
/**
* 商家用户列表
* @returns
*/
export function queryAllShopUser(params) {
return request({
url: `/api/tbShopUser/queryAllShopUser`,
method: "get",
params: {
shopId: localStorage.getItem("shopId"),
...params
}
});
}