123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace app\admin\model\system;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- class SystemGroupData extends BaseModel
- {
-
- protected $pk = 'id';
-
- protected $name = 'system_group_data';
- use ModelTrait;
-
- public static function getList($params)
- {
- $model = new self;
- if ($params['gid'] !== '') $model = $model->where('gid', $params['gid']);
- if ($params['status'] !== '') $model = $model->where('status', $params['status']);
- $model = $model->order('sort desc,id ASC');
- return self::page($model, function ($item, $key) {
- $info = json_decode($item->value, true);
- foreach ($info as $index => $value) {
- if ($value["type"] == "checkbox") $info[$index]["value"] = implode(",", $value["value"]);
- }
- $item->value = $info;
- });
- }
-
- public static function getGroupData($config_name, $limit = 0)
- {
- $group = SystemGroup::where('config_name', $config_name)->field('name,info,config_name')->find();
- if (!$group) return false;
- $group['data'] = self::getAllValue($config_name, $limit);
- return $group;
- }
-
- public static function getAllValue($config_name, $limit = 0)
- {
- $model = self::alias('a')->field('a.*,b.config_name')->join('system_group b', 'a.gid = b.id')
- ->where("b.config_name", $config_name)->where("a.status", 1)
- ->order('sort desc,id ASC');
- if ($limit > 0) $model->limit($limit);
- $data = [];
- $result = $model->select();
- if (!$result) return $data;
- foreach ($result as $key => $value) {
- $data[$key]["id"] = $value["id"];
- $fields = json_decode($value["value"], true);
- foreach ($fields as $index => $field) {
- $data[$key][$index] = $field["value"];
- }
- }
- return $data;
- }
-
- public static function tidyList($result)
- {
- $data = [];
- if (!$result) return $data;
- foreach ($result as $key => $value) {
- $data[$key]["id"] = $value["id"];
- $fields = json_decode($value["value"], true);
- foreach ($fields as $index => $field) {
- $data[$key][$index] = $field['type'] == 'upload' ? (isset($field["value"][0]) ? $field["value"][0] : '') : $field["value"];
- }
- }
- return $data;
- }
-
- public static function getDateValue($id)
- {
- $value = self::alias('a')->where(array("id" => $id))->find();
- $data["id"] = $value["id"];
- $fields = json_decode($value["value"], true);
- foreach ($fields as $index => $field) {
- $data[$index] = $field["value"];
- }
- return $data;
- }
- }
|