ThinkPHP5商城演示

三端演示 此项目已不挂载在树莓派上,本文有此项目演示

服务端

列出服务端API:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//轮播图 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/banner/1
//轮播图下推荐位 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/theme?id=id1,id2,id3...
//轮播图推荐位id get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/theme/:id
//首页最下面最近新添加新品 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/product/recent


//商品详情,添加正则 过滤 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/product/:id


//第二页分类详情 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/product/by_category?id
//第二页分类左边 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/category/all


//Token令牌 post 在body中传入token:
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/token/user
//检查缓存中Token是否过期 post
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/token/verify


//提交地址 post 在body中传入token
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/address
//获取服务器用户收获地址 get
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/address



//下单 post
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/order
//订单详情
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/order/:id
//历史订单,分页
https://rpi.tingtashuo.cn/tp5/public/index.php/api/v1/order/by_user

客户端

CMS

CMS

admin