截流自动化的商城平台
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.

MenuDecorate.php 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\decoration;
  20. use app\admin\logic\decoration\MenuDecorateLogic;
  21. use app\admin\validate\decoration\MenuDecorateValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\enum\MenuEnum;
  24. use app\common\enum\DecorationEnum;
  25. use app\common\server\JsonServer;
  26. use app\common\server\ConfigServer;
  27. class MenuDecorate extends AdminBase{
  28. /**
  29. * Notes:获取菜单列表
  30. * @return \think\response\Json|\think\response\View
  31. * @author: cjhao 2021/4/28 9:49
  32. */
  33. public function lists(){
  34. if($this->request->isAjax()){
  35. $get = $this->request->get();
  36. $list = MenuDecorateLogic::lists($get);
  37. return JsonServer::success('',$list);
  38. }
  39. $type = $this->request->get('type');
  40. $other_set = MenuDecorateLogic::getOtherSet($type);
  41. return view('',['type'=>$type,'other_set'=>$other_set]);
  42. }
  43. /**
  44. * Notes:新增导航
  45. * @return \think\response\View
  46. * @author: cjhao 2021/5/15 16:29
  47. */
  48. public function add(){
  49. if($this->request->isAjax()){
  50. $post = $this->request->post();
  51. $post['del'] = 0;
  52. $post['decorate_type'] = $post['type'];
  53. (new MenuDecorateValidate())->goCheck('Add',$post);
  54. $result = MenuDecorateLogic::add($post);
  55. if($result){
  56. return JsonServer::success('添加成功');
  57. }
  58. return JsonServer::error('添加失败');
  59. }
  60. $type = $this->request->get('type');
  61. $menu_type = MenuEnum::INDEX;
  62. if(2 == $type){
  63. $menu_type = MenuEnum::CENTRE;
  64. }
  65. return view('',['menu_list'=>$menu_type]);
  66. }
  67. /**
  68. * Notes:编辑菜单
  69. * @return \think\response\Json|\think\response\View
  70. * @author: cjhao 2021/5/18 17:39
  71. */
  72. public function edit(){
  73. if($this->request->isAjax()){
  74. $post = $this->request->post();
  75. $post['del'] = 0;
  76. $post['decorate_type'] = $post['type'];
  77. (new MenuDecorateValidate())->goCheck('edit',$post);
  78. $result = MenuDecorateLogic::edit($post);
  79. if($result){
  80. return JsonServer::success('修改成功');
  81. }
  82. return JsonServer::error('修改失败');
  83. }
  84. $id = $this->request->get('id');
  85. $detail = MenuDecorateLogic::getMenuDecorate($id);
  86. $type = $this->request->get('type');
  87. $menu_type = MenuEnum::INDEX;
  88. if(2 == $type){
  89. $menu_type = MenuEnum::CENTRE;
  90. }
  91. return view('',['menu_list'=>$menu_type,'detail'=>$detail]);
  92. }
  93. /**
  94. * Notes:删除菜单
  95. * @return \think\response\Json
  96. * @author: cjhao 2021/5/18 18:37
  97. */
  98. public function del(){
  99. $id = $this->request->post('id');
  100. (new MenuDecorateValidate())->goCheck('del');
  101. MenuDecorateLogic::del($id);
  102. return JsonServer::success('删除成功');
  103. }
  104. /**
  105. * Notes:切换菜单状态
  106. * @return \think\response\Json
  107. * @author: cjhao 2021/5/18 18:37
  108. */
  109. public function swtichStatus(){
  110. (new MenuDecorateValidate())->goCheck('swtich');
  111. $post = $this->request->post();
  112. MenuDecorateLogic::swtichStatus($post);
  113. return JsonServer::success('操作成功');
  114. }
  115. /**
  116. * Notes:其他设置
  117. * @return \think\response\Json
  118. * @author: cjhao 2021/5/19 14:10
  119. */
  120. public function otherSet(){
  121. $post = $this->request->post();
  122. MenuDecorateLogic::otherSet($post);
  123. return JsonServer::success('设置成功');
  124. }
  125. /**
  126. * 底部导航
  127. */
  128. public function bottomNavigation()
  129. {
  130. if($this->request->isAjax()) {
  131. $get = $this->request->get();
  132. $result = MenuDecorateLogic::bottomNavigation($get);
  133. return JsonServer::success('', $result);
  134. }
  135. $unSelectedTextColor = ConfigServer::get('decoration', 'navigation_setting_ust_color', '#000000');
  136. $selectedTextColor = ConfigServer::get('decoration', 'navigation_setting_st_color', '#000000');
  137. return view('', [
  138. 'unSelectedTextColor' => $unSelectedTextColor,
  139. 'selectedTextColor' => $selectedTextColor,
  140. ]);
  141. }
  142. /**
  143. * 编辑底部导航
  144. */
  145. public function editNavigation()
  146. {
  147. if($this->request->isAjax()) {
  148. $post = $this->request->post();
  149. $result = MenuDecorateLogic::editNavigation($post);
  150. if($result === true) {
  151. return JsonServer::success('操作成功');
  152. }
  153. return JsonServer::error(MenuDecorateLogic::getError());
  154. }
  155. $id = $this->request->get('id');
  156. $navigation = MenuDecorateLogic::getNavigation($id);
  157. return view('', [
  158. 'navigation' => $navigation
  159. ]);
  160. }
  161. /**
  162. * 底部导航 - 其他设置
  163. */
  164. public function setNavigationSetting()
  165. {
  166. $post = $this->request->post();
  167. ConfigServer::set('decoration', 'navigation_setting_ust_color', $post['unSelectedTextColor']);
  168. ConfigServer::set('decoration', 'navigation_setting_st_color', $post['selectedTextColor']);
  169. // ConfigServer::set('decoration', 'navigation_setting_top_bg_image', $post['top_bg_image']);
  170. return JsonServer::success('设置成功');
  171. }
  172. /**
  173. * 商品分类布局页
  174. */
  175. public function categoryLayout() {
  176. if($this->request->isPost()) {
  177. $post = $this->request->post();
  178. // 这里设置值要与显示时取值不同,这里相当于所有的
  179. ConfigServer::set('decoration', 'layout_no', $post['layout_no']);
  180. return JsonServer::success('设置成功');
  181. }
  182. $category_layouts = DecorationEnum::CATEGORY_LAYOUT;
  183. $category_layouts_tips = DecorationEnum::CATEGORY_LAYOUT_TIPS;
  184. $layout_no = ConfigServer::get('decoration', 'layout_no', '1');
  185. return view('', [
  186. 'category_layouts' => $category_layouts,
  187. 'category_layouts_tips' => $category_layouts_tips,
  188. 'layout_no' => $layout_no,
  189. ]);
  190. }
  191. /**
  192. * @Notes: 商品详情店铺信息
  193. * @Author: 张无忌
  194. */
  195. public function goods()
  196. {
  197. if ($this->request->post()) {
  198. $post = $this->request->post();
  199. ConfigServer::set('decoration', 'shop_hide_goods', $post['shop_hide_goods']);
  200. return JsonServer::success('设置成功');
  201. }
  202. return view('', [
  203. 'shop_hide_goods' => ConfigServer::get('decoration', 'shop_hide_goods', 0)
  204. ]);
  205. }
  206. /**
  207. * @Notes: 店铺街显示隐藏
  208. * @Author: 张无忌
  209. */
  210. function shop()
  211. {
  212. if ($this->request->post()) {
  213. $post = $this->request->post();
  214. ConfigServer::set('decoration', 'shop_street_hide', $post['shop_street_hide']);
  215. return JsonServer::success('设置成功');
  216. }
  217. return view('', [
  218. 'shop_street_hide' => ConfigServer::get('decoration', 'shop_street_hide', 1)
  219. ]);
  220. }
  221. }