sifangpay/resources/views/admin/payfor/show.blade.php

111 lines
3.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('admin.layouts.base')
@section('add_css')
<style>
.layui-tab-content {
background: #fff;
}
</style>
@endsection
@section('content')
<div style="padding: 20px">
<div class="layui-tab layui-tab-card">
<ul class="layui-tab-title">
<li class="layui-this">基本信息</li>
</ul>
<div class="layui-tab-content">
<div class="layui-tab-item layui-show">
<table class="layui-table" lay-even>
<colgroup>
<col width="150">
<col width="200">
<col width="120">
<col width="120">
</colgroup>
<tbody>
<tr>
<td>订单ID</td>
<td>{{ $show->id }}</td>
<td>订单编号</td>
<td><span class="layui-badge layui-bg-blue">{{ $show->order_sn }}</span></td>
</tr>
<tr>
<td>订单金额</td>
<td><span class="layui-badge ">{{ $show->price }}</span></td>
<td></td>
<td></td>
</tr>
<tr>
<td>类型</td>
<td><span class="layui-badge layui-bg-blue">{{ $show->order_type_name }}</span></td>
<td>服务类型</td>
<td><span class="layui-badge layui-bg-green">{{ $show->server_type_name }}</span></td>
</tr>
<tr>
<td>景点</td>
<td>{{ $show->screen_type==2?'内景':$show->infos->scenic_name }}</td>
<td>车费</td>
<td>{{ $show->screen_type==2?'无':$show->infos->car_name }}</td>
</tr>
<tr>
<td>产品</td>
<td>{{ $show->infos->product_name }}</td>
<td>精修张数级别</td>
<td>{{ $show->infos->shoot_name }}~<span
class="layui-badge layui-bg-green">{{ $show->infos->shoot_level }}</span></td>
</tr>
<tr>
<td>产品价格</td>
<td>{{ $show->infos->product_price }}</td>
<td>车费价格</td>
<td>{{ $show->infos->car_price }}</td>
</tr>
<tr>
<td>精修价格</td>
<td>{{ $show->infos->shoot_price }}</td>
<td>精修数量</td>
<td>{{ $show->infos->shoot_number }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('add_js')
<script>
layui.use(['index', 'form', 'verify', 'custorm', 'laydate'], function () {
var $ = layui.$
, custorm = layui.custorm
, form = layui.form;
var laydate = layui.laydate;
layer.photos({
photos: '.layui-card-body'
, anim: 5 //0-6的选择指定弹出图片动画类型默认随机请注意3.0之前的版本用shift参数
});
});
</script>
@endsection