quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
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
<?php
 
namespace app\operations\controller\branch;
 
use app\operations\controller\Controller;
use app\operations\model\branch\DepositOrder as DepositOrderModel;
 
/**
 * 供应商押金订单控制器
 */
class Order extends Controller
{
 
    /**
     * 押金订单列表
     */
    public function index()
    {
 
        $model = new DepositOrderModel;
        $list = $model->getList($this->postData());
        return $this->renderSuccess('', compact('list'));
    }
 
}