210 lines
5.8 KiB
Vue
210 lines
5.8 KiB
Vue
<template>
|
||
<div style="flex: 1">
|
||
<Container :name="title" icon="cockpitItemIcon" size="operatingRevenueBg" topSize="middle">
|
||
<div class="kpi-content" style="padding: 14px 16px; display: flex; width: 100%;">
|
||
<div class="topItem-container" style="display: flex; gap: 8px; width: 100%;">
|
||
<!-- 累计指标1 -->
|
||
<div class="dashboard left" @click="handleDashboardClick('/operatingRevenue/operatingRevenueBase')">
|
||
<div style='position: relative;'>
|
||
<div class="title">
|
||
营业收入·万元
|
||
</div>
|
||
</div>
|
||
<div style='font-size: 16px;text-align: right;padding-right: 5px;'>
|
||
<span>完成率:<span style='color: #0B58FF;'>{{ytdIncomeData.rate}}%</span></span>
|
||
<span style='display: inline-block;margin-left: 10px;'>差值:<span :style="{color:ytdIncomeData.flag>0?'#30B590':'#FF9423'}" >{{ytdIncomeData.diff}}</span></span>
|
||
</div>
|
||
<div class="chart-wrap">
|
||
<operatingSingleBar :detailData="ytdIncomeData"></operatingSingleBar>
|
||
</div>
|
||
</div>
|
||
<!-- 累计指标2 -->
|
||
<div class="dashboard right" @click="handleDashboardClick('/fullCostAnalysis/fullCostAnalysisBase')">
|
||
<div style='position: relative;'>
|
||
<div class="title">
|
||
全成本·元/㎡
|
||
</div>
|
||
</div>
|
||
<div style='font-size: 16px;text-align: right;padding-right: 5px;'>
|
||
<span>完成率:<span style='color: #0B58FF;'>{{ytdCostData.rate}}%</span></span>
|
||
<span style='display: inline-block;margin-left: 10px;'>差值:<span :style="{color:ytdCostData.flag>0?'#30B590':'#FF9423'}" >{{ytdCostData.diff}}</span></span>
|
||
</div>
|
||
<div class="chart-wrap">
|
||
<operatingSingleBar :detailData="ytdCostData"></operatingSingleBar>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</Container>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Container from './container.vue'
|
||
import operatingSingleBar from './operatingSingleBar.vue'
|
||
|
||
export default {
|
||
name: 'yearRelatedMetrics',
|
||
components: { Container, operatingSingleBar },
|
||
props: {
|
||
monthAnalysis: {
|
||
type: Array,
|
||
// 正确写法:默认值通过 factory 函数返回(才能调用 default())
|
||
default: () => [
|
||
{ title: "营业收入", budget: 0, real: 0, rate: 0, diff: 0 },
|
||
{ title: "累计全成本", budget: 0, real: 0, rate: 0, diff: 0 }
|
||
]
|
||
},
|
||
dateData: { // 接收父组件传递的设备数据数组
|
||
type: Object,
|
||
default: () => { } // 默认空数组,避免报错
|
||
},
|
||
factory: {
|
||
type: [String, Number],
|
||
default: ''
|
||
},
|
||
title: {
|
||
type: String,
|
||
default: ''
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
ytdIncomeData: { title: "营业收入", budget: 0, real: 0, rate: 0, diff: 0, flag: 0 },
|
||
ytdCostData: { title: "累计全成本", budget: 0, real: 0, rate: 0, diff: 0, flag: 0 }
|
||
}
|
||
},
|
||
watch: {
|
||
monthAnalysis: {
|
||
handler(newVal) {
|
||
this.updateChart(newVal)
|
||
},
|
||
deep: true,
|
||
immediate: true
|
||
}
|
||
},
|
||
mounted() {
|
||
this.updateChart(this.monthAnalysis)
|
||
},
|
||
methods: {
|
||
handleDashboardClick(path) {
|
||
this.$router.push({
|
||
path: path,
|
||
query: {
|
||
factory: this.$route.query.factory ? this.$route.query.factory : this.factory,
|
||
dateData:this.dateData
|
||
}
|
||
})
|
||
},
|
||
|
||
updateChart(data) {
|
||
// 修复核心:正确获取默认值(调用 factory 函数)
|
||
// 错误写法:this.$props.ytdAnalysis.default()
|
||
// 正确写法:this.ytdAnalysis 默认值已通过 factory 函数定义,直接兜底
|
||
const validData = Array.isArray(data) && data.length >= 2
|
||
? data
|
||
: this.$props.monthAnalysis; // 直接取 props 默认值
|
||
|
||
// 提取累计收入(第0项)、累计全成本(第1项)数据
|
||
const incomeItem = validData[0] || { title: "营业收入", budget: 0, real: 0, rate: 0, diff: 0 };
|
||
const costItem = validData[1] || { title: "全成本", budget: 0, real: 0, rate: 0, diff: 0 };
|
||
|
||
// 整合flag字段
|
||
this.ytdIncomeData = {
|
||
...incomeItem,
|
||
flag: incomeItem.rate > 100 ? 1 : 0
|
||
};
|
||
|
||
this.ytdCostData = {
|
||
...costItem,
|
||
flag: costItem.rate > 100 ? 1 : 0
|
||
};
|
||
|
||
console.log('累计收入数据:', this.ytdIncomeData);
|
||
console.log('累计全成本数据:', this.ytdCostData);
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang='scss' scoped>
|
||
// 样式与之前一致,无需修改
|
||
.scroll-container {
|
||
max-height: 210px;
|
||
overflow-y: auto;
|
||
overflow-x: hidden;
|
||
padding: 10px 0;
|
||
|
||
&::-webkit-scrollbar {
|
||
display: none;
|
||
}
|
||
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
|
||
.topItem-container {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.dashboard {
|
||
flex: 1;
|
||
min-width: 300px;
|
||
height: 205px;
|
||
background: #F9FCFF;
|
||
padding: 16px 0 0 10px;
|
||
margin: 0 4px;
|
||
|
||
.title {
|
||
height: 18px;
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 18px;
|
||
color: #000000;
|
||
line-height: 18px;
|
||
letter-spacing: 2px;
|
||
text-align: left;
|
||
}
|
||
|
||
.chart-wrap {
|
||
width: 100%;
|
||
height: calc(100% - 42px);
|
||
}
|
||
|
||
.number {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 30px;
|
||
height: 32px;
|
||
font-family: YouSheBiaoTiHei;
|
||
font-size: 32px;
|
||
color: #0B58FF;
|
||
line-height: 32px;
|
||
letter-spacing: 2px;
|
||
text-align: left;
|
||
}
|
||
|
||
.mom {
|
||
width: 97px;
|
||
height: 18px;
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 18px;
|
||
color: #000000;
|
||
line-height: 18px;
|
||
letter-spacing: 1px;
|
||
text-align: left;
|
||
z-index: 1000;
|
||
}
|
||
}
|
||
|
||
.dashboard.left {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.dashboard.right {
|
||
margin-right: 0;
|
||
}
|
||
</style>
|