Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/charge/addChargeRuleFee/addChargeRuleFee.html
2025-12-09 20:22:03 +08:00

62 lines
2.9 KiB
HTML

<div id="addChargeRuleFeeModel" class="modal fade" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-body">
<h3 class="m-t-none m-b ">
<vc:i18n name="添加" namespace="addChargeRuleFee"></vc:i18n>
</h3>
<div class="ibox-content">
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='最大功率' namespace='addChargeRuleFee'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addChargeRuleFeeInfo.maxEnergyPrice" type="number"
:placeholder="vc.i18n('必填,请填写最大功率','addChargeRuleFee')" class="form-control">
<div>单位W,充电预扣费时根据 最大功率*时间*电费单价+服务费*时间 扣费</div>
<div>计算时将 按实际电量*单价 + 服务费*时间扣费</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='电费单价' namespace='addChargeRuleFee'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addChargeRuleFeeInfo.durationPrice" type="number"
:placeholder="vc.i18n('必填,请填写电费单价','addChargeRuleFee')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='服务费单价' namespace='addChargeRuleFee'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addChargeRuleFeeInfo.servicePrice" type="number"
:placeholder="vc.i18n('必填,请填写服务费单价','addChargeRuleFee')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='备注' namespace='addChargeRuleFee'></vc:i18n>
</label>
<div class="col-sm-10">
<textarea v-model="addChargeRuleFeeInfo.remark"
:placeholder="vc.i18n('必填,请填写备注','addChargeRuleFee')" class="form-control"></textarea>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveChargeRuleFeeInfo()"><i
class="fa fa-check"></i>&nbsp;
<vc:i18n name="保存"></vc:i18n>
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
<vc:i18n name="取消"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
</div>
</div>