mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-28 22:50:18 +00:00
136 lines
4.1 KiB
PHP
136 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/13
|
|
*/
|
|
|
|
namespace app\admin\model\system;
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
/**
|
|
* 数据列表 model
|
|
* Class SystemGroupData
|
|
* @package app\admin\model\system
|
|
*/
|
|
class SystemGroupData extends BaseModel
|
|
{
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'system_group_data';
|
|
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* 根据where条件获取当前表中的前20条数据
|
|
* @param $params
|
|
* @return array
|
|
*/
|
|
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;
|
|
}, $params);
|
|
}
|
|
|
|
/**
|
|
* 获得组合数据信息+组合数据列表
|
|
* @param $config_name
|
|
* @param int $limit
|
|
* @return array|bool|null|\think\Model
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
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;
|
|
}
|
|
|
|
/**
|
|
* 获取单个值
|
|
* @param $config_name
|
|
* @param int $limit
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
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['type'] == 'upload' ? (isset($field["value"][0]) ? $field["value"][0]: ''):$field["value"];
|
|
$data[$key][$index] = $field["value"];
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* @param $result
|
|
* @return array
|
|
*/
|
|
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;
|
|
}
|
|
|
|
|
|
/**
|
|
* 根据id获取当前记录中的数据
|
|
* @param $id
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
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;
|
|
}
|
|
} |