|
@@ -6,13 +6,13 @@
|
|
<div class="inner_right">
|
|
<div class="inner_right">
|
|
<div class="dibu"></div>
|
|
<div class="dibu"></div>
|
|
<span class="orderNum">{{ i + 1 }}</span>
|
|
<span class="orderNum">{{ i + 1 }}</span>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-2">
|
|
<span class="zhuyao"> {{ item.productCode }}</span>
|
|
<span class="zhuyao"> {{ item.productCode }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-3">
|
|
<span class="ciyao"> {{ item.productBrandName + item.productTypeName3 }}</span>
|
|
<span class="ciyao"> {{ item.productBrandName + item.productTypeName3 }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-4">
|
|
<span class="warning" v-if="curTab==1"> {{ item.resultQty||'--' }}</span>
|
|
<span class="warning" v-if="curTab==1"> {{ item.resultQty||'--' }}</span>
|
|
<span class="warning" v-if="curTab==2"> {{ item.resultAmount | montionFilter }}</span>
|
|
<span class="warning" v-if="curTab==2"> {{ item.resultAmount | montionFilter }}</span>
|
|
</div>
|
|
</div>
|
|
@@ -24,13 +24,13 @@
|
|
<div class="inner_right">
|
|
<div class="inner_right">
|
|
<div class="dibu"></div>
|
|
<div class="dibu"></div>
|
|
<span class="orderNum">{{ i + 1 }}</span>
|
|
<span class="orderNum">{{ i + 1 }}</span>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-2">
|
|
<span class="zhuyao"> {{ item.productCode }}</span>
|
|
<span class="zhuyao"> {{ item.productCode }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-3">
|
|
<span class="ciyao"> {{ item.productBrandName + item.productTypeName3 }}</span>
|
|
<span class="ciyao"> {{ item.productBrandName + item.productTypeName3 }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="info">
|
|
|
|
|
|
+ <div class="info col-4">
|
|
<span class="warning" v-if="curTab==1"> {{ item.resultQty||'--' }}</span>
|
|
<span class="warning" v-if="curTab==1"> {{ item.resultQty||'--' }}</span>
|
|
<span class="warning" v-if="curTab==2"> {{ item.resultAmount | montionFilter }}</span>
|
|
<span class="warning" v-if="curTab==2"> {{ item.resultAmount | montionFilter }}</span>
|
|
</div>
|
|
</div>
|
|
@@ -94,6 +94,7 @@ export default {
|
|
this.timer = setInterval(looper, this.$store.state.setting.echartsAutoTime)
|
|
this.timer = setInterval(looper, this.$store.state.setting.echartsAutoTime)
|
|
},
|
|
},
|
|
getData () {
|
|
getData () {
|
|
|
|
+ this.list = []
|
|
const date = new Date().getFullYear() + '-01-01'
|
|
const date = new Date().getFullYear() + '-01-01'
|
|
queryProductPurchase({ queryDate: date, queryType: this.queryType }).then(res => {
|
|
queryProductPurchase({ queryDate: date, queryType: this.queryType }).then(res => {
|
|
if (res.status == 200) {
|
|
if (res.status == 200) {
|
|
@@ -148,9 +149,16 @@ export default {
|
|
background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ .col-2{
|
|
|
|
+ width: 25%;
|
|
|
|
+ }
|
|
|
|
+ .col-3{
|
|
|
|
+ width: 40%;
|
|
|
|
+ }
|
|
|
|
+ .col-4{
|
|
|
|
+ width: 25%;
|
|
|
|
+ }
|
|
.info {
|
|
.info {
|
|
- width: 30%;
|
|
|
|
text-align: center;
|
|
text-align: center;
|
|
.zhuyao {
|
|
.zhuyao {
|
|
color: #a6e0ff;
|
|
color: #a6e0ff;
|