|
|
@@ -115,6 +115,7 @@
|
|
|
<div class="inline-block" style="vertical-align: top" >
|
|
|
<div v-for="count in item.amountDetailList">
|
|
|
<span v-if="count.thisPeriodAmount > 0">{{count.currency}}:{{count.thisPeriodAmount | computeNum(2)}}</span>
|
|
|
+ <span v-else>{{count.currency}}:暂无数据</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -134,6 +135,7 @@
|
|
|
<div class="inline-block" style="vertical-align: top" >
|
|
|
<div v-for="count in item.amountDetailList">
|
|
|
<span v-if="count.thisPeriodTodoAmount > 0">{{count.currency}}:{{count.thisPeriodTodoAmount | computeNum(2)}}</span>
|
|
|
+ <span v-else>{{count.currency}}:暂无数据</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -143,6 +145,7 @@
|
|
|
<div class="inline-block" style="vertical-align: top" >
|
|
|
<div v-for="count in item.amountDetailList">
|
|
|
<span v-if="count.thisPeriodDoneAmount > 0">{{count.currency}}:{{count.thisPeriodDoneAmount | computeNum(2)}}</span>
|
|
|
+ <span v-else>{{count.currency}}:暂无数据</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -162,6 +165,7 @@
|
|
|
<div class="inline-block" style="vertical-align: top" >
|
|
|
<div v-for="count in item.amountDetailList">
|
|
|
<span v-if="count.totalAmount > 0">{{count.currency}}:{{count.totalAmount | computeNum(2)}}</span>
|
|
|
+ <span v-else>{{count.currency}}:暂无数据</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|