截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

PcLogic.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LikeShop有特色的全开源社交分销电商系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 商业用途务必购买系统授权,以免引起不必要的法律纠纷
  7. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  8. // | 微信公众号:好象科技
  9. // | 访问官网:http://www.likeshop.net
  10. // | 访问社区:http://bbs.likeshop.net
  11. // | 访问手册:http://doc.likeshop.net
  12. // | 好象科技开发团队 版权所有 拥有最终解释权
  13. // +----------------------------------------------------------------------
  14. // | Author: LikeShopTeam
  15. // +----------------------------------------------------------------------
  16. namespace app\api\logic;
  17. use app\common\basics\Logic;
  18. use app\common\enum\GoodsEnum;
  19. use app\common\enum\ShopEnum;
  20. use app\common\model\content\Article;
  21. use app\common\model\goods\Goods;
  22. use app\common\server\ConfigServer;
  23. use app\common\model\shop\ShopFollow;
  24. use app\common\model\shop\ShopCategory;
  25. use app\common\server\UrlServer;
  26. use think\facade\Db;
  27. class PcLogic extends Logic
  28. {
  29. /**
  30. * Notes:pc端获取公共数据
  31. * @param $user_id int 用户id
  32. * @return array
  33. * @author: 2021/3/5 17:47
  34. */
  35. public static function commonData($user_id)
  36. {
  37. $article = Db::name('article')
  38. ->where(['del' => 0, 'is_notice' => 1, 'is_show' => 1])
  39. ->order('create_time desc')
  40. ->field('id,title')
  41. ->limit(3)
  42. ->select();
  43. $cart_num = 0;
  44. $coupon_num = 0;
  45. $nickname = '';
  46. if ($user_id) {
  47. $cart_num = Db::name('cart')->where(['user_id' => $user_id])->sum('goods_num');
  48. $coupon_num = Db::name('coupon_list')->where(['user_id' => $user_id, 'del' => 0, 'status' => 0])->count();
  49. $nickname = Db::name('user')->where(['id' => $user_id])->value('nickname');
  50. }
  51. return [
  52. 'article' => $article,
  53. 'logo' => UrlServer::getFileUrl(ConfigServer::get('website', 'pc_logo')),
  54. 'name' => ConfigServer::get('website', 'name', ''),
  55. 'cart_num' => $cart_num,
  56. 'coupon_num' => $coupon_num,
  57. 'nickname' => $nickname,
  58. 'oa_qr_code' => UrlServer::getFileUrl(ConfigServer::get('oa', 'qr_code', '')),
  59. 'mnp_qr_code' => UrlServer::getFileUrl(ConfigServer::get('mnp', 'qr_code', '')),
  60. ];
  61. }
  62. /**
  63. * Notes:获取商品列表
  64. * @param $page int 页码
  65. * @param $size int 每页数量
  66. * @param $name string 商品名称
  67. * @param $category_id int 分类id
  68. * @param $type int 类型:1-热销榜单;2-新品推荐;3-好物优选
  69. * @param $sort_type string 筛选类型:sales_sum-销量筛选;price-价格筛选
  70. * @param $sort string 排序方式:desc-降序;asc-升序
  71. * @return array
  72. * @author: 2021/3/6 9:57
  73. */
  74. public static function goodsList($page, $size, $name, $category_id,$shop_id, $type, $sort_type, $sort)
  75. {
  76. $where[] = ['del', '=', GoodsEnum::DEL_NORMAL];
  77. $where[] = ['status', '=', GoodsEnum::STATUS_SHELVES];
  78. $where[] = ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK];
  79. // 过滤已删除、已冻结、已暂停营业、已到期的店铺
  80. $banShopIds = GoodsLogic::filterShopsIds();
  81. if (!empty($banShopIds)) {
  82. $where[] = ['shop_id', 'not in', $banShopIds];
  83. }
  84. //按商品名称搜索
  85. if ($name) {
  86. $where[] = ['name', 'like', '%' . $name . '%'];
  87. }
  88. //按商品分类搜索
  89. if ($category_id) {
  90. $where[] = ['shop_cate_id', '=', $category_id];
  91. }
  92. //按商品名称搜索
  93. if ($shop_id) {
  94. $where[] = ['shop_id','=',$shop_id];
  95. }
  96. //按类型筛选
  97. if (1 != $type) {
  98. switch ($type) {
  99. case 2:
  100. $where[] = ['is_new', '=', 1];
  101. break;
  102. case 3:
  103. $where[] = ['is_best', '=', 1];
  104. break;
  105. }
  106. }
  107. //按排序条件显示
  108. $order = [];
  109. if ($sort_type && $sort) {
  110. $order = [$sort_type => $sort];
  111. }
  112. $goods = new Goods();
  113. $count = $goods
  114. ->where($where)
  115. ->count();
  116. $list = $goods
  117. ->where($where)
  118. ->field('id,name,image,min_price as price,market_price,sales_actual + sales_virtual as sales_sum')
  119. ->order($order)
  120. ->page($page, $size)
  121. ->select();
  122. $more = is_more($count, $page, $size); //是否有下一页
  123. return [
  124. 'list' => $list,
  125. 'page' => $page,
  126. 'size' => $size,
  127. 'count' => $count,
  128. 'more' => $more
  129. ];
  130. }
  131. /**
  132. * Notes:修改用户信息
  133. * @param $post array 用户信息
  134. * @return int|string
  135. * @author: 2021/3/8 19:07
  136. * @throws \think\exception\PDOException
  137. * @throws \think\Exception
  138. */
  139. public static function changeUserInfo($post)
  140. {
  141. $data = [
  142. 'nickname' => $post['nickname'],
  143. 'sex' => $post['sex'],
  144. 'update_time' => time(),
  145. ];
  146. Db::name('user')->where(['id' => $post['user_id']])->update($data);
  147. return true;
  148. }
  149. public static function categoryThirdTree()
  150. {
  151. // $cache = Cache::get('goods_category_'.);
  152. // if ($cache) {
  153. // return $cache;
  154. // }
  155. $lists = Db::name('goods_category')->where(['is_show' => 1, 'del' => 0, 'level' => 1])->order('sort asc')->column('id,name,pid,image,level', 'id');
  156. $level2 = Db::name('goods_category')->where(['is_show' => 1, 'del' => 0, 'level' => 2])->order('sort asc')->column('id,name,pid,image,level', 'id');
  157. $level3 = Db::name('goods_category')->where(['is_show' => 1, 'del' => 0, 'level' => 3])->order('sort asc')->field('id,name,pid,image,level')->select();
  158. //挂载第二级
  159. foreach ($level3 as $list3) {
  160. if (isset($level2[$list3['pid']])) {
  161. $list3['image'] = UrlServer::getFileUrl($list3['image']);
  162. $list3['type'] = 1;
  163. $level2[$list3['pid']]['sons'][] = $list3;
  164. }
  165. }
  166. //挂载第一级、并移除没有下级的二级分类
  167. foreach ($level2 as $key2 => $list2) {
  168. if (isset($lists[$list2['pid']])) {
  169. $list2['type'] = 1;
  170. $list2['image'] = UrlServer::getFileUrl($list2['image']);
  171. $lists[$list2['pid']]['sons'][] = $list2;
  172. }
  173. }
  174. //移除没有完整的三级分类
  175. foreach ($lists as $key1 => $list1) {
  176. if (!isset($list1['sons'])) {
  177. $lists[$key1]['sons'] = [];
  178. }
  179. $lists[$key1]['image'] = UrlServer::getFileUrl($list1['image']);
  180. $lists[$key1]['type'] = 1;
  181. }
  182. // Cache::set('goods_category_pc'.$client, array_values($lists));
  183. return array_values($lists);
  184. }
  185. public static function articleDetail($id)
  186. {
  187. $article = Article::field('id,title,create_time,visit,content')
  188. ->where(['id' => $id])
  189. ->findOrEmpty();
  190. if($article->isEmpty()) {
  191. $article = [];
  192. } else {
  193. $article->visit = $article->visit + 1;
  194. $article->save();
  195. $article = $article->toArray();
  196. }
  197. $recommend_list = Db::name('article')
  198. ->where([['del','=','0'], ['id','<>',$id]])
  199. ->field('id,title,image,visit')
  200. ->order('visit desc')
  201. ->limit(5)
  202. ->select()
  203. ->toArray();
  204. foreach ($recommend_list as &$recommend){
  205. $recommend['image'] = UrlServer::getFileUrl($recommend['image']);
  206. }
  207. $article['recommend_list'] = $recommend_list;
  208. return $article;
  209. }
  210. /**
  211. * @notes PC我的店铺收藏列表
  212. * @param $get
  213. * @return array
  214. * @throws \think\db\exception\DataNotFoundException
  215. * @throws \think\db\exception\DbException
  216. * @throws \think\db\exception\ModelNotFoundException
  217. * @author suny
  218. * @date 2021/10/28 5:09 下午
  219. */
  220. public static function shopFollowList($get)
  221. {
  222. $where = [
  223. 'sf.user_id' => $get['user_id'],
  224. 'sf.status' => 1
  225. ];
  226. $lists = ShopFollow::alias('sf')
  227. ->field('s.id,s.name,s.cid,s.type,s.logo,s.score,s.cover,sf.shop_id')
  228. ->leftJoin('shop s', 's.id=sf.shop_id')
  229. ->where($where)
  230. ->order('sf.update_time', 'desc')
  231. ->page($get['page_no'], $get['page_size'])
  232. ->select()
  233. ->toArray();
  234. $count = ShopFollow::alias('sf')->where($where)->count();
  235. $typeDesc = [1=>'官方自营', 2=>'入驻商家'];
  236. foreach($lists as &$item) {
  237. // 店铺推荐商品
  238. $goodsWhere = [
  239. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  240. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  241. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  242. ['is_recommend', '=', 1], // 推荐商品
  243. ['shop_id', '=', $item['id']]
  244. ];
  245. $item['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  246. ->where($goodsWhere)
  247. ->order([
  248. 'sort_weight' => 'asc',
  249. 'id' => 'desc'
  250. ])
  251. ->limit(5)
  252. ->select()
  253. ->toArray();
  254. // 商家类型
  255. $item['type_desc'] = $typeDesc[$item['type']];
  256. // 主营类目
  257. $item['cid_desc'] = ShopCategory::where('id', $item['cid'])->value('name');
  258. // logo
  259. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  260. $item['cover'] = $item['cover'] ? UrlServer::getFileUrl($item['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  261. }
  262. $data = [
  263. 'lists' => $lists,
  264. 'count' => $count,
  265. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  266. 'page_no' => $get['page_no'],
  267. 'page_size' => $get['page_size'],
  268. ];
  269. return $data;
  270. }
  271. }