Files
new-cashier/jeepay-ui-merchant/src/views/paydf/aqf/settleStatistics.vue
2024-05-23 14:39:33 +08:00

150 lines
2.2 KiB
Vue

<template>
<page-header-wrapper>
<SybSettleListStatics configMode="mch" title="结算数据" />
</page-header-wrapper>
</template>
<script setup lang="ts">
import {req} from '@/api/manage'
import { ref, onMounted, reactive, getCurrentInstance, nextTick } from 'vue'
import { useRouter, useRoute } from 'vue-router'
import { dataTool } from 'echarts'
const router = useRouter() //这是全部路由
const { $infoBox, $access } = getCurrentInstance()!.appContext.config.globalProperties
</script>
<style scoped>
.div-top {
background: #ffffff;
padding: 20px 20px;
border-radius: 10px;
}
.div-top-title {
font-size: 17px;
font-weight: 600;
position: relative;
margin-bottom: 10px;
}
.div-top-des {
color: #2C6EF6;
margin-top: 15px;
margin-bottom: 30px;
}
.div-top-line {
border-bottom: 1px solid #EDEDED;
}
.div-top-status {
display: flex;
margin: 18px 0;
font-size: 13px;
}
.div-top-status-title {
padding-right: 10px;
color: #767676;
}
.div-top-status-title-span {
padding: 0 10px;
font-weight: 600;
}
.div-top-active {
color: #2C6EF6;
}
/*列表 */
.product {
background: #ffffff;
padding: 0 20px;
border-radius: 10px;
margin-top: 20px;
;
}
.product-title {
font-size: 17px;
font-weight: 600;
position: relative;
margin-bottom: 10px;
}
.product-list {
width: 100%;
margin: 10px 0;
display: flex;
flex-wrap: wrap;
}
.product-list-li {
background: #F9FAFA;
width: 30%;
padding: 20px;
border-radius: 10px;
margin: 10px;
}
.product-list-li-span1 {
font-size: 16px;
font-weight: 600;
padding-right: 10px;
}
.product-list-li-span2 {
font-size: 13px;
color: #2C6EF6;
padding-left: 15px;
}
.product-list-li-desc {
margin-top: 20px;
}
.product-list-li-span3 {
font-size: 13px;
color: #767676;
overflow: hidden;
text-overflow: ellipsis;
/* 在超出时显示省略号 */
display: -webkit-box;
-webkit-line-clamp: 2;
/* 限制显示的行数为2行 */
-webkit-box-orient: vertical;
}
.color-e3 {
color: #767676;
}
.color-yellow {
color: rgb(250, 118, 0);
}
.color-red {
color: #FF0000;
}
.color-blue {
color: #2C6EF6;
}
.color-cancel {
color: #767676;
}
.table-card-bottom {
margin-top: 10px !important;
}
.table-card-hide {
display: none;
}</style>