|
@@ -14,18 +14,23 @@
|
|
|
:replaceOrNotMap="false"
|
|
|
>
|
|
|
</template-page>
|
|
|
- <ExamineDialog :is-show.sync="isShowExamineDialog" :examine-form.sync="examineForm" />
|
|
|
+ <ExamineDialog
|
|
|
+ :is-show.sync="isShowExamineDialog"
|
|
|
+ :examine-form.sync="examineForm"
|
|
|
+ @submit="submitExamineForm"
|
|
|
+ @shuaxinlb="shuaxinlb"
|
|
|
+ />
|
|
|
<div class="app-container" v-if="isShowDetail">
|
|
|
- <ApplyDetail ref="refDetail" :list-item="queryItem" @backListFormDetail="backList" />
|
|
|
+ <ApplyDetail ref="refDetail" :list-item="queryItem" @backListFormDetail="backList" @shuaxinlb="shuaxinlb" />
|
|
|
</div>
|
|
|
<div class="app-container" v-if="isShowExamine">
|
|
|
- <ApplyExamine :list-item="queryItem" @backListFormDetail="backList" />
|
|
|
+ <ApplyExamine :list-item="queryItem" @backListFormDetail="backList" @shuaxinlb="shuaxinlb" />
|
|
|
</div>
|
|
|
<div class="app-container" v-if="isShowForm">
|
|
|
- <ApplyForm :list-item="queryItem" @backListFormDetail="backList" />
|
|
|
+ <ApplyForm :list-item="queryItem" @backListFormDetail="backList" @shuaxinlb="shuaxinlb" />
|
|
|
</div>
|
|
|
<div class="app-container" v-if="isShowReturnForm">
|
|
|
- <ApplyReturnForm :list-item="queryItem" :is-show="isShow" @backListFormDetail="backList" />
|
|
|
+ <ApplyReturnForm :list-item="queryItem" :is-show="isShow" @backListFormDetail="backList" @shuaxinlb="shuaxinlb" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -488,7 +493,6 @@ export default {
|
|
|
this.isShowExamine = false
|
|
|
this.isShowForm = false
|
|
|
this.isShowReturnForm = false
|
|
|
- this.$refs.pageRef.refreshList()
|
|
|
},
|
|
|
|
|
|
handleDelete(id) {
|
|
@@ -497,7 +501,9 @@ export default {
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
})
|
|
|
},
|
|
|
-
|
|
|
+ shuaxinlb() {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ },
|
|
|
// 申请/撤回
|
|
|
handleSubmit(id, examineStatus) {
|
|
|
submitApply({ id, examineStatus }).then(res => {
|