|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div style="width: 100%; height: 100%">
|
|
|
<template-page
|
|
|
- v-if="showPage == 1"
|
|
|
+ v-show="showPage == 1"
|
|
|
ref="pageRef"
|
|
|
:operation="operation()"
|
|
|
:optionsEvensGroup="optionsEvensGroup"
|
|
@@ -10,24 +10,25 @@
|
|
|
:tableAttributes="tableAttributes"
|
|
|
:tableEvents="tableEvents"
|
|
|
:columnParsing="columnParsing"
|
|
|
+ :replaceOrNotMap="false"
|
|
|
>
|
|
|
</template-page>
|
|
|
- <div class="app-container" v-else-if="showPage == 2">
|
|
|
+ <div class="app-container" v-show="showPage == 2">
|
|
|
<RebateListApply :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-else-if="showPage == 3">
|
|
|
+ <div class="app-container" v-show="showPage == 3">
|
|
|
<RebateListExamine @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-else-if="showPage == 4">
|
|
|
+ <div class="app-container" v-show="showPage == 4">
|
|
|
<RebateListReview @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-else-if="showPage == 5">
|
|
|
+ <div class="app-container" v-show="showPage == 5">
|
|
|
<RebateListDetail :detailId="detailId" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-else-if="showPage == 6">
|
|
|
+ <div class="app-container" v-show="showPage == 6">
|
|
|
<RebateListConfirm @updateList="updateList" :detailId="detailId" :isShow="isShow" />
|
|
|
</div>
|
|
|
- <div class="app-container" v-else-if="showPage == 7">
|
|
|
+ <div class="app-container" v-show="showPage == 7">
|
|
|
<RebateListEdit @updateList="updateList" :detailId="detailId" />
|
|
|
</div>
|
|
|
<ExamineDialog :isShow.sync="isShowExamineDialog" :examineForm.sync="examineForm" />
|