mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
52 lines
3.7 KiB
HTML
52 lines
3.7 KiB
HTML
<div id="editChargeMonthCardModel" 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="editChargeMonthCard"></vc:i18n>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><vc:i18n name='名称' namespace='editChargeMonthCard'></vc:i18n></label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeMonthCardInfo.cardName" type="text" :placeholder="vc.i18n('必填,请填写名称','editChargeMonthCard')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><vc:i18n name='月' namespace='editChargeMonthCard'></vc:i18n></label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeMonthCardInfo.cardMonth" type="number" :placeholder="vc.i18n('必填,请填写月','editChargeMonthCard')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><vc:i18n name='月价' namespace='editChargeMonthCard'></vc:i18n> </label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeMonthCardInfo.cardPrice" type="number" :placeholder="vc.i18n('必填,请填写月价','editChargeMonthCard')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><vc:i18n name='小时' namespace='editChargeMonthCard'></vc:i18n> </label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editChargeMonthCardInfo.dayHours" type="number" :placeholder="vc.i18n('必填,请填写每日充电小时','editChargeMonthCard')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label"><vc:i18n name='备注' namespace='editChargeMonthCard'></vc:i18n> </label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="editChargeMonthCardInfo.remark" :placeholder="vc.i18n('必填,请填写备注','editChargeMonthCard')" class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="editChargeMonthCard()"><i class="fa fa-check"></i> <span><vc:i18n name="保存"></vc:i18n></span></button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal"><span><vc:i18n name="取消"></vc:i18n></span></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |