|
@@ -13,22 +13,22 @@
|
|
|
:replaceOrNotMap="false"
|
|
|
>
|
|
|
</template-page>
|
|
|
- <div class="app-container" v-show="showPage == 2">
|
|
|
+ <div class="app-container" v-if="showPage == 2">
|
|
|
<RebateListApply :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-show="showPage == 3">
|
|
|
+ <div class="app-container" v-if="showPage == 3">
|
|
|
<RebateListExamine @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-show="showPage == 4">
|
|
|
+ <div class="app-container" v-if="showPage == 4">
|
|
|
<RebateListReview @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-show="showPage == 5">
|
|
|
+ <div class="app-container" v-if="showPage == 5">
|
|
|
<RebateListDetail :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-show="showPage == 6">
|
|
|
+ <div class="app-container" v-if="showPage == 6">
|
|
|
<RebateListConfirm @updateList="updateList" :detailId="detailId" :isShow="isShow" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-show="showPage == 7">
|
|
|
+ <div class="app-container" v-if="showPage == 7">
|
|
|
<RebateListEdit @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
<ExamineDialog :isShow.sync="isShowExamineDialog" :examineForm.sync="examineForm" />
|