From bd3fb7a0c992d30f847c046fcf5ef36484acc2e3 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 27 Apr 2017 11:31:39 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=BE=AE=E4=BF=A1=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/route.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/application/route.php b/application/route.php index 0eaaf9ef8..a79592e8a 100644 --- a/application/route.php +++ b/application/route.php @@ -37,6 +37,14 @@ think\Route::post([ }, 'wechat/config/pay' => function() { return json(['code' => 0, 'msg' => '测试环境禁止修改微信支付操作!']); + }, + 'wechat/menu/edit' => function() { + return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']); + } +]); +think\Route::get([ + 'wechat/menu/cancel' => function() { + return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']); } ]);