IsLogin(); // 权限校验 $this->IsPower(); } /** * 问答列表 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-06T21:31:53+0800 */ public function Index() { // 参数 $params = input(); // 分页 $number = 10; // 条件 $where = AnswerService::AnswerListWhere($params); // 获取总数 $total = AnswerService::AnswerTotal($where); // 分页 $page_params = array( 'number' => $number, 'total' => $total, 'where' => $params, 'page' => isset($params['page']) ? intval($params['page']) : 1, 'url' => MyUrl('admin/order/index'), ); $page = new \base\Page($page_params); $this->assign('page_html', $page->GetPageHtml()); // 获取列表 $data_params = array( 'm' => $page->GetPageStarNumber(), 'n' => $number, 'where' => $where, ); $data = AnswerService::AnswerList($data_params); $this->assign('data_list', $data['data']); // 状态 $this->assign('common_is_show_list', lang('common_is_show_list')); // 参数 $this->assign('params', $params); return $this->fetch(); } /** * 问答删除 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-15T11:03:30+0800 */ public function Delete() { // 是否ajax请求 if(!IS_AJAX) { return $this->error('非法访问'); } // 开始处理 $params = input(); $params['user_type'] = 'admin'; return AnswerService::AnswerDelete($params); } /** * 问答回复处理 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @datetime 2018-03-28T15:07:17+0800 */ public function Reply() { // 是否ajax请求 if(!IS_AJAX) { return $this->error('非法访问'); } // 开始处理 $params = input(); return AnswerService::AnswerReply($params); } /** * 状态更新 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-01-12T22:23:06+0800 */ public function StatusUpdate() { // 是否ajax请求 if(!IS_AJAX) { return $this->error('非法访问'); } // 开始处理 $params = input(); return AnswerService::AnswerStatusUpdate($params); } } ?>