Fleaalbum.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 FLeaalbum extends BaseFleaMember {
  18. /**
  19. * 验证是否开启闲置功能
  20. */
  21. public function initialize() {
  22. parent::initialize(); // TODO: Change the autogenerated stub
  23. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/memberstorealbum.lang.php');
  24. }
  25. /**
  26. * 闲置图片列表,发布闲置调用
  27. */
  28. public function pic_list() {
  29. /**
  30. * 实例化相册类
  31. */
  32. $flea_model = model('flea');
  33. /**
  34. * 图片列表
  35. */
  36. $param = array();
  37. $param['store_id'] = session('member_id');
  38. $param['item_id'] = input('goods_id');
  39. $pic_list = $flea_model->getFleauploadList($param, 12);
  40. View::assign('pic_list', $pic_list);
  41. View::assign('show_page', $flea_model->page_info->render());
  42. if (input('item') == 'goods') {
  43. return View::fetch($this->template_dir . 'store_flea_sample');
  44. } elseif (input('item') == 'des') {
  45. return View::fetch($this->template_dir . 'store_flea_sample_des');
  46. }
  47. }
  48. }