FeeController.php
1.1 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
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/11/8
* Time: 11:53
*/
namespace app\admin\controller;
use cmf\controller\AdminBaseController;
use think\Db;
use think\Validate;
class FeeController extends AdminBaseController
{
public function index()
{
$id = $this->request->param('id', 1, 'intval');
if ($this->request->isPost()) {
$param = $this->request->param();
$validate = new Validate([
'fee'=>'require',
]);
$validate->message([
'fee'=>'服务费不能为空',
]);
if (!$validate->check($param)) {
$this->error($validate->getError());
}
Db::name('recyclefee')
->where('id', $id)
->update($param);
$this->success('更新成功');
} else {
$data = Db::name('recyclefee')
->where('id', $id)
->find();
$this->assign([
'data' => $data,
]);
return $this->fetch();
}
}
}