| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace App\Http\Controllers\Admin;
- use App\Services\Common\MeetingRecordService;
- use App\Services\Common\SupervisorConsultRecordService;
- /**
- * 导师咨询记录
- */
- class SupervisorConsultRecordController extends Backend
- {
- public function __construct()
- {
- parent::__construct();
- $this->service = new SupervisorConsultRecordService();
- }
- /**
- * 列表
- */
- public function index()
- {
- $params = request()->all();
- $pageSize = isset($params['limit']) ? intval($params['limit']) : PERPAGE;
- return $this->service->getDataList($params, $pageSize);
- }
- /**
- * 编辑(处理投诉)
- */
- public function edit()
- {
- return $this->service->edit();
- }
- /**
- * 删除
- */
- public function delete()
- {
- return $this->service->delete();
- }
- /**
- * 修改状态
- */
- public function status()
- {
- return $this->service->status();
- }
- }
|