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
<?php
 
namespace app\supplier\controller\plus\release;
 
use app\supplier\controller\Controller;
use app\shop\model\plus\release\DemandApply as ApplyModel;
use app\supplier\model\supplier\Supplier as SupplierModel;
 
/**
 * 控制器
 */
class DemandApply extends Controller
{
 
    /**
     * 申请列表
     */
    public function index()
    {
        $supplier = SupplierModel::detail($this->getSupplierId());
        if(empty($supplier["is_release"])){
            return $this->renderError('没有权限');
        }
        $model = new ApplyModel;
        $apply_list = $model->getList($this->postData());
        return $this->renderSuccess('', compact('apply_list'));
    }
 
    /**
     * 审核分销商
     */
    public function editApplyStatus($apply_id)
    {
        $model = ApplyModel::detail($apply_id);
        if ($model->submit($this->postData())) {
            return $this->renderSuccess('修改成功');
        }
        return $this->renderError('修改失败');
 
    }
 
 
}