28 lines
1.8 KiB
JavaScript
28 lines
1.8 KiB
JavaScript
export const apiArr = {
|
|
getMerChantCateList:"/api/v2/wechat/merchant-cate-crud/list", //商家分类
|
|
getMerchantList:"/api/v2/wechat/merchant-info-crud/page",//商家列表
|
|
createComment:"/api/v2/wechat/merchant-evaluation-crud/creat",//创建用户评价
|
|
getMerchantInfo:"/api/v2/wechat/merchant-info-crud/info",//获取商家信息详情
|
|
getMerchantComment:"/api/v2/wechat/merchant-evaluation-crud/page",//获取商家评价
|
|
merChantCommentLike:"/api/v2/wechat/merchant-evaluation-like-crud/creat",//点赞
|
|
merChantCommentUnlike:"/api/v2/wechat/merchant-evaluation-like-crud/del",//取消点赞
|
|
userCommentInfo:"/api/v2/wechat/merchant-evaluation-crud/info",//用户评论详情
|
|
createUserReply:"/api/v2/wechat/merchant-evaluation-reply-crud/creat",//发送评论
|
|
deleteMerChantComment:"/api/v2/wechat/merchant-evaluation-crud/del",//删除用户评价
|
|
getUserCommentReply:"/api/v2/wechat/merchant-evaluation-reply-crud/page", //获取用户评价的回复列表
|
|
getUserCommunityList:'/api/v2/wechat/community-room/list',//查询用户房源信息
|
|
getPayList:"/api/v2/wechat/quick-payment-record-crud/page", //支付记录
|
|
|
|
getUserPoints:"/api/v2/wechat/member-points-flow-crud/main",//获取用户积分
|
|
getPointsList:"/api/v2/wechat/member-points-flow-crud/page", //积分记录
|
|
|
|
getUserHomeMoney:"/api/v2/wechat/government-housing-fund-flow-crud/main",//会员基金
|
|
getHomeMoneyList:"/api/v2/wechat/government-housing-fund-flow-crud/page",//会员基金流水
|
|
|
|
createPay:"/api/v2/wechat/quick-payment-record-crud/creat",//创建支付信息
|
|
getPayInfo:"/api/v2/wechat/quick-payment-record-crud/info", //支付记录
|
|
|
|
|
|
createStore:"/api/v2/wechat/store-info-crud/creat",//门店信息创建
|
|
};
|