|
@@ -75,9 +75,15 @@
|
|
|
<!--进度条-->
|
|
|
<div class="mb-5">
|
|
|
<div class="progress">
|
|
|
+ <% if (tender.pre_ratio > 0) { %>
|
|
|
<div class="progress-bar bg-success" style="width: <%- tender.pre_ratio %>%;" data-placement="bottom" data-toggle="tooltip" data-original-title="截止上期累计完成:¥<%- ctx.helper.formatMoney(tender.end_gather_tp) %>"><%- tender.pre_ratio %>%</div>
|
|
|
+ <% } %>
|
|
|
+ <% if (tender.cur_ratio > 0) { %>
|
|
|
<div class="progress-bar bg-info" style="width: <%- tender.cur_ratio %>%;" data-placement="bottom" data-toggle="tooltip" data-original-title="本期完成:¥<%- ctx.helper.formatMoney(tender.gather_tp) %>"><%- tender.cur_ratio %>%</div>
|
|
|
+ <% } %>
|
|
|
+ <% if (tender.other_ratio > 0) { %>
|
|
|
<div class="progress-bar bg-gray" style="width: <%- tender.other_ratio %>%;" data-placement="bottom" data-toggle="tooltip" data-original-title="未完成:¥<%- ctx.helper.formatMoney(tender.other_tp) %>"><%- tender.other_ratio %>%</div>
|
|
|
+ <% } %>
|
|
|
</div>
|
|
|
</div>
|
|
|
<ul class="nav nav-tabs">
|