添加网站文件

This commit is contained in:
2025-12-22 13:59:40 +08:00
commit 117aaf83d1
19468 changed files with 2111999 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
<?php
// +----------------------------------------------------------------------
// | likeshop100%开源免费商用商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | 商业版本务必购买商业授权,以免引起法律纠纷
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshopTeam
// +----------------------------------------------------------------------
namespace app\admin\logic;
use app\common\server\ConfigServer;
use think\Db;
class RechargeLogic{
public static function templatelists(){
$list = Db::name('recharge_template')->where(['del'=>0])->select();
foreach ($list as &$item){
$item['money'] && $item['money'] = '¥'.$item['money'];
$item['give_money'] && $item['give_money'] = '¥'.$item['give_money'];
}
return $list;
}
public static function getRechargeConfig(){
$config = [
'open_racharge' => ConfigServer::get('recharge','open_racharge',0),
'give_integral' => ConfigServer::get('recharge', 'give_integral', ''),
'give_growth' => ConfigServer::get('recharge', 'give_growth', ''),
'min_money' => ConfigServer::get('recharge', 'min_money', ''),
];
return [$config];
}
public static function setRecharge($post){
ConfigServer::set('recharge','open_racharge',$post['open_racharge']);
ConfigServer::set('recharge','give_integral',$post['give_integral']);
ConfigServer::set('recharge','give_growth',$post['give_growth']);
ConfigServer::set('recharge','min_money',$post['min_money']);
}
public static function add($post){
$new = time();
$add_data = [
'money' => $post['money'],
'give_money' => $post['give_money'],
'sort' => $post['sort'],
'is_recommend' => $post['is_recommend'],
'create_time' => $new,
'update_time' => $new,
];
return Db::name('recharge_template')->insert($add_data);
}
public static function edit($post){
$new = time();
$update_data = [
'money' => $post['money'],
'give_money' => $post['give_money'],
'sort' => $post['sort'],
'is_recommend' => $post['is_recommend'],
'update_time' => $new,
];
return Db::name('recharge_template')->where(['id'=>$post['id']])->update($update_data);
}
public static function getRechargeTemplate($id){
return Db::name('recharge_template')->where(['id'=>$id])->find();
}
public static function del($id){
return Db::name('recharge_template')->where(['id'=>$id])->update(['update_time'=>time(),'del'=>1]);
}
}