where('tab_id', $where['tab_id']); $count = (new SystemConfig)->count(); if ($where['page'] && $where['limit']) $model = $model->page((int)$where['page'], (int)$where['limit']); $data = $model->select(); if ($data) $data = $data->toArray(); return compact('data', 'count'); } /** * 获取字段值 * @param string $formName * @return string * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public static function getValueByFormName(string $formName): string { $model = new self; $model = $model->where("form_name", $formName); $model = $model->where("status", 1); $info = $model->find(); return $info ? $info['value'] : ''; } /** * @获取系统配置 * @return array */ public static function getSystemConfigValues(): array { $model = new self; return $model->where("status", 1)->column('value', 'form_name'); } /** * 获取字段值 * @param string $formNames * @return array * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public static function getValuesByFormNames(array $formNames): array { $model = new self; $model = $model->where("form_name", 'in', $formNames); $model = $model->where("status", 1); $info = $model->select(); return $info ? $info->toArray() : []; } /** * 获取参数 * @param int $tab_id * @return array * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public static function getLstByTabId(int $tab_id = 0): array { $model = new self; $model = $model->where("tab_id", $tab_id); $model = $model->where("status", 1); $model = $model->where("is_show", 1); $model = $model->order("rank desc"); $info = $model->select(); return $info ? $info->toArray() : []; } /** * 修改value * @param string $form_name * @param string $value * @return SystemConfig */ public static function editValueByFormName(string $form_name, string $value) { $model = new self; $model = $model->where("form_name", $form_name); return $model->update(['value' => $value]); } }