xlh 1 年間 前
コミット
5f17bddfd4
1 ファイル変更16 行追加0 行削除
  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);