// +---------------------------------------------------------------------- namespace app\admin\model\system; use traits\ModelTrait; use basic\ModelBasic; /** * 文件检验model * Class SystemFile * @package app\admin\model\system */ class SystemAttachment extends ModelBasic { use ModelTrait; /**添加附件记录 */ public static function attachmentAdd($name, $att_size, $att_type, $att_dir, $satt_dir = '', $pid = 0) { $data['name'] = $name; $data['att_dir'] = $att_dir; $data['satt_dir'] = $satt_dir; $data['att_size'] = $att_size; $data['att_type'] = $att_type; $data['time'] = time(); $data['pid'] = $pid; return self::create($data); } /** 获取图片列表 * @param $where * @return array */ public static function getImageList($where) { $model = new self; if (isset($where['pid']) && $where['pid']) $model = $model->where('pid', $where['pid']); $model = $model->page((int)$where['page'], (int)$where['limit']); $model = $model->order('att_id desc,time desc'); $list = $model->select(); $list = count($list) ? $list->toArray() : []; $site_url = SystemConfig::getValue('site_url'); foreach ($list as &$item) { if ($site_url) { $item['satt_dir'] = (strpos($item['satt_dir'], $site_url) !== false || strstr($item['satt_dir'], 'http') !== false) ? $item['satt_dir'] : $site_url . $item['satt_dir']; $item['att_dir'] = (strpos($item['att_dir'], $site_url) !== false || strstr($item['att_dir'], 'http') !== false) ? $item['satt_dir'] : $site_url . $item['att_dir']; } } $count = isset($where['pid']) && $where['pid'] ? self::where(['pid' => $where['pid']])->count() : self::count(); return compact('list', 'count'); } /** * 获取分类图 * */ public static function getAll($id) { $model = new self; $where['pid'] = $id; $model->where($where)->order('att_id desc'); return $model->page($model, $where, '', 30); } /** * 获取单条信息 * */ public static function getinfo($att_id) { $model = new self; $where['att_id'] = $att_id; return $model->where($where)->select()->toArray()[0]; } }