weixin.php 415 B

12345678910111213141516
  1. <?php
  2. use Illuminate\Http\Request;
  3. /*
  4. 文件地址前缀:/api/thirdPart/weight
  5. */
  6. Route::group(['middleware'=>'auth:api'],function(){
  7. Route::get('wx/waybill', "Api\WxController@index");//微信小程序数据返回
  8. Route::post('wx/waybill/show', "Api\WxController@show");//微信小程序数据返回
  9. Route::post('wx/waybill/update', "Api\WxController@update");//微信小程序数据修改
  10. });