|
@ -81,7 +81,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
<div class="right"> |
|
|
<div class="right"> |
|
|
<div class="top">产业链融合</div> |
|
|
<div class="top">产业链融合</div> |
|
|
<div class="center blue"><span class="num">5.2</span> 亿元</div> |
|
|
<div class="center blue">超 <span class="num">6</span> 亿元</div> |
|
|
<div class="bot">种子年销售额</div> |
|
|
<div class="bot">种子年销售额</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
@ -132,20 +132,20 @@ |
|
|
<div style="display: flex"> |
|
|
<div style="display: flex"> |
|
|
<div style="width: 38px"> |
|
|
<div style="width: 38px"> |
|
|
{{ |
|
|
{{ |
|
|
item.jzrPrice != "暂无" |
|
|
item.jzrPrice.toFixed(2) != "0.00" |
|
|
? item.jzrPrice.toFixed(2) |
|
|
? item.jzrPrice.toFixed(2) |
|
|
: "暂无" |
|
|
: "-" |
|
|
}} |
|
|
}} |
|
|
</div> |
|
|
</div> |
|
|
<img |
|
|
<img |
|
|
v-if="item.jzrPrice >= 0 && item.jzrPrice != '暂无'" |
|
|
v-if="item.jzrPrice > 0 && item.jzrPrice != '-'" |
|
|
width="16px" |
|
|
width="16px" |
|
|
height="16px" |
|
|
height="16px" |
|
|
src="@/assets/images/icon/upRed.png" |
|
|
src="@/assets/images/icon/upRed.png" |
|
|
alt="" |
|
|
alt="" |
|
|
/> |
|
|
/> |
|
|
<img |
|
|
<img |
|
|
v-else-if="item.jzrPrice != '暂无'" |
|
|
v-else-if="item.jzrPrice < 0 && item.jzrPrice != '-'" |
|
|
width="16px" |
|
|
width="16px" |
|
|
height="16px" |
|
|
height="16px" |
|
|
src="@/assets/images/icon/downLv.png" |
|
|
src="@/assets/images/icon/downLv.png" |
|
@ -284,7 +284,7 @@ export default { |
|
|
const data = [] |
|
|
const data = [] |
|
|
arr.forEach((item, index) => { |
|
|
arr.forEach((item, index) => { |
|
|
if ((index + 1) % 2 === 0) { |
|
|
if ((index + 1) % 2 === 0) { |
|
|
const num = (arr[index - 1].AvgPrice + item.AvgPrice) / 2 |
|
|
const num = item.AvgPrice |
|
|
data.push({ ...item, price: num }) |
|
|
data.push({ ...item, price: num }) |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
@ -294,7 +294,7 @@ export default { |
|
|
prcCollectionListForGov({ ...this.params, ...data }).then((res) => { |
|
|
prcCollectionListForGov({ ...this.params, ...data }).then((res) => { |
|
|
if (res.priceslist.length > 0) { |
|
|
if (res.priceslist.length > 0) { |
|
|
this.dayList = res.priceslist.filter(item => item.CategoryName == '蔬菜') |
|
|
this.dayList = res.priceslist.filter(item => item.CategoryName == '蔬菜') |
|
|
// console.log(this.dayList) |
|
|
console.log(this.dayList) |
|
|
this.getDayScTData() |
|
|
this.getDayScTData() |
|
|
} else { |
|
|
} else { |
|
|
this.times = this.$moment(this.times) |
|
|
this.times = this.$moment(this.times) |
|
@ -345,7 +345,7 @@ export default { |
|
|
} else { |
|
|
} else { |
|
|
return { |
|
|
return { |
|
|
...item, |
|
|
...item, |
|
|
jzrPrice: '暂无' |
|
|
jzrPrice: '0.00' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|