吴学文
2019-07-14 f644af9209dc351c6539ea83f7d1251df000b3dc
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
<div id="component" >
 
    <div class="row" class="wizard-big wizard clearfix">
        <div class="steps clearfix">
            <ul role="tablist">
                <li role="tab" v-bind:class="{ current: serviceBindingInfo.step==1,vc_disabled:serviceBindingInfo.step!=1 }" >
                    <a>
                        <span class="current-info audible">current step: </span>
                        <span class="number">1.</span> 选择应用
                    </a>
                </li>
                <li role="tab" v-bind:class="{ current: serviceBindingInfo.step==2,vc_disabled:serviceBindingInfo.step!=2 }">
                    <a>
                        <span class="number">2.</span> 选择服务
                    </a>
                </li>
                <li role="tab" v-bind:class="{ current: serviceBindingInfo.step==3,vc_disabled:serviceBindingInfo.step!=3 }">
                    <a>
                        <span class="number">3.</span> 确认绑定
                    </a>
                </li>
            </ul>
        </div>
    </div>
 
    <!-- 选择 应用信息 -->
    <vc:create name="sellRoomSelectOwner"
               callBackComponent = "sellCar"
    ></vc:create>
 
</div>