|
@@ -18,6 +18,9 @@
|
|
|
<template #title="{ row }">
|
|
|
<order-detail :order="row" @updateList="queryList">{{ row.title }}</order-detail>
|
|
|
</template>
|
|
|
+ <template #operation="{ row }">
|
|
|
+ <order-detail :order="row"/>
|
|
|
+ </template>
|
|
|
</ProTable>
|
|
|
</el-card>
|
|
|
</div>
|
|
@@ -55,7 +58,7 @@ const columns = ref<any[]>([
|
|
|
{ prop: 'acceptType', label: '受理类型', minWidth: 150 },
|
|
|
{ prop: 'hotspotName', label: '热点分类', minWidth: 200 },
|
|
|
{ prop: 'acceptType', label: '执法部门', minWidth: 150 },
|
|
|
- { prop: 'city', label: '事发地址', minWidth: 150 },
|
|
|
+ { prop: 'incidentAddressText', label: '事发地址', minWidth: 150 },
|
|
|
{
|
|
|
prop: 'creationTime',
|
|
|
label: '生成时间',
|
|
@@ -81,6 +84,7 @@ const columns = ref<any[]>([
|
|
|
width: 150,
|
|
|
},
|
|
|
{ prop: 'eventTypeName', label: '事项类型', width: 200 },
|
|
|
+ { prop: 'operation', label: '操作', fixed: 'right', width: 100, align: 'center' },
|
|
|
]);
|
|
|
/** 获取列表 */
|
|
|
const routeQueryParams = route.query;
|