sifangpay/resources/views/web/server/show.blade.php

166 lines
5.5 KiB
PHP

@extends('web.layouts.base')
@section('add_css')
<link rel="stylesheet" href="{{ $style_path }}/css/home.css">
@endsection
@section('header')
@show
@section('content')
<div class="fuwu-details">
<table>
<tr>
<td class="fmimg">
<div class="img" style="background-image: url({{ $show->thumb }})"></div>
</td>
<td>
<div class="fuwu-info">
<p class="zhaiy">{{ $show->subname }}</p>
<p class="intro">{{ $show->intro }}</p>
</div>
</td>
</tr>
</table>
</div>
<div class="fuwu-dian">
<table>
<tr>
<td class="fmimg" valign="top" align="right">
<img src="{{ $style_path }}/image/fuwuneirong.png" alt="">
</td>
<td>
<div class="fuwu-info">
<h3>服务内容</h3>
<div>
{!! clean($show->server_content) !!}
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="fuwu-dian">
<table>
<tr>
<td class="fmimg" valign="top" align="right">
<img src="{{ $style_path }}/image/fuwutedian.png" alt="">
</td>
<td>
<div class="fuwu-info">
<h3>服务特点</h3>
<div>
{!! clean($show->server_feature) !!}
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="fuwu-dian">
<table>
<tr>
<td class="fmimg" valign="top" align="right">
<img src="{{ $style_path }}/image/yingyong.png" alt="">
</td>
<td>
<div class="fuwu-info">
<h3>应用场景</h3>
<div>
{!! clean($show->server_srceen) !!}
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="fuwu-dian">
<table>
<tr>
<td class="fmimg" valign="top" align="right">
<img src="{{ $style_path }}/image/jiaofujieguo.png" alt="">
</td>
<td>
<div class="fuwu-info">
<h3>交付结果</h3>
<div>
{!! clean($show->server_result) !!}
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="fuwu-dian">
<table>
<tr>
<td class="fmimg" valign="top" align="right">
<img src="{{ $style_path }}/image/shoufei.png" alt="">
</td>
<td>
<div class="fuwu-info">
<h3>收费方式</h3>
<div>
{!! clean($show->pay_content) !!}
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="btm-float" style="">
<div class="btm-float__bg"></div>
<div class="btm-float__content clearfix">
<div class="ad-rabbit" id="d3867338af755c2f" style="position: absolute; bottom: 15px; left: 10px; width: 99px; height: 57px; display: none;"></div>
<div class="btm-line">
<input id="btm_number" class="btm-number" placeholder="价格¥" type="text" value="{{ $show->money }}">
</div>
<input type="hidden" name="btm-float-ptag" value="1_1_1_2025">
<p class="btm-btn go-buy">立即下单</p>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
});
</script>
</body>
@endsection
@section('foot_js')
<script src="{{ $style_path }}/js/common.js"></script>
<script src="{{ $style_path }}/js/home.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".fuwu-details-box i", parent.document).hide();
});
</script>
<script>
is_login="{{ Auth::check() }}";
layui.use(['index', 'form'], function(){
var $ = layui.$
,form = layui.form ;
$(".go-buy").click(function(){
if(!is_login)
{
layer.msg('你还没有登陆',{icon:2},function(){
window.top.location.href="{{ route('web.login') }}";
});
}else
{
window.top.location.href="{{ route('web.order.index',['id'=>$show->id]) }}"
}
});
});
</script>
@endsection