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.
83 lines
1.8 KiB
83 lines
1.8 KiB
<?php
|
|
namespace app\admin\model;
|
|
|
|
use app\BaseModel;
|
|
use think\Model;
|
|
|
|
|
|
|
|
class AppConfig extends BaseModel
|
|
{
|
|
//定义表名
|
|
protected $name = 'longbing_card_config';
|
|
|
|
|
|
protected static function init ()
|
|
{
|
|
//TODO:初始化内容
|
|
}
|
|
|
|
|
|
public function initConfig ($uniacid)
|
|
{
|
|
return self::create( [ 'uniacid' => $uniacid, ] );
|
|
}
|
|
|
|
public function getConfig ($uniacid)
|
|
{
|
|
$key = 'longbing_card_config_';
|
|
|
|
$cacheData = getCache($key, $uniacid);
|
|
|
|
// 暂时关闭缓存
|
|
$cacheData = false;
|
|
|
|
if ($cacheData)
|
|
{
|
|
$cacheData['fromCache'] = 1;
|
|
return $cacheData;
|
|
}
|
|
|
|
$data = self::where( [ [ 'uniacid', '=', $uniacid ] ] )
|
|
->find();
|
|
|
|
if ( !$data )
|
|
{
|
|
$data = $this->initConfig($uniacid);
|
|
}
|
|
|
|
$data = $data->toArray();
|
|
|
|
|
|
$data = transImagesOne( $data, [ 'vr_cover', 'default_video', 'default_voice', 'appoint_pic', 'click_copy_show_img',
|
|
'shop_carousel_more', 'copyright', 'default_video_cover' ], $uniacid
|
|
);
|
|
setCache( $key, $data, 36000, $uniacid );
|
|
|
|
return $data;
|
|
}
|
|
//获取
|
|
public function getConfigByUniacid($uniacid)
|
|
{
|
|
$result = $this->where(['uniacid' => $uniacid])->find();
|
|
if(!empty($result)){
|
|
$result = $result->toArray();
|
|
}
|
|
return $result;
|
|
}
|
|
//创建
|
|
public function createConfig($data)
|
|
{
|
|
$data['create_time'] = time();
|
|
$result = $this->save($data);
|
|
return !empty($result);
|
|
}
|
|
|
|
//更新
|
|
public function updateConfig($filter ,$data)
|
|
{
|
|
$data['update_time'] = time();
|
|
$result = $this->where($filter)->update($data);
|
|
return !empty($result);
|
|
}
|
|
} |