吴学文
2019-07-10 4ee6445f67bbb56caa2b2f981afce6e87cc602af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<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>&nbsp;我要售卖</button>
    </div>
 
</div>