From b90b528cb5c6eaebe03fba972fef658a741ce896 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Thu, 26 Feb 2026 18:19:13 +0800
Subject: [PATCH] 活动评价
---
shop_vue/src/api/branch.js | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/shop_vue/src/api/branch.js b/shop_vue/src/api/branch.js
index 376b642..fdad109 100644
--- a/shop_vue/src/api/branch.js
+++ b/shop_vue/src/api/branch.js
@@ -100,8 +100,16 @@
deleteActivity(data, errorback) {
return request._post('/shop/branch.activity/delete', data, errorback);
},
+ /*审核活动*/
+ auditActivity(data, errorback) {
+ return request._post('/shop/branch.activity/audit', data, errorback);
+ },
activityStatus(data, errorback) {
return request._post('/shop/branch.activity/status', data, errorback);
+ },
+ /*检查企业差评*/
+ checkNegativeComment(data, errorback) {
+ return request._post('/shop/branch.activity/checkNegativeComment', data, errorback);
},
/*报名列表*/
activityUserList(data, errorback) {
@@ -112,6 +120,23 @@
return request._post('/shop/branch.activityFile/lists', data, errorback);
},
+ /*活动评论列表*/
+ activityCommentList(data, errorback) {
+ return request._post('/shop/branch.activityComment/index', data, errorback);
+ },
+ /*活动评论详情*/
+ activityCommentDetail(data, errorback) {
+ return request._post('/shop/branch.activityComment/detail', data, errorback);
+ },
+ /*编辑活动评论*/
+ editActivityComment(data, errorback) {
+ return request._post('/shop/branch.activityComment/edit', data, errorback);
+ },
+ /*删除活动评论*/
+ deleteActivityComment(data, errorback) {
+ return request._post('/shop/branch.activityComment/delete', data, errorback);
+ },
+
/*获取职务*/
positionList(data, errorback) {
return request._post('/shop/branch.position/index', data, errorback);
--
Gitblit v1.9.2