GuideController.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. /**
  12. * 引导图
  13. */
  14. namespace app\admin\controller;
  15. use cmf\controller\AdminBaseController;
  16. use think\Db;
  17. class GuideController extends AdminBaseController{
  18. public function set(){
  19. $this->assign('config', cmf_get_option('guide'));
  20. return $this->fetch();
  21. }
  22. public function set_post(){
  23. if($this->request->isPost()){
  24. $options = $this->request->param('post/a');
  25. cmf_set_option('guide', $options);
  26. $this->success("保存成功!", '');
  27. }
  28. }
  29. //列表
  30. public function index(){
  31. $config = cmf_get_option('guide');
  32. $type=$config['type'];
  33. $map['type']=$type;
  34. $guide=Db::name("guide");
  35. $lists = $guide
  36. ->where($map)
  37. ->order("orderno asc, id desc")
  38. ->paginate(20);
  39. $page = $lists->render();
  40. $this->assign("page", $page);
  41. $this->assign('lists', $lists);
  42. $this->assign('type', $type);
  43. return $this->fetch();
  44. }
  45. //添加
  46. public function add(){
  47. $config = cmf_get_option('guide');
  48. $type=$config['type'];
  49. if($type==1){
  50. $map['type']=$type;
  51. $guide=Db::name("guide");
  52. $count=$guide->where($map)->count();
  53. if($count>=1){
  54. $this->error("引导页视频只能存在一个");
  55. }
  56. }
  57. $this->assign('type', $type);
  58. return $this->fetch();
  59. }
  60. public function add_post(){
  61. if ($this->request->isPost()) {
  62. $data = $this->request->param();
  63. $type=$data['type'];
  64. if($type==1){
  65. $count=Db::name("guide")->where("type=1")->count();
  66. if($count>=1){
  67. $this->error("引导页视频只能存在一个");
  68. }
  69. if($_FILES){
  70. $files["file"]=$_FILES["file"];
  71. $type='video';
  72. $uploadSetting = cmf_get_upload_setting();
  73. $extensions=$uploadSetting['file_types']['video']['extensions'];
  74. $allow=explode(",",$extensions);
  75. if (!get_file_suffix($files['file']['name'],$allow)){
  76. $this->error("请上传正确格式的视频文件或检查上传设置中视频文件设置的文件类型");
  77. }
  78. $rs=adminUploadFiles($files,$type);
  79. if($rs['code']!=0){
  80. $this->error($rs['msg']);
  81. }
  82. $data['thumb']=$rs['filepath'];
  83. }else{
  84. $this->error("请上传视频");
  85. }
  86. }
  87. if(!$data['thumb']){
  88. $this->error("请上传图片");
  89. }
  90. unset($data['file']);
  91. $data['addtime']=time();
  92. $data['uptime']=time();
  93. $result=Db::name("guide")->insert($data);
  94. if($result){
  95. $this->success('添加成功');
  96. }else{
  97. $this->error('添加失败');
  98. }
  99. }
  100. }
  101. //删除
  102. public function del(){
  103. $id = $this->request->param('id');
  104. if($id){
  105. $result=Db::name("guide")->delete($id);
  106. if($result){
  107. $this->success('删除成功', '');
  108. }else{
  109. $this->error('删除失败');
  110. }
  111. }else{
  112. $this->error('数据传入失败!');
  113. }
  114. return $this->fetch();
  115. }
  116. //编辑
  117. public function edit(){
  118. $id = $this->request->param('id');
  119. if($id){
  120. $data=Db::name("guide")->find($id);
  121. $this->assign('data', $data);
  122. }else{
  123. $this->error('数据传入失败!');
  124. }
  125. return $this->fetch();
  126. }
  127. public function edit_post(){
  128. if ($this->request->isPost()) {
  129. $data = $this->request->param();
  130. $type=$data['type'];
  131. if($type==1){
  132. if($_FILES){
  133. $files["file"]=$_FILES["file"];
  134. $type='video';
  135. $uploadSetting = cmf_get_upload_setting();
  136. $extensions=$uploadSetting['file_types']['video']['extensions'];
  137. $allow=explode(",",$extensions);
  138. if (!get_file_suffix($files['file']['name'],$allow)){
  139. $this->error("请上传正确格式的视频文件或检查上传设置中视频文件设置的文件类型");
  140. }
  141. $rs=adminUploadFiles($files,$type);
  142. if($rs['code']!=0){
  143. $this->error($rs['msg']);
  144. }
  145. $data['thumb']=$rs['filepath'];
  146. }else{
  147. $this->error("请上传视频");
  148. }
  149. }
  150. if(!$data['thumb']){
  151. $this->error("请上传图片");
  152. }
  153. unset($data['file']);
  154. $data['uptime']=time();
  155. $result=Db::name("guide")->update($data);
  156. if($result){
  157. $this->success('编辑成功');
  158. }else{
  159. $this->error('编辑失败');
  160. }
  161. }
  162. }
  163. //排序
  164. public function listsorders() {
  165. $ids = $this->request->param('listsorders');
  166. foreach ($ids as $key => $r) {
  167. $data['orderno'] = $r;
  168. Db::name("guide")
  169. ->where(array('id' => $key))
  170. ->update($data);
  171. }
  172. $status = true;
  173. if($status){
  174. $this->success("排序更新成功!", '');
  175. }else{
  176. $this->error("排序更新失败!");
  177. }
  178. }
  179. }