93 lines
3.2 KiB
PHP
93 lines
3.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
|
<meta charset="utf-8"/>
|
|
<title>注册商户</title>
|
|
<meta name="description" content="User login page"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
|
<link href="{{ url('style/assets')}}/ace.min.css" rel="stylesheet">
|
|
<link href="{{ url('style/assets')}}/a8a968ef/global/plugins/font-awesome/css/font-awesome.min.css"
|
|
rel="stylesheet">
|
|
<link href="{{ url('style/assets')}}/a8a968ef/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="{{ url('style/assets')}}/a8a968ef/other/css/style.css" rel="stylesheet">
|
|
|
|
</head>
|
|
<body class="login-layout" style="background-color: rgb(54,65,80)">
|
|
<style>
|
|
.main-container:before {
|
|
background-color: rgb(54, 65, 80)
|
|
}
|
|
</style>
|
|
<div class="main-container" style="background-color: rgb(54,65,80)">
|
|
<div class="main-content">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-offset-1">
|
|
<div class="login-container">
|
|
<div class="center">
|
|
<h1>
|
|
|
|
<img style="width: 157px;height: 42px;"
|
|
src="{{ config_cache('config.logo') }}"/>
|
|
<span class="red"></span>
|
|
<span class="white" id="id-text2" style="font-size: 22px;">商户信息</span>
|
|
</h1>
|
|
<h4 class="blue" id="id-company-text"></h4>
|
|
</div>
|
|
<div class="space-6"></div>
|
|
<div class="position-relative">
|
|
|
|
|
|
<div id="signup-box" class="signup-box widget-box no-border visible">
|
|
<div class="widget-body">
|
|
|
|
<div class="widget-main" style="display: none" id="show">
|
|
<h5>商户登陆地址:<a href="" class="merchant_url" target="_blank">点击进入</a></h5>
|
|
<h5>链接地址: <span class="merchant_url2"></span></h5>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="{{ url('style/assets')}}/a8a968ef/global/plugins/jquery.min.js"></script>
|
|
|
|
<script src="{{ url('style/assets')}}/a8a968ef/layer/layer.js"></script>
|
|
<script src="{{ url('style/assets')}}/a8a968ef/layer/common.js"></script>
|
|
|
|
<script>
|
|
$("#commit-register").click(function () {
|
|
$.ajax({
|
|
url:'{{ route("web.merchant.order.check") }}',
|
|
method:'get',
|
|
data:{
|
|
_token:'{{ csrf_token() }}',
|
|
order_sn:'{{ $order_sn }}'
|
|
|
|
},
|
|
success:function (res) {
|
|
if(res.error==1)
|
|
{
|
|
|
|
xtips(res.msg, "err");
|
|
}else
|
|
{
|
|
$("#show").show
|
|
layer.alert(res.merchant.msg)
|
|
}
|
|
|
|
}
|
|
})
|
|
})
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|