BestKnowledge.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use app\data\model\DataBestKnowledge;
  17. use app\data\model\DataClassification;
  18. use app\data\model\DataPoolTalent;
  19. use app\data\model\DataUser;
  20. use app\data\model\DataZhicheng;
  21. use app\data\model\ShopGoodsCate;
  22. use app\data\model\ShopGoodsMark;
  23. use app\data\service\GoodsService;
  24. use Carbon\Carbon;
  25. use think\admin\Controller;
  26. use app\data\model\SystemUser;
  27. use think\admin\service\AdminService;
  28. use think\db\Query;
  29. /**
  30. * 百知文库管理
  31. * Class BestKnowledge
  32. * @package app\admin\controller
  33. */
  34. class BestKnowledge extends Controller
  35. {
  36. /**
  37. * 分类管理
  38. * @auth true
  39. * @menu true
  40. */
  41. public function class(){
  42. $this->title='分类管理';
  43. DataClassification::mQuery()
  44. ->show(1)
  45. ->like('name')
  46. ->order('id','desc')
  47. ->layTable();
  48. }
  49. /**
  50. * 分类编辑
  51. * @auth true
  52. * @menu true
  53. */
  54. public function class_edit($id){
  55. if($this->request->isPost()){
  56. if (DataClassification::mk()->where('id',$this->request->post('id'))->update(['name'=>$this->request->post('name'),'update_at'=>$this->request->post('update_at')])){
  57. $this->success('保存成功');
  58. }
  59. $this->error('失败');
  60. }else{
  61. $row=DataClassification::mk()->findOrFail($id);
  62. $this->assign('row',$row);
  63. $this->fetch('class_form');
  64. }
  65. }
  66. /**
  67. * 分类添加
  68. * @auth true
  69. * @menu true
  70. */
  71. public function class_add(){
  72. if($this->request->isPost()){
  73. if (DataClassification::mk()->insert(['name'=>$this->request->post('name')])){
  74. $this->success('保存成功');
  75. }
  76. $this->error('失败');
  77. }
  78. DataClassification::mForm('class_form');
  79. }
  80. /**
  81. * 分类删除
  82. * @auth true
  83. * @menu true
  84. */
  85. public function class_del($id){
  86. DataClassification::whereIn('id',$id)->save([
  87. 'is_del'=>0,
  88. ]);
  89. $this->success('删除成功');
  90. }
  91. /**
  92. * 百知文库申请管理
  93. * @auth true
  94. * @menu true
  95. */
  96. public function index(){
  97. $this->title='百知文库申请列表';
  98. $name=input('name');
  99. DataBestKnowledge::mQuery()
  100. ->when($name,function (Query $query) use ($name) {
  101. $query->hasWhere('user',function (Query $query) use ($name) {
  102. $query->whereLike('nickname',"%{$name}%");
  103. });
  104. })
  105. ->with(['user','classTo'])
  106. ->whereIn('audit','1,3')
  107. ->where('type',2)
  108. ->where('is_del',1)
  109. ->order('id','desc')
  110. ->layTable();
  111. }
  112. /**
  113. * 百知文库申请审核
  114. * @auth true
  115. * @menu true
  116. */
  117. public function audit($id){
  118. $this->title='百知文库申请审核';
  119. $row=DataBestKnowledge::mk()->findOrFail($id);
  120. // dump($row);
  121. if($this->request->isGet()){
  122. $this->assign('row',$row);
  123. $this->fetch();
  124. }else{
  125. if($row['audit']>1){
  126. $this->error('该记录已审核');
  127. }
  128. $data=$this->_vali([
  129. 'audit.require'=>'结果必须',
  130. 'audit.in:2,3'=>'结果有误',
  131. 'why.requireIf:audit,3'=>'原因必须',
  132. 'why.max:200'=>'原因有误',
  133. ]);
  134. $row['audit']=$data['audit'];
  135. $row['why']=$data['why']??'';
  136. $row['audit_at']=Carbon::now();
  137. $row->save();
  138. if ($data['audit']==2){
  139. if ($row['amount']>0){
  140. //用户加钱
  141. userMoneyChange($row['amount'],1,$row['uuid'],'百知文库通过',1,$row['id']);
  142. }
  143. }
  144. $this->success('审核成功');
  145. }
  146. }
  147. /**
  148. * 百知文库申请管理
  149. * @auth true
  150. * @menu true
  151. */
  152. public function index2(){
  153. $this->title='百知文库列表';
  154. $name=input('name');
  155. $title=input('title');
  156. $class_id = input('class_id');
  157. $where = [];
  158. if($class_id != ''){
  159. $where['class_id'] = $class_id;
  160. }
  161. $this->class = DataClassification::where('is_del',1)->select();
  162. DataBestKnowledge::mQuery()
  163. ->when($name,function (Query $query) use ($name) {
  164. $query->hasWhere('user',function (Query $query) use ($name) {
  165. $query->whereLike('nickname',"%{$name}%");
  166. });
  167. })
  168. ->with(['user','classTo'])
  169. // ->whereIn('type','1,2')
  170. ->where('audit',2)
  171. ->where('is_del',1)
  172. ->where($where)
  173. ->whereLike('title',"%{$title}%")
  174. ->order('id','desc')
  175. ->layTable();
  176. }
  177. /**
  178. * 百知文库添加
  179. * @auth true
  180. * @menu true
  181. */
  182. public function add(){
  183. $this->assign('category',DataClassification::show(1)->select());
  184. DataBestKnowledge::mForm('form');
  185. }
  186. /**
  187. * 百知文库编辑
  188. * @auth true
  189. * @menu true
  190. */
  191. public function edit(){
  192. $this->assign('category',DataClassification::show(1)->select());
  193. DataBestKnowledge::mForm('form');
  194. }
  195. public function _form_filter($vo){
  196. if ($this->request->isGet()) {
  197. if (isset($vo['id'])){
  198. if (isset($vo['imgs'])){
  199. //$vo['imgs']= implode('|',explode(',',implode(',',$vo['imgs'])));
  200. }
  201. $this->assign('vo',$vo);
  202. $this->fetch('form');
  203. }
  204. }elseif ($this->request->isPost()){
  205. $vo['imgs'] = implode(',',explode('|',$vo['imgs']));
  206. $vo['audit'] =2;
  207. unset($vo['user']);
  208. if(isset($vo['audit_at'])){
  209. if($vo['audit_at'] == '' || $vo['audit_at'] == null){
  210. unset($vo['audit_at']);
  211. }
  212. }
  213. if(isset($vo['filename']))
  214. {
  215. unset($vo['filename']);
  216. }
  217. isset($vo['id']) ? DataBestKnowledge::mk()->where('id',$vo['id'])->update($vo) : DataBestKnowledge::mk()->insert($vo);
  218. $this->success('数据更新成功');
  219. }
  220. }
  221. /**
  222. * 删除
  223. * @auth true
  224. * @menu true
  225. */
  226. public function del($id){
  227. DataBestKnowledge::whereIn('id',$id)->save([
  228. 'is_del'=>0,
  229. ]);
  230. $this->success('删除成功');
  231. }
  232. /**
  233. * 百知文库设置
  234. * @auth true
  235. * @menu true
  236. */
  237. public function setting(){
  238. $this->title='系统设置';
  239. if($this->request->isGet()){
  240. $config=systemConfig('know_config');
  241. $this->assign('config',$config);
  242. $this->fetch();
  243. }else{
  244. $data=$this->request->post();
  245. systemConfig('know_config',$data);
  246. $this->success('保存成功');
  247. }
  248. }
  249. }