mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="ibox-tools">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
|
|
<span>
|
|
<span><vc:i18n name="返回" namespace="inAndOutStep"></vc:i18n></span>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</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()">
|
|
<span><vc:i18n name="上一步" namespace="inAndOutStep"></vc:i18n></span>
|
|
</button>
|
|
<button v-if="inAndOutStepInfo.index != 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_nextStep()">
|
|
<span><vc:i18n name="下一步" namespace="inAndOutStep"></vc:i18n></span>
|
|
</button>
|
|
<button v-if="inAndOutStepInfo.index == 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_finishStep()">
|
|
<span><vc:i18n name="提交" namespace="inAndOutStep"></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|