2024-07-22 09:49:09 +08:00
|
|
|
|
<!-- 收银台订单-->
|
|
|
|
|
<template>
|
2024-07-31 15:21:49 +08:00
|
|
|
|
<div style="padding-top: 20px; padding-right: 40px; background: #f6f8f9;">
|
|
|
|
|
<el-card class="box-card" style="margin-top: 0px;" shadow="never">
|
2024-07-26 14:17:58 +08:00
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="120px" >
|
2024-07-27 17:47:37 +08:00
|
|
|
|
<div class="d-s" style="margin-bottom: 15px;justify-content: space-between">
|
|
|
|
|
<div class="d-s">
|
|
|
|
|
<div class="anniu-h" :class="{ 'anniu-act': index == timeIndex }" v-for="(item,index) in timeList"
|
|
|
|
|
:key="index" @click="editColor(index)">
|
|
|
|
|
{{ item }}
|
|
|
|
|
</div>
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="value2"
|
|
|
|
|
type="datetimerange"
|
|
|
|
|
style="height: 32px"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
:disabled="disabled"
|
|
|
|
|
@click="handleQuery">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
<div style="margin-left: 15px;margin-top: 17px">
|
|
|
|
|
<el-form-item label="" prop="deptId" style="width: 180px">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.deptId"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="所属机构"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in deptList" :key="item.id" :label="item.deptName" :value="item.deptId">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</div>
|
2024-07-27 17:47:37 +08:00
|
|
|
|
|
|
|
|
|
<el-form-item class="" style="float: right;margin-top: 17px;">
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
</el-form-item>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</div>
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</el-form>
|
2024-07-24 11:47:05 +08:00
|
|
|
|
<div class="wrap-boxs">
|
2024-07-22 09:49:09 +08:00
|
|
|
|
<div class="k_" id="k_1">
|
2024-07-29 17:24:21 +08:00
|
|
|
|
<div class="size_">交易金额汇总数(万元)/交易笔数</div>
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<div class="title_">{{ orderStatistics.payMoney?orderStatistics.payMoney/10000:0 }}/{{ orderStatistics.count }}</div>
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</div>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
<div class="k_" id="k_2" v-for="item in orderStatistics.fenxiByDaili2ByData">
|
|
|
|
|
<div class="size_">{{ item.paymentChannel }}交易金额(万元)</div>
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<div class="title_">{{ item.payMoneyChannel?item.payMoneyChannel/10000:0 }}</div>
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</el-card>
|
2024-07-31 15:21:49 +08:00
|
|
|
|
<el-card class="box-card" style="min-height: 500px;" shadow="never">
|
2024-07-22 09:49:09 +08:00
|
|
|
|
<div class="table-box">
|
|
|
|
|
<el-table
|
|
|
|
|
:data="orderList"
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column type="index" width="50" align="center" label="序号"/>
|
|
|
|
|
<el-table-column align="center" prop="storeName" label="机构名称"></el-table-column>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
<el-table-column align="center" prop="parentName" label="所属机构"></el-table-column>
|
2024-07-23 21:13:58 +08:00
|
|
|
|
<el-table-column align="center" prop="payMoney" label="累计交易金额"></el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="count" label="累计交易笔数"></el-table-column>
|
2024-07-22 09:49:09 +08:00
|
|
|
|
<el-table-column align="center" label="支付通道交易信息:金额(万元),笔数(万笔),占比(%)">
|
2024-07-23 21:13:58 +08:00
|
|
|
|
<template>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
<el-table-column align="center" prop="fuYouAmount" label="富友交易金额">
|
|
|
|
|
<template slot-scope="scope">
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<span>{{scope.row.fuYouAmount/100000 || 0}}</span>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<el-table-column align="center" prop="fuYouCount" label="富友交易笔数">
|
2024-07-25 09:29:45 +08:00
|
|
|
|
<template slot-scope="scope">
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<span>{{scope.row.fuYouCount/1000 || 0}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="fuYouAmount" label="富友交易占比">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{(scope.row.fuYouAmount/(scope.row.payMoney)).toFixed(2) || 0}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="laKaLaAmount" label="拉卡拉交易金额">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{scope.row.laKaLaAmount/100000 || 0}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="laKaLaCount" label="拉卡拉交易笔数">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{scope.row.laKaLaCount/1000 || 0}}</span>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column align="center" prop="count92" label="拉卡拉交易占比">
|
|
|
|
|
<template slot-scope="scope">
|
2024-07-29 15:46:30 +08:00
|
|
|
|
<span>{{(scope.row.laKaLaAmount/(scope.row.payMoney)).toFixed(2) || 0}}</span>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-07-23 21:13:58 +08:00
|
|
|
|
</template>
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</el-table-column>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
<el-table-column align="center" prop="date" label="统计日期">
|
2024-07-22 09:49:09 +08:00
|
|
|
|
<template>
|
2024-07-29 15:46:30 +08:00
|
|
|
|
{{this.value2[0]}} 至 {{this.value2[1]}}
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</div>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.page"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {
|
2024-07-23 21:13:58 +08:00
|
|
|
|
exportExcelTradingApi, getFenxiByDailiApi, getFenxiByDailiByDataApi,
|
2024-07-22 09:49:09 +08:00
|
|
|
|
getRunningWaterByTissueApi,
|
|
|
|
|
getTissueByDataApi,
|
|
|
|
|
getTradingPageApi
|
|
|
|
|
} from "@/api/allOrder";
|
|
|
|
|
import {getFenXiOilOrderDataApi, getFenXiOilOrderListApi} from "@/api/financialStatement/yunyingfenxi";
|
2024-07-25 09:29:45 +08:00
|
|
|
|
import {parseTime} from "@/utils/fuint";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "dai_yunyingfenxi-paym",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
radio1: "油号选错",
|
|
|
|
|
loading: false,
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
// 员工列表
|
|
|
|
|
staffList: [],
|
|
|
|
|
ordersInfo: {},
|
|
|
|
|
// 日期范围
|
|
|
|
|
dateRange: [],
|
|
|
|
|
beginTime: "",
|
|
|
|
|
endTime: "",
|
|
|
|
|
// 是否为当天时间
|
|
|
|
|
isSysDate: false,
|
|
|
|
|
// 收银台订单列表
|
|
|
|
|
orderList: [],
|
|
|
|
|
deptList: [],
|
|
|
|
|
|
2024-07-22 09:49:09 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
timeList: [
|
|
|
|
|
"今日",
|
|
|
|
|
"近一周",
|
|
|
|
|
"近一月",
|
|
|
|
|
"近一年",
|
2024-07-27 17:47:37 +08:00
|
|
|
|
"自定义",
|
2024-07-25 09:29:45 +08:00
|
|
|
|
],
|
|
|
|
|
timeIndex: 0,
|
2024-07-27 17:47:37 +08:00
|
|
|
|
disabled:true,
|
2024-07-25 09:29:45 +08:00
|
|
|
|
value2: [],
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
page: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
beginTime: "",
|
|
|
|
|
endTime: "",
|
|
|
|
|
orderNo: "",
|
|
|
|
|
status: "",
|
|
|
|
|
payType: "",
|
|
|
|
|
payChannel: "",
|
|
|
|
|
deptType: "3",
|
|
|
|
|
storeId: "",
|
|
|
|
|
deptId: "",
|
|
|
|
|
},
|
|
|
|
|
orderStatistics: {
|
|
|
|
|
count: '0',
|
2024-07-22 09:49:09 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
payMoney: '0',
|
2024-07-29 15:46:30 +08:00
|
|
|
|
fenxiByDaili2ByData: [
|
|
|
|
|
{
|
|
|
|
|
paymentChannel:'富友',
|
|
|
|
|
payMoneyChannel:'0'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
paymentChannel:'拉卡拉',
|
|
|
|
|
payMoneyChannel:'0'
|
|
|
|
|
},
|
|
|
|
|
]
|
2024-07-25 09:29:45 +08:00
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
let start = new Date();
|
|
|
|
|
start.setHours(0)
|
|
|
|
|
start.setMinutes(0)
|
|
|
|
|
start.setSeconds(0)
|
|
|
|
|
start.setMilliseconds(0)
|
|
|
|
|
this.dateRange = [start, new Date()];
|
|
|
|
|
this.beginTime = start
|
|
|
|
|
this.endTime = new Date()
|
|
|
|
|
this.isSysDate = true
|
|
|
|
|
let start1 = new Date();
|
|
|
|
|
start1.setHours(0)
|
|
|
|
|
start1.setMinutes(0)
|
|
|
|
|
start1.setSeconds(0)
|
|
|
|
|
start1.setMilliseconds(0)
|
|
|
|
|
this.value2 = [parseTime(start1), parseTime(new Date())];
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getDeptList();
|
2024-07-23 21:13:58 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
editColor(index) {
|
|
|
|
|
this.timeIndex = index
|
2024-07-27 17:47:37 +08:00
|
|
|
|
this.disabled = true
|
2024-07-25 09:29:45 +08:00
|
|
|
|
if (this.timeList[index] == '今日') {
|
|
|
|
|
let start = new Date();
|
|
|
|
|
start.setHours(0)
|
|
|
|
|
start.setMinutes(0)
|
|
|
|
|
start.setSeconds(0)
|
|
|
|
|
start.setMilliseconds(0)
|
|
|
|
|
this.value2 = [start, new Date()];
|
|
|
|
|
} else if (this.timeList[index] == '近一周') {
|
|
|
|
|
let nowDate = new Date();
|
|
|
|
|
let oneWeekAgo = new Date(nowDate.getTime() - 6 * 24 * 60 * 60 * 1000)
|
|
|
|
|
this.value2 = [parseTime(oneWeekAgo), parseTime(nowDate)]
|
|
|
|
|
} else if (this.timeList[index] == '近一月') {
|
|
|
|
|
let nowDate = new Date();
|
|
|
|
|
let oneWeekAgo = new Date(nowDate.getTime() - 30 * 24 * 60 * 60 * 1000)
|
|
|
|
|
this.value2 = [parseTime(oneWeekAgo), parseTime(nowDate)]
|
|
|
|
|
} else if (this.timeList[index] == '近一年') {
|
|
|
|
|
let nowDate = new Date();
|
|
|
|
|
let oneWeekAgo = new Date(nowDate.getFullYear() - 1, nowDate.getMonth(), nowDate.getDate())
|
|
|
|
|
this.value2 = [parseTime(oneWeekAgo), parseTime(nowDate)]
|
2024-07-27 17:47:37 +08:00
|
|
|
|
}else if (this.timeList[index]=='自定义'){
|
|
|
|
|
this.disabled = false
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
this.handleQuery()
|
2024-07-22 09:49:09 +08:00
|
|
|
|
},
|
2024-07-25 09:29:45 +08:00
|
|
|
|
getDeptList() {
|
|
|
|
|
getRunningWaterByTissueApi(this.addDateRange(this.queryParams)).then(response => {
|
|
|
|
|
this.deptList = response.data.records;
|
|
|
|
|
})
|
2024-07-22 09:49:09 +08:00
|
|
|
|
},
|
2024-07-25 09:29:45 +08:00
|
|
|
|
exportExcelCashier() {
|
|
|
|
|
let dateRange = []
|
|
|
|
|
if (this.beginTime && this.endTime) {
|
|
|
|
|
dateRange.push(this.beginTime.toLocaleDateString())
|
|
|
|
|
dateRange.push(this.endTime.toLocaleDateString())
|
|
|
|
|
}
|
|
|
|
|
exportExcelTradingApi(this.addDateRange(this.queryParams, dateRange)).then(res => {
|
|
|
|
|
const blob = new Blob([res], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
|
|
|
|
|
this.$download.saveAs(blob, '交易明细统计.xLsx')
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取订单统计信息
|
2024-07-22 09:49:09 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
getOrderStatistics() {
|
|
|
|
|
let dateRange = []
|
|
|
|
|
if (this.beginTime && this.endTime) {
|
|
|
|
|
dateRange.push(this.beginTime.toLocaleDateString())
|
|
|
|
|
dateRange.push(this.endTime.toLocaleDateString())
|
|
|
|
|
}
|
|
|
|
|
getFenxiByDailiByDataApi(this.addDateRange(this.queryParams, this.value2)).then(res => {
|
|
|
|
|
this.orderStatistics = res.data
|
2024-07-29 15:46:30 +08:00
|
|
|
|
if(this.orderStatistics.
|
|
|
|
|
fenxiByDaili2ByData.length==0) {
|
|
|
|
|
this.orderStatistics.fenxiByDaili2ByData = [{
|
|
|
|
|
paymentChannel:'交易',
|
|
|
|
|
payMoneyChannel:'0'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
paymentChannel:'富友',
|
|
|
|
|
payMoneyChannel:'0'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
paymentChannel:'拉卡拉',
|
|
|
|
|
payMoneyChannel:'0'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
console.log("res.data1111", res.data)
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-07-22 09:49:09 +08:00
|
|
|
|
|
2024-07-23 21:13:58 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
// 获取列表信息
|
|
|
|
|
getList(val) {
|
|
|
|
|
let dateRange = []
|
|
|
|
|
if (this.beginTime && this.endTime) {
|
|
|
|
|
dateRange.push(this.beginTime.toLocaleDateString())
|
|
|
|
|
dateRange.push(this.endTime.toLocaleDateString())
|
|
|
|
|
}
|
|
|
|
|
getFenxiByDailiApi(this.addDateRange(this.queryParams, this.value2)).then(response => {
|
|
|
|
|
this.orderList = response.data.records;
|
|
|
|
|
this.total = response.data.total;
|
|
|
|
|
this.isSysDate = false
|
|
|
|
|
})
|
|
|
|
|
this.getOrderStatistics()
|
|
|
|
|
},
|
|
|
|
|
getOrdersInfo(data) {
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
this.ordersInfo = data
|
|
|
|
|
},
|
|
|
|
|
// 搜索按钮操作
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
// 重置按钮操作
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.dateRange = [];
|
|
|
|
|
this.queryParams = {
|
|
|
|
|
page: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
}
|
|
|
|
|
this.beginTime = ""
|
|
|
|
|
this.endTime = ""
|
|
|
|
|
let start1 = new Date();
|
|
|
|
|
start1.setHours(0)
|
|
|
|
|
start1.setMinutes(0)
|
|
|
|
|
start1.setSeconds(0)
|
|
|
|
|
start1.setMilliseconds(0)
|
|
|
|
|
this.value2 = [parseTime(start1), parseTime(new Date())];
|
|
|
|
|
this.timeIndex = 0
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
}
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2024-07-25 09:29:45 +08:00
|
|
|
|
.box-card {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0px 20px 20px 20px;
|
2024-07-31 15:21:49 +08:00
|
|
|
|
border: none;
|
|
|
|
|
box-shadow: none;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form--inline .el-form-item {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
.table-box {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
width: 100%;
|
2024-07-31 17:29:10 +08:00
|
|
|
|
height: 45vh;
|
|
|
|
|
overflow: auto;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
.wrap-boxs {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
.k_ {
|
2024-07-29 17:24:21 +08:00
|
|
|
|
width: 240px;
|
|
|
|
|
height: 75px;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
margin-right: 20px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding: 15px 10px;
|
2024-07-24 11:47:05 +08:00
|
|
|
|
padding-top: 5px;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
2024-07-24 11:47:05 +08:00
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
.size_ {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
2024-07-24 11:47:05 +08:00
|
|
|
|
margin-bottom: 20px;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
.title_ {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_1 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k1.png");
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
2024-07-29 17:24:21 +08:00
|
|
|
|
background-size:100% 100%;
|
|
|
|
|
box-sizing: border-box;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_2 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k2.png");
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
2024-07-29 17:24:21 +08:00
|
|
|
|
background-size:100% 100%;
|
|
|
|
|
box-sizing: border-box;
|
2024-07-22 09:49:09 +08:00
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_3 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k3.png");
|
|
|
|
|
background-size: cover; /* 背景图片铺满盒子 */
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_4 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k4.png");
|
|
|
|
|
background-size: cover; /* 背景图片铺满盒子 */
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_5 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k5.png");
|
|
|
|
|
background-size: cover; /* 背景图片铺满盒子 */
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_6 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k6.png");
|
|
|
|
|
background-size: cover; /* 背景图片铺满盒子 */
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
|
|
|
|
}
|
2024-07-25 09:29:45 +08:00
|
|
|
|
|
|
|
|
|
#k_7 {
|
2024-07-22 09:49:09 +08:00
|
|
|
|
background: url("../imgs/k7.png");
|
|
|
|
|
background-size: cover; /* 背景图片铺满盒子 */
|
|
|
|
|
background-repeat: no-repeat; /* 禁止背景图片重复 */
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 09:29:45 +08:00
|
|
|
|
.d-s {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.anniu-h {
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
background: #FAFAFA;
|
|
|
|
|
border-radius: 4px 4px 4px 4px;
|
|
|
|
|
border: 1px solid #DDDDDD;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: #777777;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.anniu-act {
|
|
|
|
|
background: #FF9655 !important;
|
|
|
|
|
border: 1px solid #FF9655 !important;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-22 09:49:09 +08:00
|
|
|
|
</style>
|