This commit is contained in:
2025-07-15 16:37:38 +08:00
parent 0051d4c59e
commit 37d1900440
4 changed files with 648 additions and 290 deletions

View File

@@ -5,7 +5,7 @@
<div class="acon" v-for="(e, i) in resDataArr" :key="i">
<div class="relative b_title">
<span class="absolute sj_icon"></span>
<p>{{ e.storsName }}</p>
<p>{{ e.title }}</p>
</div>
<div class="zd-row wraper_1 mgb8">
<div class="box zd-col-7 mgr8">
@@ -83,8 +83,8 @@
import THeader from '@components/header.vue'
import SecTwo from './secTwo.vue'
import SecThree from './secThree.vue'
// import { synthesizeInfo } from '@js/getData2.js'
import { synthesizeInfo } from '@js/mork02.js'
import { synthesizeInfo } from '@js/getData2.js'
// import { synthesizeInfo } from '@js/mork02.js'
export default {
components: {
THeader,
@@ -147,9 +147,9 @@ export default {
},
async _synthesizeInfo () {
let res = await synthesizeInfo(this.$store.getters.secCode)
this.resDataArr = res.data
this.pointUse = res.data[0].pointUse
this.toDayInAndOut = res.data[0].toDayInAndOut
this.resDataArr = res.content
this.pointUse = res.content[0].pointUse
this.toDayInAndOut = res.content[0].toDayInAndOut
this.inw = this.getPercentage(this.toDayInAndOut.in.vehicle_qty, this.toDayInAndOut.in.total_qty)
this.inqty1 = this.toDayInAndOut.in.total_qty
this.outw = this.getPercentage(this.toDayInAndOut.out.vehicle_qty, this.toDayInAndOut.out.total_qty)