2023-07-20 14:58:08 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
|
|
|
|
|
|
use app\api\logic\IndexLogic;
|
|
|
|
use app\Request;
|
|
|
|
use think\facade\Db;
|
|
|
|
use think\response\Json;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* index
|
|
|
|
* Class IndexController
|
|
|
|
* @package app\api\controller
|
|
|
|
*/
|
2023-07-20 15:04:59 +08:00
|
|
|
class HetongController extends BaseApiController
|
2023-07-20 14:58:08 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
|
2023-07-20 15:04:59 +08:00
|
|
|
public array $notNeedLogin = ['url'];
|
2023-07-20 14:58:08 +08:00
|
|
|
|
|
|
|
public function url()
|
|
|
|
{
|
2023-08-07 15:13:34 +08:00
|
|
|
$id = Request()->get('id');
|
2023-08-07 16:30:04 +08:00
|
|
|
$type = Request()->get('type');
|
2023-08-07 15:13:34 +08:00
|
|
|
$msg='合同不存在';
|
2023-08-07 16:28:09 +08:00
|
|
|
if(!empty($type)){
|
2023-08-07 15:13:34 +08:00
|
|
|
$msg='参数错误';
|
|
|
|
}
|
|
|
|
if ($id && $type) {
|
|
|
|
$find = Db::name('contract')->where('id', $id)->find();
|
|
|
|
if ($find && $find['url']) {
|
|
|
|
$url = json_decode($find['url'], true);
|
|
|
|
if(isset($url[$type])){
|
|
|
|
return redirect($url[$type]);
|
|
|
|
}
|
2023-07-20 14:58:08 +08:00
|
|
|
}
|
|
|
|
}
|
2023-08-07 15:13:34 +08:00
|
|
|
return '<style type="text/css"> * { padding: 0; margin: 0; } div { padding: 4px 48px; } a { color: #2E5CD5; cursor: pointer; text-decoration: none } a:hover { text-decoration: underline; } body { background: #fff; font-family: "Century Gothic", "Microsoft yahei"; color: #333; font-size: 18px; } h1 { font-size: 100px; font-weight: normal; margin-bottom: 12px; } p { line-height: 1.6em; font-size: 42px } </style> <div style="padding: 24px 48px;"> <h1>:) </h1> <p>'.$msg.'</p> </div>';
|
2023-07-20 14:58:08 +08:00
|
|
|
}
|
2023-08-07 15:13:34 +08:00
|
|
|
}
|