No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Ajax.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\home\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\AjaxPage;
  17. use think\Request;
  18. class Ajax extends Base
  19. {
  20. public function _initialize() {
  21. parent::_initialize();
  22. }
  23. /**
  24. * 跳转到文档详情页
  25. * @return [type] [description]
  26. */
  27. public function toView()
  28. {
  29. $aid = input('param.aid/d');
  30. if (!empty($aid)) {
  31. $archives = Db::name('archives')->alias('a')
  32. ->field('b.*, a.*, c.ctl_name')
  33. ->join('arctype b', 'a.typeid = b.id', 'LEFT')
  34. ->join('channeltype c', 'c.id = a.channel', 'LEFT')
  35. ->where(['a.aid'=>$aid])
  36. ->find();
  37. $url = arcurl('home/'.$archives['ctl_name'].'/view', $archives, true, true);
  38. header('Location: '.$url);
  39. exit;
  40. }
  41. }
  42. /**
  43. * 获取评论列表
  44. * @return mixed
  45. */
  46. public function product_comment()
  47. {
  48. \think\Session::pause(); // 暂停session,防止session阻塞机制
  49. $post = input('post.');
  50. $post['aid'] = !empty($post['aid']) ? $post['aid'] : input('param.aid/d');
  51. if (isMobile() && 1 < $post['p']) {
  52. $Result = [];
  53. } else {
  54. $Result = cache('EyouHomeAjaxComment_' . $post['aid']);
  55. if (empty($Result)) {
  56. /*商品评论数计算*/
  57. $time = getTime();
  58. $where = [
  59. 'is_show' => 1,
  60. 'add_time' => ['<=', $time],
  61. 'product_id' => $post['aid']
  62. ];
  63. $count = Db::name('shop_order_comment')->field('total_score, is_new_comment')->where($where)->select();
  64. $Result['total'] = count($count);
  65. $Result['good'] = 0;
  66. $Result['middle'] = 0;
  67. $Result['bad'] = 0;
  68. foreach ($count as $k => $v) {
  69. // 评价转换星级评分(旧版评价数据执行)
  70. $v['total_score'] = empty($v['is_new_comment']) ? GetScoreArray($v['total_score']) : $v['total_score'];
  71. if (in_array($v['total_score'], [1, 2])) {
  72. $Result['bad']++;
  73. } else if (in_array($v['total_score'], [3, 4])) {
  74. $Result['middle']++;
  75. } else if (in_array($v['total_score'], [5])) {
  76. $Result['good']++;
  77. }
  78. }
  79. $Result['good_percent'] = $Result['good'] > 0 ? round($Result['good'] / $Result['total'] * 100) : 0;
  80. if (0 === intval($Result['good_percent']) && $Result['total'] === 0) $Result['good_percent'] = 100;
  81. $Result['middle_percent'] = $Result['middle'] > 0 ? round($Result['middle'] / $Result['total'] * 100) : 0;
  82. $Result['bad_percent'] = $Result['bad'] > 0 ? 100 - $Result['good_percent'] - $Result['middle_percent'] : 0;
  83. // 存在评论则执行
  84. // if (!empty($Result)) cache('EyouHomeAjaxComment_' . $post['aid'], $Result, null, 'shop_order_comment');
  85. }
  86. /*选中状态*/
  87. $Result['Class_1'] = 0 == $post['score'] ? 'check' : '';
  88. $Result['Class_2'] = 1 == $post['score'] ? 'check' : '';
  89. $Result['Class_3'] = 2 == $post['score'] ? 'check' : '';
  90. $Result['Class_4'] = 3 == $post['score'] ? 'check' : '';
  91. }
  92. // 调用评价列表
  93. $this->GetCommentList($post);
  94. $this->assign('Result', $Result);
  95. return $this->fetch('system/product_comment');
  96. }
  97. // 手机端加载更多时调用
  98. public function comment_list()
  99. {
  100. \think\Session::pause(); // 暂停session,防止session阻塞机制
  101. // 调用评价列表
  102. $this->GetCommentList(input('post.'));
  103. return $this->fetch('system/comment_list');
  104. }
  105. // 调用评价列表
  106. private function GetCommentList($post = [])
  107. {
  108. // 商品评论数据处理
  109. $field = 'a.*, u.username, u.nickname, u.head_pic, u.sex, l.level_name, b.data';
  110. $time = getTime();
  111. $where = [
  112. 'a.is_show' => 1,
  113. 'a.add_time' => ['<=', $time],
  114. 'a.product_id' => $post['aid']
  115. ];
  116. if (!empty($post['score'])) {
  117. // $where['a.total_score'] = $post['score'];
  118. if (3 === intval($post['score'])) {
  119. $where['a.total_score'] = ['IN', [1, 2]];
  120. } else if (2 === intval($post['score'])) {
  121. $where['a.total_score'] = ['IN', [3, 4]];
  122. } else if (1 === intval($post['score'])) {
  123. $where['a.total_score'] = ['IN', [5]];
  124. }
  125. }
  126. $count = Db::name('shop_order_comment')->alias('a')->where($where)->count();
  127. $Page = new AjaxPage($count, 5);
  128. $Comment = Db::name('shop_order_comment')
  129. ->alias('a')
  130. ->field($field)
  131. ->where($where)
  132. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  133. ->join('__USERS__ u', 'a.users_id = u.users_id', 'LEFT')
  134. ->join('__USERS_LEVEL__ l', 'u.level = l.level_id', 'LEFT')
  135. ->order('a.comment_id desc')
  136. ->limit($Page->firstRow . ',' . $Page->listRows)
  137. ->select();
  138. $Comment = !empty($Comment) ? $Comment : [];
  139. foreach ($Comment as &$value) {
  140. // 规格处理
  141. $value['data'] = unserialize($value['data']);
  142. $value['spec_value'] = !empty($value['data']['spec_value']) ? htmlspecialchars_decode($value['data']['spec_value']) : '';
  143. $value['spec_value'] = rtrim(str_replace("<br/>", ",", $value['spec_value']), ',');
  144. // 会员头像处理
  145. $value['nickname'] = empty($value['nickname']) ? $value['username'] : $value['nickname'];
  146. $value['head_pic'] = handle_subdir_pic(get_default_pic($value['head_pic'], false, $value['sex']));
  147. // $value['head_pic'] = get_head_pic($value['head_pic'], false, $value['sex']);
  148. // 是否匿名评价
  149. $value['nickname'] = empty($value['is_anonymous']) ? $value['nickname'] : '匿名用户';
  150. // 评价转换星级评分(旧版评价数据执行)
  151. $value['total_score'] = empty($value['is_new_comment']) ? GetScoreArray($value['total_score']) : $value['total_score'];
  152. // 评价上传的图片
  153. $value['upload_img'] = !empty($value['upload_img']) ? explode(',', unserialize($value['upload_img'])) : '';
  154. // 评价的内容
  155. $value['content'] = !empty($value['content']) ? htmlspecialchars_decode(unserialize($value['content'])) : '';
  156. // 回复的内容
  157. $adminReply = !empty($value['admin_reply']) ? unserialize($value['admin_reply']) : [];
  158. $adminReply['adminReply'] = !empty($adminReply['adminReply']) ? htmlspecialchars_decode($adminReply['adminReply']) : '';
  159. $value['admin_reply'] = $adminReply;
  160. }
  161. // dump($Comment);exit;
  162. // 新版评价处理,查询全部评价评分
  163. $totalScoreAll = Db::name('shop_order_comment')->alias('a')->field('total_score, is_new_comment')->where($where)->select();
  164. $totalScore = $praiseNum = 0;
  165. foreach ($totalScoreAll as $score) {
  166. // 计算总评分
  167. $score['total_score'] = empty($score['is_new_comment']) ? GetScoreArray($score['total_score']) : $score['total_score'];
  168. $totalScore = intval($totalScore) + intval($score['total_score']);
  169. // 好评数统计(4星以上算好评)
  170. if (intval($score['total_score']) >= 4) $praiseNum++;
  171. }
  172. // 评价总数
  173. $totalScoreRows = count($totalScoreAll);
  174. // 好评率(4星以上算好评)
  175. $praiseRate = intval($totalScoreRows) == 0 ? 0 : intval((intval($praiseNum) / intval($totalScoreRows)) * 100);
  176. if (0 === intval($praiseRate)) $praiseRate = 100;
  177. // 总评分 / 评价人数 = 评分平均值
  178. // $averageRating = floatval(sprintf("%.2f", strval(intval($totalScore) / intval($totalScoreRows))));
  179. $averageRating = intval($totalScoreRows) == 0 ? 0 : sprintf("%.1f", strval(intval($totalScore) / intval($totalScoreRows)));
  180. if (0 === intval($averageRating)) $averageRating = '5.0';
  181. // 平均值占比
  182. $averageRatingRate = floatval(sprintf("%.2f", (strval($averageRating) / strval(5)) * strval(100)));
  183. $this->assign('praiseRate', $praiseRate);
  184. $this->assign('averageRating', $averageRating);
  185. $this->assign('totalScoreRows', $totalScoreRows);
  186. $this->assign('averageRatingRate', $averageRatingRate);
  187. // 加载渲染模板
  188. $this->assign('PageObj', $Page);
  189. $this->assign('Page', $Page->show());
  190. $this->assign('Comment', $Comment);
  191. }
  192. // 联动地址获取
  193. public function ajax_get_region_data()
  194. {
  195. $parent_id = input('param.parent_id/d');
  196. // 获取指定区域ID下的城市并判断是否需要处理特殊市返回值
  197. $RegionData = $this->SpecialCityDealWith($parent_id);
  198. // 处理数据
  199. $region_html = $region_names = $region_ids = '';
  200. if ($RegionData) {
  201. // 拼装下拉选项
  202. foreach ($RegionData as $key => $value) {
  203. $region_html .= "<option value='{$value['id']}'>{$value['name']}</option>";
  204. if ($key > '0') {
  205. $region_names .= ',';
  206. $region_ids .= ',';
  207. }
  208. $region_names .= $value['name'];
  209. $region_ids .= $value['id'];
  210. }
  211. }
  212. $return = [
  213. 'region_html' => $region_html,
  214. 'region_names' => $region_names,
  215. 'region_ids' => $region_ids,
  216. // 'parent_array' => config('global.field_region_all_type'),
  217. ];
  218. echo json_encode($return);
  219. }
  220. // 获取指定区域ID下的城市并判断是否需要处理特殊市返回值
  221. // 特殊市:北京市,上海市,天津市,重庆市
  222. private function SpecialCityDealWith($parent_id = 0)
  223. {
  224. empty($parent_id) && $parent_id = 0;
  225. /*parent_id在特殊范围内则执行*/
  226. // 处理北京市,上海市,天津市,重庆市逻辑
  227. $RegionData = Db::name('region')->where("parent_id", $parent_id)->select();
  228. $parent_array = config('global.field_region_type');
  229. if (in_array($parent_id, $parent_array)) {
  230. $region_ids = get_arr_column($RegionData, 'id');
  231. $RegionData = Db::name('region')->where('parent_id', 'IN', $region_ids)->select();
  232. }
  233. /*结束*/
  234. return $RegionData;
  235. }
  236. }