MicroCommunityWeb/public/components/dev/devServiceProvide/devServiceProvide.html
2020-04-30 22:46:36 +08:00

42 lines
1.5 KiB
HTML

<div >
<div class="java110_step">
<div id="step"></div>
</div>
<!-- 选择 应用信息 -->
<div v-if="devServiceProvideInfo.index == 0">
<vc:create path="dev/viewServiceInfo/viewServiceInfo"
callBackListener="devServiceProvide"
callBackFunction="notify"
></vc:create>
</div>
<div v-if="devServiceProvideInfo.index == 1">
<vc:create path="dev/devServiceProvideView/devServiceProvideView"
callBackListener="devServiceProvide"
callBackFunction="notify"
></vc:create>
</div>
<div v-if="devServiceProvideInfo.index == 2">
<vc:create path="dev/serviceProvideRemarkView/serviceProvideRemarkView"
callBackListener="devServiceProvide"
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()">上一步</button>
<button v-if="devServiceProvideInfo.index != 2" type="button" class="btn btn-primary"
style="margin-left:10px;" v-on:click="_nextStep()">下一步
</button>
<button v-if="devServiceProvideInfo.index == 2" type="button" class="btn btn-primary"
style="margin-left:10px;" v-on:click="_finishStep()">完成
</button>
</div>
</div>
</div>