<?php
|
|
namespace app\branch\controller\supplier;
|
|
use app\shop\model\supplier\Supplier as SupplierModel;
|
use app\branch\controller\Controller;
|
/**
|
* 供应商
|
*/
|
class Supplier extends Controller
|
{
|
/**
|
* 商户列表
|
*/
|
public function index()
|
{
|
$model = new SupplierModel;
|
$postData = $this->postData();
|
$list = $model->getList($postData);
|
return $this->renderSuccess('', compact('list'));
|
}
|
}
|