MicroCommunityWeb/public/components/common/editAccountBondObj/editAccountBondObj.html
2021-06-29 18:59:02 +08:00

51 lines
2.3 KiB
HTML
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="editAccountBondObjModel" 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="editAccountBondObjInfo.bondId" type="text" placeholder="必填,请填写保证金"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">保证金对象ID</label>
<div class="col-sm-10">
<input v-model="editAccountBondObjInfo.objId" type="text" placeholder="必填请填写保证金对象ID"
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="editAccountBondObjInfo.receivableAmount" type="text" placeholder="选填,请填写应收金额"
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="editAccountBondObjInfo.receivedAmount" type="text" placeholder="选填,请填写实收金额"
class="form-control">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="editAccountBondObj()"><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>