|
|
@@ -219,12 +219,16 @@
|
|
|
<!--<ul class="list-inline pull-right" :style="{top: topRight + 'rem'}" :class="{no_tran: topRight == 2.4}">-->
|
|
|
<ul class="list-inline pull-right" ref="pingdanListWrapperR" :style="'top: -' + 1 * timerIndexR + 'rem'" :class="{'topR': isTopR}">
|
|
|
<li v-for="(item, index) in itemRight">
|
|
|
- <span class="number">
|
|
|
+ <span class="number" v-if="item.type === 2">
|
|
|
<span class="name" v-html="nameRight[index]"></span>
|
|
|
<span class="month" v-if="index === 5">(上月)</span>
|
|
|
<span class="month" v-if="index === 6">(本月)</span>
|
|
|
<span class="num" v-html="formatDouble(item.count)"></span>
|
|
|
- <span class="unit" v-if="item.type === 2">条</span>
|
|
|
+ <span class="unit">条</span>
|
|
|
+ </span>
|
|
|
+ <span class="number" v-else>
|
|
|
+ <span class="name" v-html="nameRight[index]"></span>
|
|
|
+ <span class="num" v-html="formatNumber(item.count, item.type)"></span>
|
|
|
</span>
|
|
|
</li>
|
|
|
</ul>
|