change
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<div class="box body_container">
|
||||
<div class="relative b_title">
|
||||
<span class="absolute sj_icon"></span>
|
||||
<p>料箱库监控</p>
|
||||
<p>仓储使用情况</p>
|
||||
</div>
|
||||
<div class="zd-row wraper_1 mgb8">
|
||||
<div class="box zd-col-7 mgr8">
|
||||
@@ -16,7 +16,7 @@
|
||||
<p class="title">货位使用</p>
|
||||
<div class="zd-row wraper_4">
|
||||
<div class="box percent_item">
|
||||
<p>{{ pointUse.use_percentage }}</p>
|
||||
<p>{{ pointUse.use_percentage }}%</p>
|
||||
</div>
|
||||
<div class="box zd-col-16 zd-row flexcol jccenter">
|
||||
<div class="zd-row mgb8">
|
||||
@@ -48,8 +48,7 @@
|
||||
<div class="percent_i" :style="{'width': inw}"></div>
|
||||
</div>
|
||||
<div class="zd-row">
|
||||
<p class="item_label font_2">总数量:<span class="c_y">{{ inqty1 }}</span></p>
|
||||
<p class="item_label font_2">箱数:<span class="c_y">{{ inqty2 }}</span>箱</p>
|
||||
<p class="item_label font_2">总数量 : <span class="c_y">{{ inqty1 }}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -60,8 +59,7 @@
|
||||
<div class="percent_i percent_i_c" :style="{'width': outw}"></div>
|
||||
</div>
|
||||
<div class="zd-row">
|
||||
<p class="item_label font_2">总数量:<span class="c_y">{{ outqty1 }}</span></p>
|
||||
<p class="item_label font_2">箱数:<span class="c_y">{{ outqty2 }}</span>箱</p>
|
||||
<p class="item_label font_2">总数量 : <span class="c_y">{{ outqty1 }}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -109,7 +107,7 @@
|
||||
</div>
|
||||
<div class="relative b_title">
|
||||
<span class="absolute sj_icon"></span>
|
||||
<p>托盘库监控</p>
|
||||
<p>任务单据监控</p>
|
||||
</div>
|
||||
<div class="zd-row wraper_1">
|
||||
<div class="relative wraper_1 wraper_3 wraper_5 mgr8">
|
||||
@@ -213,10 +211,8 @@ export default {
|
||||
toDayInAndOut: {}, // 料箱今日出入库
|
||||
inw: '0',
|
||||
inqty1: '0',
|
||||
inqty2: '0',
|
||||
outw: '0',
|
||||
outqty1: '0',
|
||||
outqty2: '0'
|
||||
outqty1: '0'
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -275,19 +271,17 @@ export default {
|
||||
},
|
||||
async _synthesizeInfo () {
|
||||
let res = await synthesizeInfo()
|
||||
this.pointUse = res.pointUse
|
||||
this.toDayInAndOut = res.toDayInAndOut
|
||||
this.pointUse = res.data.pointUse
|
||||
this.toDayInAndOut = res.data.toDayInAndOut
|
||||
this.inw = this.getPercentage(this.toDayInAndOut.in.vehicle_qty, this.toDayInAndOut.in.total_qty)
|
||||
this.inqty1 = this.toDayInAndOut.in.total_qty
|
||||
this.inqty2 = this.toDayInAndOut.in.vehicle_qty
|
||||
this.outw = this.getPercentage(this.toDayInAndOut.out.vehicle_qty, this.toDayInAndOut.out.total_qty)
|
||||
this.outqty1 = this.toDayInAndOut.out.total_qty
|
||||
this.outqty2 = this.toDayInAndOut.out.vehicle_qty
|
||||
this.lx_in_week = [...res.inAndOutTrend.in]
|
||||
this.lx_out_week = [...res.inAndOutTrend.out]
|
||||
this.lx_inventory = res.ivtAnalyse
|
||||
this.taskList = [...res.realTask]
|
||||
this.billList = [...res.unIos]
|
||||
this.lx_in_week = [...res.data.inAndOutTrend.in]
|
||||
this.lx_out_week = [...res.data.inAndOutTrend.out]
|
||||
this.lx_inventory = res.data.ivtAnalyse
|
||||
this.taskList = [...res.data.realTask]
|
||||
this.billList = [...res.data.unIos]
|
||||
this.setEchart1()
|
||||
this.setEchart2()
|
||||
// this.setEchart3()
|
||||
@@ -593,7 +587,7 @@ export default {
|
||||
width 76px
|
||||
background center / 100% auto url('../../images/pie-bg_2_s.png') no-repeat
|
||||
p
|
||||
font-size 12px
|
||||
font-size 15px
|
||||
line-height 76px
|
||||
color #fff
|
||||
text-align center
|
||||
|
||||
Reference in New Issue
Block a user