TaoLer/app/common/model/Cate.php

107 lines
2.9 KiB
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
2022-08-16 15:21:08 +08:00
/*
* @Author: TaoLer <317927823@qq.com>
* @Date: 2021-12-06 16:04:50
2022-08-16 15:29:04 +08:00
* @LastEditTime: 2022-08-14 07:33:14
2022-08-16 15:21:08 +08:00
* @LastEditors: TaoLer
2022-08-16 15:29:04 +08:00
* @Description: 分类模型
2022-08-16 15:21:08 +08:00
* @FilePath: \github\TaoLer\app\common\model\Cate.php
* Copyright (c) 2020~2022 https://www.aieok.com All rights reserved.
*/
2020-01-01 13:17:19 +08:00
namespace app\common\model;
2023-03-16 22:54:11 +08:00
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
2023-03-16 22:40:15 +08:00
use think\facade\Lang;
2020-01-01 13:17:19 +08:00
use think\Model;
use think\model\concern\SoftDelete;
class Cate extends Model
{
//软删除
use SoftDelete;
protected $deleteTime = 'delete_time';
protected $defaultSoftDelete = 0;
2022-09-23 11:03:10 +08:00
//关联文章
public function article()
{
return $this->hasMany(Article::class);
}
2020-01-01 13:17:19 +08:00
2022-08-16 15:21:08 +08:00
// 查询类别信息
public function getCateInfo(string $ename)
{
//
2022-11-18 10:31:44 +08:00
return $this->field('ename,catename,detpl,desc')->where('ename',$ename)->cache('cate_'.$ename,600)->find();
2022-08-16 15:21:08 +08:00
}
2023-03-16 22:30:36 +08:00
// 查询子分类
public function getSubCate(string $ename)
{
return $this->field('ename,catename')->where('pid', $this::where('ename', $ename)->value('id'))->select();
}
2022-08-16 15:21:08 +08:00
// 删除类别
2021-08-03 17:33:48 +08:00
public function del($id)
2020-01-01 13:17:19 +08:00
{
2022-11-18 10:31:44 +08:00
$cates = $this->field('id,pid')->with('article')->find($id);
$sonCate = $this->field('id,pid')->where('pid',$cates['id'])->find();
2022-09-23 11:03:10 +08:00
if(empty($sonCate)) {
$res = $cates->together(['article'])->delete();
if($res){
return 1;
}else{
return '删除分类失败';
}
} else {
return '存在子分类,无法删除';
2020-01-01 13:17:19 +08:00
}
}
2022-11-18 10:31:44 +08:00
// 分类表
public function getList()
{
2023-03-16 22:40:15 +08:00
$data = $this->field('id,pid,sort,catename,ename,detpl,icon,appname,is_hot,desc')->where(['status'=>1])->select()->toArray();
2022-11-18 10:31:44 +08:00
if(count($data)) {
2023-03-16 22:40:15 +08:00
// 排序
$cmf_arr = array_column($data, 'sort');
array_multisort($cmf_arr, SORT_ASC, $data);
return json(['code'=>0,'msg'=>'ok', 'count' => count($data),'data'=>$data]);
2022-11-18 10:31:44 +08:00
} else {
return json(['code'=>-1,'msg'=>'no data','data'=>'']);
}
}
2023-03-16 22:54:11 +08:00
// 如果菜单下无内容URl不能点击
public function menu()
{
$appname = app('http')->getName();
try {
$cateList = $this->where(['status' => 1, 'appname' => $appname])
->cache('catename' . $appname, 3600)
->append(['url'])
->select()
->toArray();
return $cateList;
} catch (DbException $e) {
return $e->getMessage();
}
}
// 获取url
public function getUrlAttr($value,$data)
{
// 栏目下存在帖子则返回正常url,否则为死链
$articleArr = Article::where('cate_id',$data['id'])->column('id');
if(empty($articleArr)) {
return 'javascript:void(0);';
}
return (string) url('cate',['ename' => $data['ename']]);;
}
2020-01-01 13:17:19 +08:00
}