|
@@ -67,7 +67,7 @@
|
|
|
<vxe-column field="order.isProvinceText" title="省/市工单" width="90"></vxe-column>
|
|
|
<vxe-column field="order.title" title="工单标题" width="200">
|
|
|
<template #default="{ row }">
|
|
|
- <order-detail :order="row.order" @updateList="queryList">{{ row.order?.title }}</order-detail>
|
|
|
+ <order-detail :order="row.order" @updateList="handleQuery">{{ row.order?.title }}</order-detail>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column field="order.acceptType" title="受理类型" width="100"></vxe-column>
|
|
@@ -207,17 +207,17 @@
|
|
|
</template>
|
|
|
</el-drawer>
|
|
|
<!-- 流程审批 -->
|
|
|
- <process-audit ref="processAuditRef" @orderProcessSuccess="queryList" />
|
|
|
+ <process-audit ref="processAuditRef" @orderProcessSuccess="handleQuery" />
|
|
|
<!-- 回访详情 -->
|
|
|
- <visit-detail-com ref="visitDetailRef" @updateList="queryList" />
|
|
|
+ <visit-detail-com ref="visitDetailRef" @updateList="handleQuery" />
|
|
|
<!-- 甄别详情 -->
|
|
|
- <discern-detail ref="discernDetailRef" @updateList="queryList" />
|
|
|
+ <discern-detail ref="discernDetailRef" @updateList="handleQuery" />
|
|
|
<!-- 甄别修改 -->
|
|
|
- <discern-edit ref="discernEditRef" @orderProcessSuccess="queryList" />
|
|
|
+ <discern-edit ref="discernEditRef" @orderProcessSuccess="handleQuery" />
|
|
|
<!-- 甄别申请 -->
|
|
|
- <discern-apply ref="discernApplyRef" @orderProcessSuccess="queryList" />
|
|
|
+ <discern-apply ref="discernApplyRef" @orderProcessSuccess="handleQuery" />
|
|
|
<!-- 修改甄别提起时限 -->
|
|
|
- <discern-edit-apply-time ref="discernEditApplyTimeRef" @updateList="queryList" />
|
|
|
+ <discern-edit-apply-time ref="discernEditApplyTimeRef" @updateList="handleQuery" />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="tsx" name="businessDiscernYBApply">
|