Sellerlog.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace app\api\controller;
  3. use think\facade\Lang;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 卖家日志控制器
  15. */
  16. class Sellerlog extends MobileSeller {
  17. public function initialize() {
  18. parent::initialize();
  19. }
  20. /**
  21. * @api {POST} api/Sellerlog/log_list 店铺日志列表
  22. * @apiVersion 1.0.0
  23. * @apiGroup Sellerlog
  24. *
  25. * @apiHeader {String} X-DS-KEY 卖家授权token
  26. *
  27. * @apiParam {Int} cate_id 分类ID
  28. * @apiParam {String} seller_name 卖家账号
  29. * @apiParam {String} log_content 日志内容
  30. * @apiParam {String} add_time_from 开始时间 YYYY-MM-DD
  31. * @apiParam {String} add_time_to 结束时间 YYYY-MM-DD
  32. * @apiParam {Int} page 页码
  33. * @apiParam {Int} pagesize 每页显示数量
  34. *
  35. * @apiSuccess {String} code 返回码,10000为成功
  36. * @apiSuccess {String} message 返回消息
  37. * @apiSuccess {Object} result 返回数据
  38. * @apiSuccess {Object[]} result.log_list 日志列表 (返回字段参考sellerlog表)
  39. * @apiSuccess {Int} result.page_total 总页数
  40. * @apiSuccess {Boolean} result.hasmore 是否有更多 true是false否
  41. */
  42. public function log_list() {
  43. $sellerlog_model = model('sellerlog');
  44. $condition = array();
  45. $condition[] = array('sellerlog_store_id', '=', $this->store_info['store_id']);
  46. $seller_name = input('param.seller_name');
  47. $log_content = input('param.log_content');
  48. $add_time_from = input('param.add_time_from');
  49. $add_time_to = input('param.add_time_to');
  50. if (!empty($seller_name)) {
  51. $condition[] = array('sellerlog_seller_name', 'like', '%' . input('param.seller_name') . '%');
  52. }
  53. if (!empty($log_content)) {
  54. $condition[] = array('sellerlog_content', 'like', '%' . $log_content . '%');
  55. }
  56. if (!empty($add_time_from) || $add_time_to) {
  57. $condition[] = array('sellerlog_time', 'between', [strtotime($add_time_from), strtotime($add_time_to)]);
  58. }
  59. $log_list = $sellerlog_model->getSellerlogList($condition, 10, 'sellerlog_id desc');
  60. $result = array_merge(array('log_list' => $log_list), mobile_page($sellerlog_model->page_info));
  61. ds_json_encode(10000, lang('ds_common_op_succ'), $result);
  62. }
  63. }