Feedback.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace app\admin\controller;
  3. use think\facade\View;
  4. use think\facade\Lang;
  5. /**
  6. * ============================================================================
  7. * DSMall多用户商城
  8. * ============================================================================
  9. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  10. * 网站地址: http://www.csdeshang.com
  11. * ----------------------------------------------------------------------------
  12. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  13. * 不允许对程序代码以任何形式任何目的的再发布。
  14. * ============================================================================
  15. * 控制器
  16. */
  17. class Feedback extends AdminControl
  18. {
  19. public function initialize()
  20. {
  21. parent::initialize(); // TODO: Change the autogenerated stub
  22. Lang::load(base_path() . 'admin/lang/'.config('lang.default_lang').'/feedback.lang.php');
  23. }
  24. /**
  25. * 意见反馈
  26. */
  27. public function flist(){
  28. $feedback_model = model('feedback');
  29. $feedback_list = $feedback_model->getFeedbackList(array(), 10);
  30. View::assign('feedback_list', $feedback_list);
  31. View::assign('show_page', $feedback_model->page_info->render());
  32. $this->setAdminCurItem('index');
  33. return View::fetch('index');
  34. }
  35. /**
  36. * 删除
  37. */
  38. public function del(){
  39. $feedback_model = model('feedback');
  40. $feedback_id = input('param.feedback_id');
  41. $feedback_id_array = ds_delete_param($feedback_id);
  42. $condition = array(array('fb_id' ,'in', $feedback_id_array));
  43. $result = $feedback_model->delFeedback($condition);
  44. if ($result){
  45. ds_json_encode(10000, lang('ds_common_op_succ'));
  46. }else {
  47. ds_json_encode(10001, lang('ds_common_op_fail'));
  48. }
  49. }
  50. protected function getAdminItemList() {
  51. $menu = array(
  52. array(
  53. 'text' => lang('ds_feedback'), 'name' => 'index', 'url' => ''
  54. ),
  55. );
  56. return $menu;
  57. }
  58. }