You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
3.6 KiB
128 lines
3.6 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\admin\model\system;
|
|
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 配置分类model
|
|
*
|
|
* Class SystemConfigTab
|
|
* @package app\admin\model\system
|
|
*/
|
|
class SystemConfigTab extends ModelBasic
|
|
{
|
|
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* @param int $type
|
|
* @return \think\Collection
|
|
*/
|
|
public static function getChildrenTab($pid)
|
|
{
|
|
$model = new self;
|
|
$where['status'] = 1;
|
|
return $model::where($where)->select();
|
|
}
|
|
|
|
/**
|
|
* 获取单选按钮或者多选按钮的显示值
|
|
* */
|
|
public static function getRadioOrCheckboxValueInfo($menu_name, $value)
|
|
{
|
|
$parameter = array();
|
|
$option = array();
|
|
$config_one = \app\admin\model\system\SystemConfig::getOneConfig('menu_name', $menu_name);
|
|
$parameter = explode("\n", $config_one['parameter']);
|
|
foreach ($parameter as $k => $v) {
|
|
if (isset($v) && !empty($v)) {
|
|
$option[$k] = explode('=', $v);
|
|
}
|
|
}
|
|
if (!is_array($value)) {
|
|
$value = explode("\n", $value);
|
|
}
|
|
$value_arr = array();//选项的值
|
|
foreach ($option as $k => $v) {
|
|
foreach ($v as $kk => $vv) {
|
|
if (is_array($value)) {
|
|
if (in_array($v[0], $value)) {
|
|
$value_arr[$k] = $v[1];
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (empty($value_arr)) {
|
|
return '空';
|
|
}
|
|
return $value_arr;
|
|
}
|
|
|
|
/**
|
|
* 插入数据到数据库
|
|
* */
|
|
public static function set($data)
|
|
{
|
|
return self::create($data);
|
|
}
|
|
|
|
/**
|
|
* 获取全部
|
|
* */
|
|
public static function getAll($type = 0)
|
|
{
|
|
$where['status'] = 1;
|
|
if ($type > -1) $where['type'] = $type;
|
|
return Db::name('SystemConfigTab')->where($where)->select();
|
|
}
|
|
|
|
/**
|
|
* 获取配置分类
|
|
* */
|
|
public static function getSystemConfigTabPage($where = array())
|
|
|
|
{
|
|
$model = new self;
|
|
if ($where['title'] != '') $model = $model->where('title', 'LIKE', "%$where[title]%");
|
|
if ($where['status'] != '') $model = $model->where('status', $where['status']);
|
|
return self::page($model, $where);
|
|
|
|
}
|
|
|
|
public static function edit($data, $id, $field = 'id')
|
|
{
|
|
return self::update($data, [$field => $id]);
|
|
}
|
|
|
|
/**
|
|
* 更新数据
|
|
* @access public
|
|
* @param array $data 数据数组
|
|
* @param array $where 更新条件
|
|
* @param array|true $field 允许字段
|
|
* @return $this
|
|
*/
|
|
public static function update($data = [], $where = [], $field = null)
|
|
{
|
|
$model = new static();
|
|
if (!empty($field)) {
|
|
$model->allowField($field);
|
|
}
|
|
$result = $model->isUpdate(true)->save($data, $where);
|
|
return $result;
|
|
}
|
|
}
|
|
|