api/route/app.php
2021-01-04 13:45:02 +08:00

24 lines
1.0 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::get('/', 'index/index');
Route::get('/goods', 'index/goods');
Route::any('/login', 'index/login');
Route::any('/reg', 'index/reg');
Route::any('/cart/query', 'shop/queryCart');
Route::any('/cart/add', 'shop/addToCart');
Route::any('/cart/checkout', 'shop/checkout');
Route::any('/cart/update', 'shop/updateCart');
Route::any('/cart/remove', 'shop/removeCart');
Route::post('/add-goods', 'index/saveGoods');
Route::any('/orders', 'shop/queryOrder');