mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
<div>
|
|
<div class="java110_step">
|
|
<div id="step"></div>
|
|
</div>
|
|
<!-- 选择类型 -->
|
|
<div v-if="inAndOutStepInfo.index == 0">
|
|
<vc:create path="common/chooseInAndOutType" callBackListener="inAndOutStep"
|
|
callBackFunction="notify">
|
|
</vc:create>
|
|
</div>
|
|
<!-- 选择商品 -->
|
|
<div v-if="inAndOutStepInfo.index == 1">
|
|
<vc:create path="common/viewResourceStoreInfo3" callBackListener="inAndOutStep"
|
|
callBackFunction="notify2">
|
|
</vc:create>
|
|
</div>
|
|
<!-- 其他信息 -->
|
|
<div v-show="inAndOutStepInfo.index == 2">
|
|
<vc:create path="common/addPurchaseApplyView2" callBackListener="inAndOutStep"
|
|
callBackFunction="notify3">
|
|
</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="inAndOutStepInfo.index != 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_nextStep()">下一步
|
|
</button>
|
|
<button v-if="inAndOutStepInfo.index == 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_finishStep()">提交
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|