Files
2025-12-09 20:22:03 +08:00

88 lines
4.3 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
<div class="col-lg-5 padding-right-xs padding-right-xl ">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_queryChargeRulePriceMethod()">
查询
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddChargeRulePriceModal()">
<i class="glyphicon glyphicon-plus"></i>
<span>
<vc:i18n name="添加" namespace="marketTextManage"></vc:i18n>
</span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddChargePeakAlleyPriceModal()">
<i class="glyphicon glyphicon-plus"></i>
<span>
<vc:i18n name="设置尖峰谷平价格" namespace="marketTextManage"></vc:i18n>
</span>
</button>
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='编号' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时段开始时间' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时段结束时间' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='价格策略' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='电价' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='服务单价' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='备注' namespace='chargeRulePrice'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="chargeRulePrice in chargeRulePriceInfo.chargeRulePrices">
<td class="text-center">{{chargeRulePrice.crpId}}</td>
<td class="text-center">{{chargeRulePrice.startTime}}</td>
<td class="text-center">{{chargeRulePrice.endTime}}</td>
<td class="text-center">{{chargeRulePrice.cpaTypeName}}</td>
<td class="text-center">{{chargeRulePrice.price}}</td>
<td class="text-center">{{chargeRulePrice.servicePrice}}</td>
<td class="text-center">{{chargeRulePrice.remark}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditChargeRulePriceModel(chargeRulePrice)">
<vc:i18n name='修改'></vc:i18n>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteChargeRulePriceModel(chargeRulePrice)">
<vc:i18n name='删除'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/paginationPlus" namespace="chargeRulePrice"></vc:create>
</div>
<vc:create path="charge/addChargeRulePrice" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="charge/addChargePeakAlleyPrice" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="charge/editChargeRulePrice"></vc:create>
<vc:create path="charge/deleteChargeRulePrice"></vc:create>
</div>