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
<div >
 
    <div class="java110_step">
        <div id="step"></div>
    </div>
 
    <!-- 选择 应用信息 -->
    <div v-if="repairDispatchStepInfo.index == 0 || repairDispatchStepInfo.index == 1">
        <vc:create path="frame/viewOrgInfo"
                   callBackListener="repairDispatchStep"
                   callBackFunction="notify"
        ></vc:create>
    </div>
    <div v-if="repairDispatchStepInfo.index == 2">
        <vc:create path="frame/viewStaffInfo"
                   callBackListener="repairDispatchStep"
                   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="repairDispatchStep"></vc:i18n></span></button>
            <button v-if="repairDispatchStepInfo.index != 2" type="button" class="btn btn-primary"
                    style="margin-left:10px;" v-on:click="_nextStep()"><span><vc:i18n name="下一步" namespace="repairDispatchStep"></vc:i18n></span>
            </button>
            <button v-if="repairDispatchStepInfo.index == 2" type="button" class="btn btn-primary"
                    style="margin-left:10px;" v-on:click="_finishStep()"><span><vc:i18n name="完成" namespace="repairDispatchStep"></vc:i18n></span>
            </button>
        </div>
    </div>
 
</div>