123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: https://thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // | 免费声明 ( https://thinkadmin.top/disclaimer )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\data\model\DataBestKnowledge;
- use app\data\model\DataClassification;
- use app\data\model\DataPoolTalent;
- use app\data\model\DataUser;
- use app\data\model\DataZhicheng;
- use app\data\model\ShopGoodsCate;
- use app\data\model\ShopGoodsMark;
- use app\data\service\GoodsService;
- use Carbon\Carbon;
- use think\admin\Controller;
- use app\data\model\SystemUser;
- use think\admin\service\AdminService;
- use think\db\Query;
- /**
- * 百知文库管理
- * Class BestKnowledge
- * @package app\admin\controller
- */
- class BestKnowledge extends Controller
- {
- /**
- * 分类管理
- * @auth true
- * @menu true
- */
- public function class(){
- $this->title='分类管理';
- DataClassification::mQuery()
- ->show(1)
- ->like('name')
- ->order('id','desc')
- ->layTable();
- }
- /**
- * 分类编辑
- * @auth true
- * @menu true
- */
- public function class_edit($id){
- if($this->request->isPost()){
- if (DataClassification::mk()->where('id',$this->request->post('id'))->update(['name'=>$this->request->post('name'),'update_at'=>$this->request->post('update_at')])){
- $this->success('保存成功');
- }
- $this->error('失败');
- }else{
- $row=DataClassification::mk()->findOrFail($id);
- $this->assign('row',$row);
- $this->fetch('class_form');
- }
- }
- /**
- * 分类添加
- * @auth true
- * @menu true
- */
- public function class_add(){
- if($this->request->isPost()){
- if (DataClassification::mk()->insert(['name'=>$this->request->post('name')])){
- $this->success('保存成功');
- }
- $this->error('失败');
- }
- DataClassification::mForm('class_form');
- }
- /**
- * 分类删除
- * @auth true
- * @menu true
- */
- public function class_del($id){
- DataClassification::whereIn('id',$id)->save([
- 'is_del'=>0,
- ]);
- $this->success('删除成功');
- }
- /**
- * 百知文库申请管理
- * @auth true
- * @menu true
- */
- public function index(){
- $this->title='百知文库申请列表';
- $name=input('name');
- DataBestKnowledge::mQuery()
- ->when($name,function (Query $query) use ($name) {
- $query->hasWhere('user',function (Query $query) use ($name) {
- $query->whereLike('nickname',"%{$name}%");
- });
- })
- ->with(['user','classTo'])
- ->whereIn('audit','1,3')
- ->where('type',2)
- ->where('is_del',1)
- ->order('id','desc')
- ->layTable();
- }
- /**
- * 百知文库申请审核
- * @auth true
- * @menu true
- */
- public function audit($id){
- $this->title='百知文库申请审核';
- $row=DataBestKnowledge::mk()->findOrFail($id);
- // dump($row);
- if($this->request->isGet()){
- $this->assign('row',$row);
- $this->fetch();
- }else{
- if($row['audit']>1){
- $this->error('该记录已审核');
- }
- $data=$this->_vali([
- 'audit.require'=>'结果必须',
- 'audit.in:2,3'=>'结果有误',
- 'why.requireIf:audit,3'=>'原因必须',
- 'why.max:200'=>'原因有误',
- ]);
- $row['audit']=$data['audit'];
- $row['why']=$data['why']??'';
- $row['audit_at']=Carbon::now();
- $row->save();
- if ($data['audit']==2){
- if ($row['amount']>0){
- //用户加钱
- userMoneyChange($row['amount'],1,$row['uuid'],'百知文库通过',1,$row['id']);
- }
- }
- $this->success('审核成功');
- }
- }
- /**
- * 百知文库申请管理
- * @auth true
- * @menu true
- */
- public function index2(){
- $this->title='百知文库列表';
- $name=input('name');
- $title=input('title');
- $class_id = input('class_id');
- $where = [];
- if($class_id != ''){
- $where['class_id'] = $class_id;
- }
- $this->class = DataClassification::where('is_del',1)->select();
- DataBestKnowledge::mQuery()
- ->when($name,function (Query $query) use ($name) {
- $query->hasWhere('user',function (Query $query) use ($name) {
- $query->whereLike('nickname',"%{$name}%");
- });
- })
- ->with(['user','classTo'])
- // ->whereIn('type','1,2')
- ->where('audit',2)
- ->where('is_del',1)
- ->where($where)
- ->whereLike('title',"%{$title}%")
- ->order('id','desc')
- ->layTable();
- }
- /**
- * 百知文库添加
- * @auth true
- * @menu true
- */
- public function add(){
- $this->assign('category',DataClassification::show(1)->select());
- DataBestKnowledge::mForm('form');
- }
- /**
- * 百知文库编辑
- * @auth true
- * @menu true
- */
- public function edit(){
- $this->assign('category',DataClassification::show(1)->select());
- DataBestKnowledge::mForm('form');
- }
- public function _form_filter($vo){
- if ($this->request->isGet()) {
- if (isset($vo['id'])){
- if (isset($vo['imgs'])){
- //$vo['imgs']= implode('|',explode(',',implode(',',$vo['imgs'])));
- }
- $this->assign('vo',$vo);
- $this->fetch('form');
- }
- }elseif ($this->request->isPost()){
- $vo['imgs'] = implode(',',explode('|',$vo['imgs']));
- $vo['audit'] =2;
- unset($vo['user']);
- if(isset($vo['audit_at'])){
- if($vo['audit_at'] == '' || $vo['audit_at'] == null){
- unset($vo['audit_at']);
- }
- }
- if(isset($vo['filename']))
- {
- unset($vo['filename']);
- }
- isset($vo['id']) ? DataBestKnowledge::mk()->where('id',$vo['id'])->update($vo) : DataBestKnowledge::mk()->insert($vo);
- $this->success('数据更新成功');
- }
- }
- /**
- * 删除
- * @auth true
- * @menu true
- */
- public function del($id){
- DataBestKnowledge::whereIn('id',$id)->save([
- 'is_del'=>0,
- ]);
- $this->success('删除成功');
- }
- /**
- * 百知文库设置
- * @auth true
- * @menu true
- */
- public function setting(){
- $this->title='系统设置';
- if($this->request->isGet()){
- $config=systemConfig('know_config');
- $this->assign('config',$config);
- $this->fetch();
- }else{
- $data=$this->request->post();
- systemConfig('know_config',$data);
- $this->success('保存成功');
- }
- }
- }
|