RecycleController.php
8.6 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/11/12
* Time: 18:21
*/
namespace api\index\controller;
use cmf\controller\RestBaseController;
use think\Db;
use think\Request;
/**
* @title 回收首页
* @description
*/
class RecycleController extends RestBaseController
{
/**
* @title 可回收物类型
* @description
* @author GuoSheng
* @url /index/Recycle/index
* @method GET
*
* @return id:可回收物分类ID
* @return recycle_name:类型名称
* @return thumbnail:图片
* @return price:价格
*
*/
public function index(){
$where['delete_time'] = ['eq',0];
$data = Db::name('recycletype')
->where($where)
->field('id,recycle_name,thumbnail,price')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 可回收物品
* @description
* @author GuoSheng
* @url /index/Recycle/rgoods
* @method GET
*
* @param name:recycletype_id type:int require:0 other: desc:所属分类ID
*
* @return id:可回收物品id
* @return recycletype_id:所属分类id
* @return name:名称
* @return thumbnail:图片
*
*/
public function rgoods(){
$recycletype_id = $this->request->param('recycletype_id');
if(empty($recycletype_id)){
$data = Db::name('recyclegoods')
->where('recycletype_id',1)
->select();
$this->success('SUCCESS',$data);
}else{
$data = Db::name('recyclegoods')
->where('recycletype_id',$recycletype_id)
->select();
$this->success('SUCCESS',$data);
}
}
/**
* @title 不可回收物类型
* @description
* @author GuoSheng
* @url /index/Recycle/noRecycle
* @method GET
*
* @return id:不可回收物分类ID
* @return recycle_name:类型名称
* @return thumbnail:图片
* @return price:价格
*
*/
public function noRecycle()
{
$where['delete_time'] = ['eq',0];
$data = Db::name('norecycletype')
->where($where)
->field('id,recycle_name,thumbnail')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 不可回收物品
* @description
* @author GuoSheng
* @url /index/Recycle/norgoods
* @method GET
*
* @param name:recycletype_id type:int require:0 other: desc:所属分类ID
*
* @return id:不可回收物品id
* @return recycletype_id:所属分类id
* @return name:名称
* @return thumbnail:图片
*
*/
public function norgoods(){
$recycletype_id = $this->request->param('recycletype_id');
if(empty($recycletype_id)){
$data = Db::name('norecyclegoods')
->where('recycletype_id',1)
->select();
$this->success('SUCCESS',$data);
}else{
$data = Db::name('norecyclegoods')
->where('recycletype_id',$recycletype_id)
->select();
$this->success('SUCCESS',$data);
}
}
/**
* @title 回收首页轮播图
* @description
* @author GuoSheng
* @url /index/Recycle/photo
* @method GET
*
* @return id:ID
* @return thumbnail:图片
* @return url:链接地址
*
*/
public function photo(){
$where['delete_time'] = ['eq',0];
$data = Db::name('pic')
->where($where)
->field('id,thumbnail,url')
->select()
->toArray();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 回收站点列表
* @description
* @author GuoSheng
* @url /index/Recycle/point
* @method GET
*
* @return id:ID
* @return point_name:站点名称
* @return thumbnail:图片
* @return address:详细地址
* @return lng:站点所在经度
* @return lat:站点所在纬度
*
*/
public function point()
{
$where['delete_time'] = ['eq',0];
$data = Db::name('point')
->where($where)
->field('id,point_name,address,thumbnail,lng,lat')
->select()
->toArray();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 回收首页装修材料logo
* @description
* @author GuoSheng
* @url /index/Recycle/build
* @method GET
*
* @return id:ID
* @return thumbnail:图片
*
*/
public function build(){
$data = Db::name('pic')
->where('id',1)
->field('id,thumbnail')
->find();
$data['thumbnail'] = cmf_get_image_url($data['thumbnail']);
$this->success('SUCCESS',$data);
}
/**
* @title 回收首页服务评价列表
* @description
* @author GuoSheng
* @url /index/Recycle/rgoods
* @method GET
*
* @param name:page type:int require:0 other: desc:当前页(默认1)
* @param name:pageNum type:int require:0 other: desc:每页显示数据个数(默认10)
*
* @return id:评价id
* @return user_id:用户ID
* @return user_nickname:用户名
* @return num:评价星数
* @return content:评价内容
*
*/
public function comment()
{
$page = $this->request->param('page',1,'intval');
$pageNum = $this->request->param('pageNum',10,'intval');
$res = Db::name('recyclecomment')
->alias('a')
->join('user b','a.user_id = b.id')
->field('a.*,b.user_nickname')
->page($page,$pageNum)
->select()
->toArray();
foreach ($res as &$v){
$v['num'] = ceil(($v['speed']+$v['service']+$v['recycle'])/3);
}
$this->success('SUCCESS',$res);
}
/**
* @title 回收首页我的积分
* @description
* @author GuoSheng
* @url /index/Recycle/integral
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @return status:状态 (1没有注册过 2注册过)
* @return after_wallet:当前积分
* @return num:参与次数
* @return add_total:累计积分
*
*/
public function integral()
{
$user_id = $this->getUserId();
$data = Db::name('integral')
->where('user_id',$user_id)
->find();
if(empty($data)){
$res['status'] = 1;
}else{
$res['status'] = 2;
$res['after_wallet'] = $data['after_wallet'];
$res['num'] = $data['num'];
$res['add_total'] = $data['add_total'];
}
$this->success('SUCCESS',$res);
}
/**
* @title 上门回收地址列表
* @description
* @author GuoSheng
* @url /index/Recycle/recycleList
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @return status:是否选中 (0不选中 1选中)
* @return name:姓名
* @return phone:电话
* @return address:详细地址
*
*/
public function recycleList()
{
$user_id = $this->getUserId();
$where['user_id'] = ['eq',$user_id];
$where['delete_time'] = ['eq',0];
$data = Db::name('recycle')
->where($where)
->order('status desc')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 上传文件
* @description 接口说明
* @author 开发者
* @url /index/Resource/uploadFile
* @method POST
* @header name:XX-Token require:1 default: desc:token
* @param name:image type:file require:1 default: other: desc:文件
* @return image_url:图片路径
*/
public function uploadFile(){
$files = request()->file('image');
if (empty($files)) {
$this->error('未检出文件上传');
}
if($files){
$info = $files->move(ROOT_PATH . 'public' . DS . 'uploads');
if($info){
$request = Request::instance();
$a = $request->domain().'/'.'uploads/'.$info->getSaveName();
$this->success('SUCCESS',$a);
}else{
$this->error($files->getError());
}
}
}
}