123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- namespace app\home\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Memberconsult extends BaseMember
- {
- public function initialize()
- {
- parent::initialize(); // TODO: Change the autogenerated stub
- Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/sellerconsult.lang.php');
- }
- /**
- * 查询买家商品咨询
- */
- public function index()
- {
- $this->my_consult();
- }
- public function my_consult()
- {
- //实例化商品咨询模型
- $consult_model = model('consult');
- $search_array = array();
- if (input('param.type') != '') {
- if (input('param.type') == 'to_reply') {
- $search_array[] = array('consult_reply', '=', '');
- }
- if (input('param.type') == 'replied') {
- $search_array[] = array(
- 'consult_reply', '<>', ''
- );
- }
- }
- $search_array[] = array('member_id', '=', session('member_id'));
- $list_consult = $consult_model->getConsultList($search_array);
- View::assign('show_page', $consult_model->page_info->render());
- View::assign('list_consult', $list_consult);
- $type_v = input('param.type');
- $type = empty($type_v) ? 'consult_list' : $type_v;
- /* 设置买家当前菜单 */
- $this->setMemberCurMenu('member_consult');
- /* 设置买家当前栏目 */
- $this->setMemberCurItem($type);
- echo View::fetch($this->template_dir . 'index');
- exit;
- }
- /**
- * 用户中心右边,小导航
- *
- * @param string $menu_type 导航类型
- * @param string $menu_key 当前导航的menu_key
- * @param array $array 附加菜单
- * @return
- */
- public function getMemberItemList()
- {
- $menu_array = array(
- array(
- 'name' => 'consult_list',
- 'text' => lang('ds_member_path_all_consult'),
- 'url' => (string)url('Memberconsult/index')
- ),
- array(
- 'name' => 'to_reply',
- 'text' => lang('ds_member_path_unreplied_consult'),
- 'url' => (string)url('Memberconsult/index', ['type' => 'to_reply'])
- ),
- array(
- 'name' => 'replied',
- 'text' => lang('ds_member_path_replied_consult'),
- 'url' => (string)url('Memberconsult/index', ['type' => 'replied'])
- )
- );
- return $menu_array;
- }
- }
|