mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
39 lines
2.1 KiB
HTML
39 lines
2.1 KiB
HTML
<div id="editFeeModel" 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="editFeeInfo.startTime" type="text" placeholder="必填,请填写建账时间"
|
|
class="form-control editFeeStartTime">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">计费起始时间</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editFeeInfo.endTime" type="text" placeholder="必填,请填写计费起始时间"
|
|
class="form-control editFeeEndTime">
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="_doEidtFee()">
|
|
<i class="fa fa-check"></i> 提交
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal">
|
|
<i class="fa fa-times"></i> 取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |