mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 18:11:00 +08:00
31 lines
1.3 KiB
HTML
Executable File
31 lines
1.3 KiB
HTML
Executable File
<div>
|
|
<div class="java110_step">
|
|
<div id="step"></div>
|
|
</div>
|
|
<!-- 选择 应用信息 -->
|
|
<div v-if="newVisitInfo.index == 0">
|
|
<!-- 选择停车位 -->
|
|
<vc:create path="property/viewVisitInfo" callBackComponent="addVisitSpace" callBackFunction="notify">
|
|
</vc:create>
|
|
</div>
|
|
<div v-if="newVisitInfo.index == 1">
|
|
<vc:create path="property/visitForOwner" callBackListener="addVisitSpace" callBackFunction="notify">
|
|
</vc:create>
|
|
</div>
|
|
<div v-show="newVisitInfo.index == 2">
|
|
<vc:create path="property/addVisitCase" callBackComponent="addVisitSpace" 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="newVisitInfo.index != 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_nextStep()">下一步
|
|
</button>
|
|
<button v-if="newVisitInfo.index == 2" type="button" class="btn btn-primary"
|
|
style="margin-left:10px;" v-on:click="_addVisitFinish()">登记
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div> |