84 lines
4.1 KiB
HTML
84 lines
4.1 KiB
HTML
<div id="editChargeRulePriceModel" 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="editChargeRulePrice"></vc:i18n>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div class="editTime">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name='开始时间' namespace='editChargeRulePrice'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeRulePriceInfo.startTime" type="text"
|
|
:placeholder="vc.i18n('必填,请选择时段开始时间','editChargeRulePrice')" class="form-control editStartTime">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name='结束时间' namespace='editChargeRulePrice'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeRulePriceInfo.endTime" type="text"
|
|
:placeholder="vc.i18n('必填,请选择时段结束时间','editChargeRulePrice')" class="form-control editEndTime">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name='价格策略' namespace='editChargeRulePrice'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<select class="form-control-sm form-control input-s-sm inline"
|
|
v-model="editChargeRulePriceInfo.cpaId">
|
|
<option selected value="">{{vc.i18n('请选择策略')}}</option>
|
|
<option v-for="(item,index) in peakAlleyPriceEdit.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='editChargeRulePrice'></vc:i18n>-->
|
|
<!-- </label>-->
|
|
<!-- <div class="col-sm-10">-->
|
|
<!-- <input v-model="editChargeRulePriceInfo.price" type="number"-->
|
|
<!-- :placeholder="vc.i18n('必填,请填写电价','editChargeRulePrice')" class="form-control">-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
<!-- <div class="form-group row">-->
|
|
<!-- <label class="col-sm-2 col-form-label">-->
|
|
<!-- <vc:i18n name='服务单价' namespace='editChargeRulePrice'></vc:i18n>-->
|
|
<!-- </label>-->
|
|
<!-- <div class="col-sm-10">-->
|
|
<!-- <input v-model="editChargeRulePriceInfo.servicePrice" type="number"-->
|
|
<!-- :placeholder="vc.i18n('必填,请填写服务单价','editChargeRulePrice')" class="form-control">-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<vc:i18n name='备注' namespace='editChargeRulePrice'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="editChargeRulePriceInfo.remark"
|
|
:placeholder="vc.i18n('必填,请填写备注','editChargeRulePrice')" class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="editChargeRulePrice()">
|
|
<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> |