123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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"]);
- // if($value["type"] == "upload" || $value["type"] == "uploads"){
- // $html_img = '';
- // if(is_array($value["value"])){
- // foreach ($value["value"] as $img) {
- // $html_img .= '<img class="image" data-image="'.$img.'" width="45" height="45" src="'.$img.'" /><br>';
- // }
- // }else{
- // $html_img = '<img class="image" data-image="'.$value["value"].'" width="45" height="45" src="'.$value["value"].'" />';
- // }
- // $info[$index]["value"] = $html_img;
- // }
- }
- $item->value = $info;
- });
- }
- /**
- * 获得组合数据信息+组合数据列表
- * @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;
- }
- }
|