Pintuan.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\api\controller;
  3. /**
  4. * ============================================================================
  5. * DSMall多用户商城
  6. * ============================================================================
  7. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  8. * 网站地址: http://www.csdeshang.com
  9. * ----------------------------------------------------------------------------
  10. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  11. * 不允许对程序代码以任何形式任何目的的再发布。
  12. * ============================================================================
  13. * 拼团控制器
  14. */
  15. class Pintuan extends MobileMall {
  16. public function initialize() {
  17. parent::initialize();
  18. }
  19. /**
  20. * @api {POST} api/Pintuan/index 获取拼团列表
  21. * @apiVersion 1.0.0
  22. * @apiGroup Pintuan
  23. *
  24. * @apiHeader {String} X-DS-KEY 用户授权token
  25. *
  26. * @apiParam {Int} page 页码
  27. * @apiParam {Int} per_page 每页数量
  28. *
  29. * @apiSuccess {String} code 返回码,10000为成功
  30. * @apiSuccess {String} message 返回消息
  31. * @apiSuccess {Object} result 返回数据
  32. * @apiSuccess {Object[]} result.pintuan_list 拼团列表 (返回字段参考ppintuan表)
  33. * @apiSuccess {Int} result.page_total 总页数
  34. * @apiSuccess {Boolean} result.hasmore 是否有更多 true是false否
  35. */
  36. public function index() {
  37. $ppintuan_model = model('ppintuan');
  38. $goods_model = model('goods');
  39. $condition = array(
  40. array('pintuan_state', '=', 1),
  41. array('pintuan_starttime', '<', TIMESTAMP),
  42. array('pintuan_end_time', '>', TIMESTAMP),
  43. );
  44. $pintuan_list = $ppintuan_model->getPintuanList($condition, 10, 'pintuan_state desc, pintuan_end_time desc');
  45. foreach ($pintuan_list as $key => $pintuan) {
  46. $goods_info=$goods_model->getGoodsInfoByID($pintuan['pintuan_goods_id']);
  47. if(!$goods_info || $goods_info['goods_state']!=1 || $goods_info['goods_verify']!=1){
  48. unset($pintuan_list[$key]);
  49. continue;
  50. }
  51. $pintuan_list[$key]['pintuan_image'] = goods_cthumb($pintuan['pintuan_image'], 240);
  52. $pintuan_list[$key]['pintuan_zhe_price'] = round($pintuan['pintuan_goods_price'] * $pintuan['pintuan_zhe'] / 10, 2);
  53. }
  54. $page_count = $ppintuan_model->page_info;
  55. $result = array_merge(array('pintuan_list' => $pintuan_list,), mobile_page($page_count));
  56. ds_json_encode(10000, '', $result);
  57. }
  58. }