29 lines
735 B
PHP
29 lines
735 B
PHP
<?php
|
||
// +------------------------------------------------+
|
||
// |http://www.cjango.com |
|
||
// +------------------------------------------------+
|
||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||
// +------------------------------------------------+
|
||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||
// +------------------------------------------------+
|
||
namespace app\system\controller;
|
||
|
||
use app\common\model\Suggest as SuggestModel;
|
||
|
||
class Suggest extends _Init
|
||
{
|
||
|
||
/**
|
||
* 反馈列表
|
||
* @return [type] [description]
|
||
*/
|
||
|
||
public function index()
|
||
{
|
||
|
||
$this->list = SuggestModel::where('')->paginate();
|
||
return $this->fetch();
|
||
}
|
||
|
||
}
|