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

89 lines
5.2 KiB
HTML

<div id="addChargeRulePriceModel" 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="addChargeRulePrice"></vc:i18n>
</h3>
<div class="ibox-content">
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='开始时间' namespace='addChargeRulePrice'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addChargeRulePriceInfo.startTime" type="text"
:placeholder="vc.i18n('必填,请选择时段开始时间','addChargeRulePrice')"
class="form-control addPriceStartTime">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='结束时间' namespace='addChargeRulePrice'></vc:i18n>
</label>
<div class="col-sm-10">
<input v-model="addChargeRulePriceInfo.endTime" type="text"
:placeholder="vc.i18n('必填,请选择时段结束时间','addChargeRulePrice')"
class="form-control addPriceEndTime">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='价格策略' namespace='addChargeRulePrice'></vc:i18n>
</label>
<div class="col-sm-10">
<select class="form-control-sm form-control input-s-sm inline"
v-model="addChargeRulePriceInfo.cpaId">
<option selected value="">{{vc.i18n('请选择策略')}}</option>
<option v-for="(item,index) in peakAlleyPriceAdd.prices" :key="index" :value="item.cpaId">
{{item.typeName}}--电费率:{{item.price}} --服务费率:{{item.servicePrice}}
</option>
</select>
</div>
</div>
<!-- <div class="form-group row">-->
<!-- <label class="col-sm-2 col-form-label">-->
<!-- <vc:i18n name='电价' namespace='addChargeRulePrice'></vc:i18n>-->
<!-- </label>-->
<!-- <div class="col-sm-10">-->
<!-- <input v-model="addChargeRulePriceInfo.price" type="number"-->
<!-- :placeholder="vc.i18n('必填,请填写电价','addChargeRulePrice')" class="form-control">-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="form-group row">-->
<!-- <label class="col-sm-2 col-form-label">-->
<!-- <vc:i18n name='服务单价' namespace='addChargeRulePrice'></vc:i18n>-->
<!-- </label>-->
<!-- <div class="col-sm-10">-->
<!-- <input v-model="addChargeRulePriceInfo.servicePrice" type="number"-->
<!-- :placeholder="vc.i18n('必填,请填写服务单价','addChargeRulePrice')" class="form-control">-->
<!-- </div>-->
<!-- </div>-->
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='备注' namespace='addChargeRulePrice'></vc:i18n>
</label>
<div class="col-sm-10">
<textarea v-model="addChargeRulePriceInfo.remark" :placeholder="vc.i18n('必填,请填写备注','addChargeRulePrice')"
class="form-control"></textarea>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button"
v-on:click="saveChargeRulePriceInfo()"><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>