<div id="component" >
|
|
<vc:create name="addCar"
|
callBackComponent="sellCar"
|
></vc:create>
|
|
<!-- 选择 业主信息 -->
|
<vc:create name="sellRoomSelectOwner"
|
callBackComponent = "sellCar"
|
></vc:create>
|
|
<!-- 选择停车位 -->
|
<vc:create name="viewSelectParkingSpace"
|
callBackComponent="sellCar"
|
></vc:create>
|
|
<div class="row">
|
<div class="col-lg-12">
|
<div class="ibox ">
|
<div class="ibox-title">
|
<h5>收费信息</h5>
|
</div>
|
<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="sellCarInfo.receivableAmount" type="text" disabled 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="sellCarInfo.receivedAmount" type="text" placeholder="必填,请填写实际收取费用" class="form-control">
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<div style="height:50px">
|
<button class="btn btn-primary float-right" type="button" v-on:click="doSellCar()" ><i class="fa fa-check"></i> 我要售卖</button>
|
</div>
|
|
</div>
|