Memberconsult.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\home\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 Memberconsult extends BaseMember
  18. {
  19. public function initialize()
  20. {
  21. parent::initialize(); // TODO: Change the autogenerated stub
  22. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/sellerconsult.lang.php');
  23. }
  24. /**
  25. * 查询买家商品咨询
  26. */
  27. public function index()
  28. {
  29. $this->my_consult();
  30. }
  31. public function my_consult()
  32. {
  33. //实例化商品咨询模型
  34. $consult_model = model('consult');
  35. $search_array = array();
  36. if (input('param.type') != '') {
  37. if (input('param.type') == 'to_reply') {
  38. $search_array[]=array('consult_reply','=','');
  39. }
  40. if (input('param.type') == 'replied') {
  41. $search_array[] = array('consult_reply','<>',''
  42. );
  43. }
  44. }
  45. $search_array[]=array('member_id','=',session('member_id'));
  46. $list_consult = $consult_model->getConsultList($search_array);
  47. View::assign('show_page', $consult_model->page_info->render());
  48. View::assign('list_consult', $list_consult);
  49. $type_v=input('param.type');
  50. $type = empty($type_v) ? 'consult_list' : $type_v;
  51. /* 设置买家当前菜单 */
  52. $this->setMemberCurMenu('member_consult');
  53. /* 设置买家当前栏目 */
  54. $this->setMemberCurItem($type);
  55. echo View::fetch($this->template_dir.'index');exit;
  56. }
  57. /**
  58. * 用户中心右边,小导航
  59. *
  60. * @param string $menu_type 导航类型
  61. * @param string $menu_key 当前导航的menu_key
  62. * @param array $array 附加菜单
  63. * @return
  64. */
  65. public function getMemberItemList()
  66. {
  67. $menu_array = array(
  68. array(
  69. 'name' => 'consult_list',
  70. 'text' => lang('ds_member_path_all_consult'),
  71. 'url' => (string)url('Memberconsult/index')
  72. ),
  73. array(
  74. 'name' => 'to_reply',
  75. 'text' => lang('ds_member_path_unreplied_consult'),
  76. 'url' => (string)url('Memberconsult/index',['type'=>'to_reply'])
  77. ),
  78. array(
  79. 'name' => 'replied',
  80. 'text' => lang('ds_member_path_replied_consult'),
  81. 'url' => (string)url('Memberconsult/index',['type'=>'replied'])
  82. )
  83. );
  84. return $menu_array;
  85. }
  86. }