Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/property/viewFeeDetailDiscount/viewFeeDetailDiscount.html
2025-12-09 20:22:03 +08:00

60 lines
3.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="viewFeeDetailDiscountModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="viewFeeDetailDiscountModel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="chooseFloorModelLabel">
<span><vc:i18n name="折扣" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class=" row">
<div class="col-lg-12">
<div class="ibox ">
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="折扣名称" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="折扣类型" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="折扣名称" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="折扣规则" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="折扣金额" namespace="viewFeeDetailDiscount"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="discount in viewFeeDetailDiscountInfo.feeDetailDiscounts">
<td class="text-center">{{discount.discountName}}</td>
<td class="text-center">{{discount.discountType == '1001'?'优惠':'违约'}}</td>
<td class="text-center">{{discount.ruleName}}</td>
<td class="text-center">
<div v-for="(item,index) in discount.feeDiscountSpecs">
{{item.specName}}{{item.specValue}}</div>
</td>
<td class="text-center">{{discount.discountPrice}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>