You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
@extends("admin.layouts.layout")
|
|
|
|
@php
|
|
$pageTitle = "首页";
|
|
@endphp
|
|
|
|
@push("header")
|
|
<style>
|
|
.toll-free-box i {
|
|
transform: none !important;
|
|
left: 1rem;
|
|
bottom: .4rem;
|
|
}
|
|
.card1 {
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
|
}
|
|
.card1-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #e8eaec;
|
|
padding: 12px 14px;
|
|
line-height: 1;
|
|
}
|
|
.card1-title__arrow {
|
|
position: relative;
|
|
display: inline-block;
|
|
font-family: 'Material Design Icons';
|
|
text-rendering: auto;
|
|
line-height: 1.5rem;
|
|
font-size: 1.1rem;
|
|
-webkit-transform: translate(0, 0);
|
|
transform: translate(0, 0);
|
|
}
|
|
.card1-title__arrow ::before {
|
|
content: "\F142";
|
|
}
|
|
.card1-body {
|
|
padding: 14px;
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@section("content")
|
|
<div class="card1">
|
|
<div class="card1-title">
|
|
<div>数据统计</div>
|
|
<div>
|
|
<span>更多</span>
|
|
<span class="card1-title__arrow"></span>
|
|
</div>
|
|
</div>
|
|
<div class="card1-body">
|
|
<div>
|
|
<div>今日应收(元)</div>
|
|
<div>9040.00</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
<script>
|
|
function jump(url){
|
|
window.open(url)
|
|
}
|
|
|
|
</script>
|