MicroCommunityWeb/public/components/property/configParkingSpaceTempFee/configParkingSpaceTempFee.html
2021-04-23 10:14:20 +08:00

27 lines
1.8 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id = "configFeeTempConfigInfoModel" class="modal fade" tabindex="-1" 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 ">编辑临时停车费</h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">每小时单价</label>
<div class="col-sm-10"><input v-model="changeFeeTempConfigInfo.squarePrice" type="text" placeholder="必填,请填写临时车每小时单价,如10.00" class="form-control"></div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">首两个小时</label>
<div class="col-sm-10"><input v-model="changeFeeTempConfigInfo.additionalAmount" type="text" placeholder="必填请填写前两个小时费用如200.00" class="form-control"></div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveTempParkingSpaceConfigFee()" ><i class="fa fa-check"></i>&nbsp;保存</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">取消</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>