first commit

This commit is contained in:
2020-08-06 16:42:18 +08:00
commit eb792c34aa
12972 changed files with 1511424 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<div class="box box-info" style="padding-bottom:20px;">
<div class="row" style="padding: 0 40px">
<div class="col-md-12">
<div class="box box-success box-solid">
<div class="box-header with-border">
<h3 class="box-title">核销成功统计数据</h3>
</div>
<div class="box-body table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>渠道</th>
<th>100元减10元优惠券成功数</th>
<th>100元减25元优惠券成功数</th>
<th>100元减50元优惠券成功数</th>
<th>200元减100元优惠券成功数</th>
</tr>
</thead>
<tbody>
@foreach ($lists as $list)
<tr >
<td style="padding:5px;">{{ $list['nickname'] }}</td>
<td>{{ $list['ysd10'] }}</td>
<td>{{ $list['ysd25'] }}</td>
<td>{{ $list['ysd50'] }}</td>
<td>{{ $list['ysd100'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,16 @@
<div class="form-group {!! !$errors->has($label) ?: 'has-error' !!}">
<label for="{{$id}}" class="col-sm-2 control-label">{{$label}}</label>
<div class="{{$viewClass['field']}}">
@include('admin::form.error')
<div id="{{$id}}" style="width: 100%; height: 100%;">
<p>{!! old($column, $value) !!}</p>
</div>
<input type="hidden" name="{{$name}}" value="{{ old($column, $value) }}" />
</div>
</div>

View File

@@ -0,0 +1,8 @@
@extends('layouts.app')
@section('content')
<div class="nullData">
<img src="img/noOrder.png" class="nullOrder">
<div class="null_data_text">您访问的地址不正确</div>
</div>
@endsection

View File

@@ -0,0 +1,11 @@
@extends('layouts.app')
@section('content')
<section class="has-padding text-center">
<img src="{{ $shareimg }}" class="nullOrder">
<div class="lead">
请向用户展示<br>
您的二维码
</div>
</section>
@endsection

View File

@@ -0,0 +1,4 @@
<div class="noData">
<img class="noData-img" src="/img/car_sale_03.png">
<span>没有数据</span>
</div>

View File

@@ -0,0 +1,4 @@
<div class="empty">
<img src="/img/empty.png" >
<span>抱歉,暂无数据!</span>
</div>

View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>@yield('title', $app_title??config('app.name'))</title>
<link rel="stylesheet" href="{{ asset('css/mzui.min.css') }}">
<link rel="stylesheet" href="{{ asset('css/swiper.min.css') }}">
<link rel="stylesheet" href="{{ asset('css/style.css') }}?_{{time()}}">
@yield('css')
@yield('js')
</head>
<body>
@yield('footer')
@yield('pop')
@yield('content')
</body>
<script type="text/javascript" src="/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="/js/mzui.min.js" ></script>
<script type="text/javascript" src="/js/layer/layer.min.js" ></script>
<script type="text/javascript" src="/js/cjango.js?v={{uniqid()}}"></script>
@yield('script')
</html>

View File

@@ -0,0 +1,18 @@
<footer>
<a href="{{ route('index') }}" class="footer-item @if( ($nav??'1') ==1) tab-active @endif">
<img class="footer-icon" @if( ($nav??'1') ==1) src="/assets/index/img/icon/tabIcon_active_00.png" @else src="/assets/index/img/icon/tabIcon_00.png" @endif alt="footerIcon">
<p class="footer-text">会员商城</p>
</a>
<a href="{{ route('pick.index') }}" class="footer-item @if( ($nav??'1') ==2) tab-active @endif">
<img class="footer-icon" @if( ($nav??'1') ==2) src="/assets/index/img/icon/tabIcon_active_01.png" @else src="/assets/index/img/icon/tabIcon_01.png" @endif alt="footerIcon">
<p class="footer-text">提货商城</p>
</a>
<a href="{{ route('articles.index') }}" class="footer-item @if( ($nav??'1') ==3) tab-active @endif">
<img class="footer-icon" @if( ($nav??'1') ==3) src="/assets/index/img/icon/tabIcon_active_02.png" @else src="/assets/index/img/icon/tabIcon_02.png" @endif alt="footerIcon">
<p class="footer-text">教程资讯</p>
</a>
<a href="{{ route('user.index') }}" class="footer-item @if( ($nav??'1') ==4) tab-active @endif">
<img class="footer-icon" @if( ($nav??'1') ==4) src="/assets/index/img/icon/tabIcon_active_03.png" @else src="/assets/index/img/icon/tabIcon_03.png" @endif alt="footerIcon">
<p class="footer-text">个人中心</p>
</a>
</footer>

View File

@@ -0,0 +1,100 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'Nunito', sans-serif;
font-weight: 200;
height: 100vh;
margin: 0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
@auth
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ route('login') }}">Login</a>
@if (Route::has('register'))
<a href="{{ route('register') }}">Register</a>
@endif
@endauth
</div>
@endif
<div class="content">
<div class="title m-b-md">
Laravel
</div>
<div class="links">
<a href="https://laravel.com/docs">Docs</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://blog.laravel.com">Blog</a>
<a href="https://nova.laravel.com">Nova</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="https://vapor.laravel.com">Vapor</a>
<a href="https://github.com/laravel/laravel">GitHub</a>
</div>
</div>
</div>
</body>
</html>