where($where) ->count(); $ad_position_list = $ad_position ->where($where) ->page($get['page'], $get['limit']) ->select(); foreach ($ad_position_list as $item) { $item['client_name'] = Ad::getAdTypeDesc($item['client']); } return ['count' => $ad_position_count, 'list' => $ad_position_list]; } /** * 添加 * @param $post * @return bool * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function addAdPosition($post) { $ad_position = new AdPosition(); $post['status'] = isset($post['status']) ? $post['status'] : 0; $time = time(); $data = [ 'name' => $post['name'], 'width' => $post['width'], 'height' => $post['height'], 'status' => $post['status'], 'client' => $post['client'], 'attr' => 0, 'create_time' => $time, ]; return $ad_position->allowField(true)->save($data); } /** * 编辑 * @param $post * @return bool * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function editAdPosition($post) { $ad_position = new AdPosition(); $post['status'] = isset($post['status']) ? $post['status'] : 0; $time = time(); $data = [ 'name' => $post['name'], 'width' => $post['width'], 'height' => $post['height'], 'status' => $post['status'], 'attr' => 0, 'update_time' => $time, ]; return $ad_position->allowField(true)->save($data, ['id' => $post['id']]); } /** * 删除 * @param $delData * @return int|string * @throws Exception * @throws \think\exception\PDOException */ public static function del($delData, $client, $attr) { if (is_array($attr)) { foreach ($attr as $key => $val) { if ($val == 1) { unset($delData[$key]); } } } elseif ($attr == 1) { return false; } if (is_array($delData)) { $pid = Db::name('ad') ->where(['client' => $client, 'pid' => $delData, 'del' => 0]) ->select(); if (!empty($pid)) { return false; } } else { $pid = Db::name('ad') ->where(['client' => $client, 'pid' => $delData, 'del' => 0]) ->find(); if (!empty($pid)) { return false; } } $data = [ 'del' => 1, 'update_time' => time(), ]; $result = Db::name('ad_position')->where(['client' => $client, 'id' => $delData, 'del' => 0])->update($data); return $result; } /** * 广告表信息 * @param $id * @return mixed */ public static function info($id) { $ad_position = new AdPosition(); $info = $ad_position::get(['id' => $id]); return $info; } /** * 更改状态 * @param $get * @return int|string * @throws Exception * @throws \think\exception\PDOException */ public static function switchStatus($get) { $data = [ 'status' => $get['status'], 'update_time' => time(), ]; return Db::name('ad_position') ->where(['client' => $get['client'], 'id' => $get['id'], 'del' => 0]) ->update($data); } }