吴学文
2019-06-08 60b967625557ef260952eb9a3493158be05b69eb
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
<div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
 
    <vc:create name="addCar"></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 class="">
        <button class="btn btn-primary float-right" type="button" v-on:click="doSellCar()" ><i class="fa fa-check"></i>&nbsp;我要售卖</button>
    </div>
 
</div>