prod
This commit is contained in:
@@ -43,17 +43,17 @@ export const productionStatistics = () => {
|
||||
{
|
||||
'qty': 5000,
|
||||
'name': '压机3',
|
||||
'weight': 3000
|
||||
'weight': 6000
|
||||
},
|
||||
{
|
||||
'qty': 1120,
|
||||
'qty': 9120,
|
||||
'name': '压机4',
|
||||
'weight': 12010
|
||||
'weight': 8010
|
||||
},
|
||||
{
|
||||
'qty': 2000,
|
||||
'qty': 9000,
|
||||
'name': '压机5',
|
||||
'weight': 18200
|
||||
'weight': 16200
|
||||
},
|
||||
{
|
||||
'qty': 5900,
|
||||
@@ -74,6 +74,36 @@ export const productionStatistics = () => {
|
||||
'qty': 5000,
|
||||
'name': '压机9',
|
||||
'weight': 12000
|
||||
},
|
||||
{
|
||||
'qty': 6220,
|
||||
'name': '压机10',
|
||||
'weight': 16010
|
||||
},
|
||||
{
|
||||
'qty': 3900,
|
||||
'name': '压机11',
|
||||
'weight': 10200
|
||||
},
|
||||
{
|
||||
'qty': 6300,
|
||||
'name': '压机12',
|
||||
'weight': 9200
|
||||
},
|
||||
{
|
||||
'qty': 3020,
|
||||
'name': '压机13',
|
||||
'weight': 17010
|
||||
},
|
||||
{
|
||||
'qty': 5500,
|
||||
'name': '压机14',
|
||||
'weight': 9500
|
||||
},
|
||||
{
|
||||
'qty': 7200,
|
||||
'name': '压机15',
|
||||
'weight': 18000
|
||||
}
|
||||
],
|
||||
'dailyProductionWeight': 64.25
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<!-- <span class="icon1"></span> -->
|
||||
<div>今日压制量:</div>
|
||||
<div class="num">
|
||||
<div class="bg" v-for="item in showNum1" :key="item" :class="{dot: item === '.'}">{{item}}</div>
|
||||
<div class="bg" v-for="(item, i) in showNum1" :key="i" :class="{dot: item === '.'}">{{item}}</div>
|
||||
</div>
|
||||
<div>吨</div>
|
||||
</div>
|
||||
@@ -24,7 +24,7 @@
|
||||
<div class="cbox">
|
||||
<div>今日干燥量:</div>
|
||||
<div class="num">
|
||||
<div class="bg" v-for="item in showNum2" :key="item" :class="{dot: item === '.'}">{{item}}</div>
|
||||
<div class="bg" v-for="(item, i) in showNum2" :key="i" :class="{dot: item === '.'}">{{item}}</div>
|
||||
</div>
|
||||
<div>吨</div>
|
||||
</div>
|
||||
@@ -32,7 +32,7 @@
|
||||
<div class="cbox">
|
||||
<div>今日成品量:</div>
|
||||
<div class="num">
|
||||
<div class="bg" v-for="item in showNum3" :key="item" :class="{dot: item === '.'}">{{item}}</div>
|
||||
<div class="bg" v-for="(item, i) in showNum3" :key="i" :class="{dot: item === '.'}">{{item}}</div>
|
||||
</div>
|
||||
<div>吨</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user