zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
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
50
51
52
53
54
<div >
 
    <div class="java110_step">
        <div id="step"></div>
    </div>
 
    <!-- 选择 应用信息 -->
    <div v-if="sellParkingSpaceInfo.index == 0">
 
        <!-- 选择停车位 -->
        <vc:create path="property/viewSelectParkingSpace"
                   callBackComponent="sellParkingSpace"
                   callBackFunction="notify"
        ></vc:create>
    </div>
    <div v-if="sellParkingSpaceInfo.index == 1">
        <vc:create path="property/viewOwnerInfo"
                   callBackListener="sellParkingSpace"
                   callBackFunction="notify"
        ></vc:create>
    </div>
    <div v-if="sellParkingSpaceInfo.index == 2">
        <vc:create path="property/addCar"
                   callBackComponent="sellParkingSpace"
                   callBackFunction="notify"
        >
 
        </vc:create>
    </div>
 
    <div v-if="sellParkingSpaceInfo.index == 3">
        <vc:create path="property/sellParkingSpaceFee"
                   callBackComponent="sellParkingSpace"
                   callBackFunction="notify"
        ></vc:create>
    </div>
 
 
    <div class="row">
        <div class="col-md-10"></div>
        <div class="col-md-2 " style="margin-bottom:10px; text-align:right">
            <button type="button" class="btn btn-secondary" v-on:click="_prevStep()"><span><vc:i18n name="上一步" namespace="sellParkingSpace"></vc:i18n></span></button>
            <button v-if="sellParkingSpaceInfo.index != 3" type="button" class="btn btn-primary"
                    style="margin-left:10px;"
                    v-on:click="_nextStep()"><span><vc:i18n name="下一步" namespace="sellParkingSpace"></vc:i18n></span>
            </button>
            <button v-if="sellParkingSpaceInfo.index == 3" type="button" class="btn btn-primary"
                    style="margin-left:10px;"
                    v-on:click="_finishStep()"><span><vc:i18n name="出售" namespace="sellParkingSpace"></vc:i18n></span>
            </button>
        </div>
    </div>
 
</div>