2023-07-15 10:16:32 +08:00
|
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|
|
|
|
// | 开源版本可自由商用,可去除界面版权logo
|
|
|
|
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
|
|
|
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
|
|
|
|
// | 访问官网:https://www.likeadmin.cn
|
|
|
|
|
// | likeadmin团队 版权所有 拥有最终解释权
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | author: likeadminTeam
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\api\logic\IndexLogic;
|
2023-07-23 23:17:29 +08:00
|
|
|
|
use think\facade\Db;
|
2023-07-21 13:45:36 +08:00
|
|
|
|
use think\facade\Log;
|
2023-07-15 10:16:32 +08:00
|
|
|
|
use think\response\Json;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* index
|
|
|
|
|
* Class IndexController
|
|
|
|
|
* @package app\api\controller
|
|
|
|
|
*/
|
|
|
|
|
class IndexController extends BaseApiController
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2023-07-23 23:17:29 +08:00
|
|
|
|
public array $notNeedLogin = ['index', 'config', 'policy', 'decorate','notifyUrl'];
|
2023-07-15 10:16:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 首页数据
|
|
|
|
|
* @return Json
|
|
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
|
|
* @throws \think\db\exception\DbException
|
|
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2022/9/21 19:15
|
|
|
|
|
*/
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
|
|
|
|
$result = IndexLogic::getIndexData();
|
|
|
|
|
return $this->data($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 全局配置
|
|
|
|
|
* @return Json
|
|
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
|
|
* @throws \think\db\exception\DbException
|
|
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2022/9/21 19:41
|
|
|
|
|
*/
|
|
|
|
|
public function config()
|
|
|
|
|
{
|
|
|
|
|
$result = IndexLogic::getConfigData();
|
|
|
|
|
return $this->data($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 政策协议
|
|
|
|
|
* @return Json
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2022/9/20 20:00
|
|
|
|
|
*/
|
|
|
|
|
public function policy()
|
|
|
|
|
{
|
|
|
|
|
$type = $this->request->get('type/s', '');
|
|
|
|
|
$result = IndexLogic::getPolicyByType($type);
|
|
|
|
|
return $this->data($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 装修信息
|
|
|
|
|
* @return Json
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2022/9/21 18:37
|
|
|
|
|
*/
|
|
|
|
|
public function decorate()
|
|
|
|
|
{
|
|
|
|
|
$id = $this->request->get('id/d');
|
|
|
|
|
$result = IndexLogic::getDecorate($id);
|
|
|
|
|
return $this->data($result);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-21 13:45:36 +08:00
|
|
|
|
public function notifyUrl(){
|
2023-07-23 23:17:29 +08:00
|
|
|
|
$a= Request()->get();
|
|
|
|
|
if($a){
|
|
|
|
|
$find=Db::name('contract')->where('id',$a['id'])->find();
|
|
|
|
|
if($find){
|
|
|
|
|
Db::name('contract')->where('id',$a['id'])->update(['status'=>1]);
|
|
|
|
|
if($find['type']==1){
|
|
|
|
|
Db::name('company')->where('id',$find['party_a'])->update(['status'=>1,'is_contract'=>1]);
|
|
|
|
|
Db::name('company')->where('id',$find['party_b'])->update(['status'=>1,'is_contract'=>1]);
|
|
|
|
|
}else{
|
|
|
|
|
Db::name('company')->where('id',$find['party_a'])->update(['status'=>1,'is_contract'=>1]);
|
|
|
|
|
Db::name('admin')->where('id',$find['party_b'])->update(['is_contract'=>1]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return json(['success'=>true,'msg'=>'成功']);
|
2023-07-21 13:45:36 +08:00
|
|
|
|
}
|
2023-07-15 10:16:32 +08:00
|
|
|
|
|
|
|
|
|
}
|