|
|
@@ -15,7 +15,7 @@
|
|
|
</template>
|
|
|
<template #action="{ record }">
|
|
|
<TableAction
|
|
|
- v-if="!record.isShare"
|
|
|
+ v-if="!record.isShare && record.useType != 'trace_evidence'"
|
|
|
stopButtonPropagation
|
|
|
:actions="[
|
|
|
{
|
|
|
@@ -139,7 +139,17 @@
|
|
|
{
|
|
|
title: '勘验号',
|
|
|
dataIndex: 'kno',
|
|
|
- width: 80,
|
|
|
+ ellipsis: true,
|
|
|
+ width: 180,
|
|
|
+ customRender: ({ record }) => {
|
|
|
+ let caseList = []
|
|
|
+ record.caseList?.map(item => {
|
|
|
+ if(item.knumber) {
|
|
|
+ caseList.push(item.knumber)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return caseList.join(',');
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: '上传时间',
|