first commit
This commit is contained in:
28
application/system/controller/Suggest.php
Normal file
28
application/system/controller/Suggest.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user