xlh 1 năm trước cách đây
mục cha
commit
5f17bddfd4
1 tập tin đã thay đổi với 16 bổ sung0 xóa
  1. 16 0
      pbl.js

+ 16 - 0
pbl.js

@@ -131,6 +131,22 @@ router.post("/selectActivityID", (req, res) => {
     postmysql3(req, res, "select_activityID");
 });
 
+//查询当前用户发布的活动 xlh
+router.post("/selectMyPublish", (req, res) => {
+    postmysql3(req, res, "select_mypublish");
+});
+
+//更改当前用户发布的活动 xlh
+router.post("/updateMyPublish", (req, res) => {
+    postmysql3(req, res, "update_mypublish");
+});
+
+//删除当前用户发布的活动 xlh
+router.post("/deleteMyPublish", (req, res) => {
+    postmysql3(req, res, "delete_mypublish");
+});
+
+
 //查询全部活动
 router.route("/selectAct").all((req, res, next) => {
     var json = queryString(req.url);