更新
This commit is contained in:
parent
8971682390
commit
b000a00504
@ -147,13 +147,12 @@ class CompanyController extends BaseAdminController
|
|||||||
$res = app(JunziqianController::class)->SigningLink($data);
|
$res = app(JunziqianController::class)->SigningLink($data);
|
||||||
if ($res->success == true) {
|
if ($res->success == true) {
|
||||||
Db::name('contract')->where('id', $company['contract_id'])->update(['url' => $res->data]);
|
Db::name('contract')->where('id', $company['contract_id'])->update(['url' => $res->data]);
|
||||||
$url = explode('https://h5.sandbox.junziqian.com/', $res->data);
|
|
||||||
//发送短信
|
//发送短信
|
||||||
$sms = [
|
$sms = [
|
||||||
'mobile' => $company['master_phone'],
|
'mobile' => $company['master_phone'],
|
||||||
'name' => $company['company_name'],
|
'name' => $company['company_name'],
|
||||||
'type' => '《' . $find['contract_type_two_name'] . '》',
|
'type' => '《' . $find['contract_type_two_name'] . '》',
|
||||||
'code' => $url[1],
|
'code' => 'api/Hetong/'.$find['id'],
|
||||||
'scene' => 'WQ'
|
'scene' => 'WQ'
|
||||||
];
|
];
|
||||||
$result = SmsLogic::contractUrl($sms);
|
$result = SmsLogic::contractUrl($sms);
|
||||||
@ -188,17 +187,19 @@ class CompanyController extends BaseAdminController
|
|||||||
})
|
})
|
||||||
->find();
|
->find();
|
||||||
if ($find) {
|
if ($find) {
|
||||||
$data = array(
|
//发送短信
|
||||||
"applyNo" => $find['contract_no'], //TODO *
|
$sms = [
|
||||||
"fullName" => $company['company_name'], //TODO *
|
'mobile' => $company['master_phone'],
|
||||||
"identityCard" => $company['organization_code'], //TODO *
|
'name' => $company['company_name'],
|
||||||
"identityType" => 12, //TODO *
|
'type' => '《' . $find['contract_type_two_name'] . '》',
|
||||||
);
|
'code' => 'api/Hetong/'.$find['id'],
|
||||||
$res = app(JunziqianController::class)->sms($data);
|
'scene' => 'WQ'
|
||||||
if($res->success == true){
|
];
|
||||||
|
$result = SmsLogic::contractUrl($sms);
|
||||||
|
if (true === $result) {
|
||||||
return $this->success('发送成功');
|
return $this->success('发送成功');
|
||||||
}else{
|
} else {
|
||||||
return $this->fail($res->msg);
|
return $this->fail(SmsLogic::getError());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
35
app/api/controller/Hetong.php
Normal file
35
app/api/controller/Hetong.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?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
|
||||||
|
*/
|
||||||
|
class IndexController extends BaseApiController
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public array $notNeedLogin = ['index', 'config', 'policy', 'decorate'];
|
||||||
|
|
||||||
|
public function url()
|
||||||
|
{
|
||||||
|
$id=Request::param('id');
|
||||||
|
if($id){
|
||||||
|
$url=Db::name('contract')->where('id',$id)->value('url');
|
||||||
|
if($url){
|
||||||
|
return redirect($url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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>合同不存在</p> </div>';
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user