This commit is contained in:
‘937886381’
2026-01-06 13:48:11 +08:00
parent 20ef2b9763
commit 5605eeab06
287 changed files with 1890 additions and 1381 deletions

View File

@@ -6,7 +6,7 @@
<!-- 销量图表传递销量数据 + 完成率flag -->
<div class="dashboard left" @click="handleDashboardClick('/salesVolumeAnalysis/salesVolumeAnalysisBase')">
<div class="title">
销量·单位/万元
销量·
</div>
<div class="chart-wrap">
<operatingSingleBar :detailData="{
@@ -16,9 +16,9 @@
</div>
</div>
<!-- 成本图表传递全成本数据 + 完成率flag -->
<div class="dashboard right" @click="handleDashboardClick('/salesVolumeAnalysis/salesVolumeAnalysisBase')">
<div class="dashboard right" @click="handleDashboardClick('/fullCostAnalysis/fullCostAnalysisBase')">
<div class="title">
成本·单位/万元
成本·
</div>
<div class="chart-wrap">
<operatingSingleBar :detailData="{
@@ -29,9 +29,9 @@
</div>
<!-- 运费图表传递单价数据 + 完成率flag -->
<div class="dashboard right" >
<div class="dashboard right">
<div class="title">
运费·单位/万元
运费·
</div>
<div class="chart-wrap">
<operatingSingleBar :detailData="{
@@ -61,6 +61,10 @@ export default {
销量: { completeRate: 0, diff: 0, real: 0, target: 0, thb: 0 }
})
},
dateData: {
type: Object,
default: () => ({ })
},
factory: {
type: [String, Number],
default: ''
@@ -101,7 +105,8 @@ export default {
this.$router.push({
path: path,
query: {
factory: this.$route.query.factory ? this.$route.query.factory : this.factory
factory: this.$route.query.factory ? this.$route.query.factory : this.factory,
dateData: this.dateData
}
})
},