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 | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/shop_vue/src/api/branch.js b/shop_vue/src/api/branch.js
index 52851f7..fdad109 100644
--- a/shop_vue/src/api/branch.js
+++ b/shop_vue/src/api/branch.js
@@ -107,6 +107,10 @@
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) {
return request._post('/shop/branch.activityUser/index', data, errorback);
@@ -116,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