作者 刘朕
1 个管道 的构建 通过 耗费 0 秒

合并分支 'Branch_liuzhen' 到 'master'

Branch liuzhen



查看合并请求 !45
... ... @@ -182,8 +182,12 @@ class Vip extends Frontend
$this->error('查询为空');
}
if($data['status'] != '1'){
$this->success('SUCCESS',url("index/index/index"));
$this->success('SUCCESS',url("index/vip/success"));
}
$this->error('尚未支付');
}
public function pay_success() {
return $this->view->fetch();
}
}
\ No newline at end of file
... ...
<!DOCTYPE html>
<html lang="zh">
{include file="public/head"/}
<style>
li{
list-style-type: none;
}
ul{
margin: 0;
}
.clear{
clear: both;
}
body{
background:rgba(249,249,249,1);
}
/*菜单样式*/
.content{
width: 100%;
font-size: 0;
background:rgba(249,249,249,1);
}
.content .navBarBox{
width: 100%;
height: 50px;
background: rgba(0,159,142,1);
}
.content .navBarBox ul{
width: 1200px;
height: 100%;
margin: 0 auto;
padding: 0;
font-size: 16px;
font-family: PingFangSC-Semibold;
color:rgba(255,255,255,1);
}
.content .navBarBox ul li{
width: 144px;
height: 100%;
line-height: 50px;
list-style-type: none;
float: left;
}
.content .navBarBox ul li a{
color: rgba(255,255,255,1);
}
.content .titleImgContent{
width: 100%;
height: 146px;
}
.content .titleImgContent img{
width: 100%;
height: 100%;
}
/*主要内容*/
.contentBox{
width: 100%;
margin-top: 12px;
}
.successTip{
margin: auto;
width: 1200px;
height: 745px;
background-color: #FFFFFF;
}
.successTipContent{
text-align: center;
padding-top: 180px;
}
.successTipContent img{
width: 80px;
height: 80px;
}
.paySuccess{
font-size:14px;
font-family:PingFang SC;
font-weight:500;
color:rgba(6,18,30,1);
margin-bottom: 20px;
margin-top: 30px;
}
.submitSuccess{
font-size:14px;
font-family:PingFang SC;
font-weight:400;
color:rgba(102,105,110,1);
}
</style>
<body>
{include file="public/header"/}
<!--主要内容-->
<div class="content">
{include file="public/nav"}
<!--主要内容-->
<div class="contentBox">
<div class="successTip">
<div class="successTipContent">
<img src="__CDN__/assets/store/images/successTip.png" alt="">
<p class="paySuccess">支付成功</p>
<p class="submitSuccess">您的入驻申请已提交成功,工品达客服将在三个工作日内与您取得联系。</p>
</div>
</div>
</div>
</div>
{include file="public/footer"/}
<script>
</script>
</body>
</html>
\ No newline at end of file
... ...