|
@@ -146,13 +146,12 @@ export function wordDelete(data) {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// **********************商家分类**********************
|
|
|
// 添加商家分类
|
|
|
export function businessClassList(data) {
|
|
|
return request({
|
|
|
url: '/shopCategory/getAll',
|
|
|
- method: "post",
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -160,8 +159,8 @@ export function businessClassList(data) {
|
|
|
// 根据一级获取
|
|
|
export function businessClassListById(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategory/getById",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategory/getById',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -169,8 +168,8 @@ export function businessClassListById(data) {
|
|
|
// 删除标签分类
|
|
|
export function deleteBusinessClass(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategory/deleteCategory",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategory/deleteCategory',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -178,8 +177,8 @@ export function deleteBusinessClass(data) {
|
|
|
// 更新标签
|
|
|
export function updateBusinessClass(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategory/updateCategory",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategory/updateCategory',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -189,26 +188,25 @@ export function addBusinessClass(data) {
|
|
|
return request({
|
|
|
url: '/shopCategory/addCategory',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// **********品牌工厂***********
|
|
|
// 获取所有分类
|
|
|
|
|
|
export function factoryClassList(data) {
|
|
|
return request({
|
|
|
url: '/shopCategoryMall/getAll',
|
|
|
- method: "post",
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
|
|
|
|
export function factoryClassListById(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategoryMall/getById",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategoryMall/getById',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -216,8 +214,8 @@ export function factoryClassListById(data) {
|
|
|
// 删除标签分类
|
|
|
export function deleteFactoryClass(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategoryMall/deleteCategory",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategoryMall/deleteCategory',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -225,8 +223,8 @@ export function deleteFactoryClass(data) {
|
|
|
// 更新标签
|
|
|
export function updateFactoryClass(data) {
|
|
|
return request({
|
|
|
- url: "/shopCategoryMall/updateCategory",
|
|
|
- method: "post",
|
|
|
+ url: '/shopCategoryMall/updateCategory',
|
|
|
+ method: 'post',
|
|
|
data
|
|
|
})
|
|
|
}
|
|
@@ -236,35 +234,34 @@ export function addFactoryClass(data) {
|
|
|
return request({
|
|
|
url: '/shopCategoryMall/addCategory',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
// 获取所有分类树
|
|
|
export function getAllCategoryClassTree(data) {
|
|
|
return request({
|
|
|
- url: "shopCategory/getAllTree",
|
|
|
+ url: 'shopCategory/getAllTree',
|
|
|
data,
|
|
|
- method: "get"
|
|
|
+ method: 'get'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// 分页查询商家的收款码
|
|
|
export function getAllPaymentCode(data) {
|
|
|
return request({
|
|
|
- url: "/paymentCode/getAll",
|
|
|
+ url: '/paymentCode/getAll',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
// 禁用该收款码
|
|
|
export function disablePaymentCode(data) {
|
|
|
return request({
|
|
|
- url: "/paymentCode/handle",
|
|
|
+ url: '/paymentCode/handle',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -273,27 +270,73 @@ export function disablePaymentCode(data) {
|
|
|
// 查询申请列表
|
|
|
export function getWithdrawalApplicationList(data) {
|
|
|
return request({
|
|
|
- url: "/shop-vouchers-withdrawal-qualification/getWithdrawalQualificationAll",
|
|
|
+ url: '/shop-vouchers-withdrawal-qualification/getWithdrawalQualificationAll',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
// 审核
|
|
|
export function examineWithdrawalApplication(data) {
|
|
|
return request({
|
|
|
- url: "/shop-vouchers-withdrawal-qualification/auditWithdrawalQualification",
|
|
|
+ url: '/shop-vouchers-withdrawal-qualification/auditWithdrawalQualification',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'post'
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// 代金券提现记录
|
|
|
export function getWithdrawalRecortAllApi(data) {
|
|
|
return request({
|
|
|
- url: "/shop-vouchers-withdrawal-qualification/getWithdrawalRecortAll",
|
|
|
+ url: '/shop-vouchers-withdrawal-qualification/getWithdrawalRecortAll',
|
|
|
+ data,
|
|
|
+ method: 'post'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// **********同城联盟卡1***********
|
|
|
+
|
|
|
+// 获取联盟卡列表
|
|
|
+export function getAllianceCardListApi(params) {
|
|
|
+ return request({
|
|
|
+ url: '/alliance-card/getAll',
|
|
|
+ params,
|
|
|
+ method: 'get'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 获取联盟卡列表
|
|
|
+export function auditAllianceCardApi(data) {
|
|
|
+ return request({
|
|
|
+ url: '/alliance-card/auditAllianceCard',
|
|
|
data,
|
|
|
- method: "post"
|
|
|
+ method: 'POST'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 获取联盟卡加盟商家列表
|
|
|
+export function getRegistrationShopsByIdApi(params) {
|
|
|
+ return request({
|
|
|
+ url: '/alliance-card/getRegistrationShopsById',
|
|
|
+ params,
|
|
|
+ method: 'GET'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 查询购买联盟卡的用户列表
|
|
|
+export function getBuyerPurchaseByByIdApi(params) {
|
|
|
+ return request({
|
|
|
+ url: '/alliance-card/getBuyerPurchaseByById',
|
|
|
+ params,
|
|
|
+ method: 'GET'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 查询用户联盟卡消费记录
|
|
|
+export function getConsumptionRecordByUserIdAndAllianceCardIdApi(params) {
|
|
|
+ return request({
|
|
|
+ url: '/alliance-card/getConsumptionRecordByUserIdAndAllianceCardId',
|
|
|
+ params,
|
|
|
+ method: 'GET'
|
|
|
})
|
|
|
}
|