wuxw
2019-07-11 b3f85b60ba9e39572e686009d36b5e5d7e81e910
WebService/src/main/resources/components/sell-car/sellCar.html
@@ -1,6 +1,8 @@
<div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
<div id="component" >
    <vc:create name="addCar"></vc:create>
    <vc:create name="addCar"
               callBackComponent="sellCar"
    ></vc:create>
    <!-- 选择 业主信息 -->
    <vc:create name="sellRoomSelectOwner"
@@ -12,7 +14,35 @@
               callBackComponent="sellCar"
    ></vc:create>
    <div class="">
    <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>&nbsp;我要售卖</button>
    </div>