Sellerlog.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 Sellerlog extends BaseSeller {
  18. public function initialize() {
  19. parent::initialize(); // TODO: Change the autogenerated stub
  20. Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/sellerlog.lang.php');
  21. }
  22. public function log_list() {
  23. $sellerlog_model = model('sellerlog');
  24. $condition = array();
  25. $condition[] = array('sellerlog_store_id', '=', session('store_id'));
  26. $seller_name = input('seller_name');
  27. $log_content = input('log_content');
  28. $add_time_from = input('add_time_from');
  29. $add_time_to = input('add_time_to');
  30. if (!empty($seller_name)) {
  31. $condition[] = array('sellerlog_seller_name', 'like', '%' . input('seller_name') . '%');
  32. }
  33. if (!empty($log_content)) {
  34. $condition[] = array('sellerlog_content', 'like', '%' . $log_content . '%');
  35. }
  36. if (!empty($add_time_from)) {
  37. $condition[] = array('sellerlog_time', '>=', strtotime($add_time_from));
  38. }
  39. if (!empty($add_time_to)) {
  40. $condition[] = array('sellerlog_time', '<=', strtotime($add_time_to)+86399);
  41. }
  42. $log_list = $sellerlog_model->getSellerlogList($condition, 10, 'sellerlog_id desc');
  43. View::assign('log_list', $log_list);
  44. View::assign('show_page', $sellerlog_model->page_info->render());
  45. /* 设置卖家当前菜单 */
  46. $this->setSellerCurMenu('sellerlog');
  47. /* 设置卖家当前栏目 */
  48. $this->setSellerCurItem('log_list');
  49. return View::fetch($this->template_dir . 'seller_log');
  50. }
  51. /**
  52. * 用户中心右边,小导航
  53. *
  54. * @param string $menu_key 当前导航
  55. * @return
  56. */
  57. public function getSellerItemList() {
  58. $menu_array = array();
  59. $menu_array[] = array(
  60. 'name' => 'log_list',
  61. 'text' => lang('account_log'),
  62. 'url' => (string) url('Sellerlog/log_list')
  63. );
  64. return $menu_array;
  65. }
  66. }