|
@@ -31,8 +31,10 @@
|
|
|
<div>
|
|
|
<div>{{surveyTable.weekcoldProprotion}}<span>%</span></div>
|
|
|
<p v-if="surveyTable.coldChainRatio">环比 {{surveyTable.coldChainRatio||'--'}}%
|
|
|
- <img src="../../../../static/images/icon_down.png" alt="" v-if="surveyTable.coldChainRatio&&surveyTable.coldChainRatio.includes('-')">
|
|
|
- <img src="../../../../static/images/icon_up.png" alt="" v-else>
|
|
|
+ <span v-if="surveyTable.coldChainRatio!=0">
|
|
|
+ <img src="../../../../static/images/icon_up.png" style="transform:rotate(180deg);" alt="" v-if="surveyTable.coldChainRatio&&surveyTable.coldChainRatio.includes('-')">
|
|
|
+ <img src="../../../../static/images/icon_down.png" style="transform:rotate(180deg);" alt="" v-else>
|
|
|
+ </span>
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -41,8 +43,11 @@
|
|
|
<div>
|
|
|
<div>{{surveyTable.weekhotProprotion}}<span>%</span></div>
|
|
|
<p v-if="surveyTable.hotChainRatio">环比 {{surveyTable.hotChainRatio||'--'}}%
|
|
|
- <img src="../../../../static/images/icon_down.png" alt="" v-if="surveyTable.hotChainRatio&&surveyTable.hotChainRatio.includes('-')">
|
|
|
- <img src="../../../../static/images/icon_up.png" alt="" v-else>
|
|
|
+ <span v-if="surveyTable.hotChainRatio!=0">
|
|
|
+ <img src="../../../../static/images/icon_up.png" style="transform:rotate(180deg);" alt="" v-if="surveyTable.hotChainRatio&&surveyTable.hotChainRatio.includes('-')">
|
|
|
+ <img src="../../../../static/images/icon_down.png" style="transform:rotate(180deg);" alt="" v-else>
|
|
|
+ </span>
|
|
|
+
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|