Sellercost.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 Sellercost extends BaseSeller {
  18. public function initialize() {
  19. parent::initialize();
  20. Lang::load(base_path() . 'home/lang/'.config('lang.default_lang').'/sellercost.lang.php');
  21. }
  22. public function cost_list() {
  23. $storecost_model = model('storecost');
  24. $condition = array();
  25. $condition[]=array('storecost_store_id','=',session('store_id'));
  26. $storecost_remark = input('get.storecost_remark');
  27. if (!empty($storecost_remark)) {
  28. $condition[]=array('storecost_remark','like', '%' . $storecost_remark . '%');
  29. }
  30. $add_time_from = input('get.add_time_from');
  31. $add_time_to = input('get.add_time_to');
  32. if ((input('param.add_time_from')) != '') {
  33. $add_time_from = strtotime((input('param.add_time_from')));
  34. $condition[] = array('storecost_time', '>=', $add_time_from);
  35. }
  36. if ((input('param.add_time_to')) != '') {
  37. $add_time_to = strtotime((input('param.add_time_to')))+86399;
  38. $condition[] = array('storecost_time', '<=', $add_time_to);
  39. }
  40. $cost_list = $storecost_model->getStorecostList($condition, 10, 'storecost_id desc');
  41. View::assign('cost_list', $cost_list);
  42. View::assign('show_page', $storecost_model->page_info->render());
  43. /* 设置卖家当前菜单 */
  44. $this->setSellerCurMenu('sellercost');
  45. /* 设置卖家当前栏目 */
  46. $this->setSellerCurItem('cost_list');
  47. return View::fetch($this->template_dir.'cost_list');
  48. }
  49. /**
  50. * 用户中心右边,小导航
  51. *
  52. * @param string $menu_type 导航类型
  53. * @param string $menu_key 当前导航的menu_key
  54. * @param array $array 附加菜单
  55. * @return
  56. */
  57. protected function getSellerItemList()
  58. {
  59. $menu_array = array(
  60. array(
  61. 'name' => 'cost_list',
  62. 'text' => lang('cost_list'),
  63. 'url' => (string)url('Sellercost/cost_list')
  64. ),
  65. );
  66. return $menu_array;
  67. }
  68. }