被覆盖代码修复
This commit is contained in:
parent
688c7eb295
commit
b756c7f17f
|
@ -31,7 +31,18 @@
|
||||||
<div class="title">审批详情</div>
|
<div class="title">审批详情</div>
|
||||||
<template v-for="item in dataSource.data" :key="item">
|
<template v-for="item in dataSource.data" :key="item">
|
||||||
<div class="oddNumbers">子单号:{{ item[0] }}</div>
|
<div class="oddNumbers">子单号:{{ item[0] }}</div>
|
||||||
<a-table :dataSource="item[1]" :columns="columns">
|
<a-table
|
||||||
|
:dataSource="item[1]"
|
||||||
|
:columns="dataSourceColumns"
|
||||||
|
v-if="showType === '数据资源申请'"
|
||||||
|
>
|
||||||
|
<template #bodyCell="{ column, text }">
|
||||||
|
<template v-if="column.dataIndex === 'name'">
|
||||||
|
<a>{{ text }}</a>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</a-table>
|
||||||
|
<a-table :dataSource="item[1]" :columns="columns" v-else>
|
||||||
<template #bodyCell="{ column, text }">
|
<template #bodyCell="{ column, text }">
|
||||||
<template v-if="column.dataIndex === 'name'">
|
<template v-if="column.dataIndex === 'name'">
|
||||||
<a>{{ text }}</a>
|
<a>{{ text }}</a>
|
||||||
|
@ -169,6 +180,32 @@
|
||||||
width: '180px',
|
width: '180px',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
const dataSourceColumns = [
|
||||||
|
{
|
||||||
|
title: '操作',
|
||||||
|
dataIndex: 'cz',
|
||||||
|
key: 'cz',
|
||||||
|
width: '180px',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '处理用户',
|
||||||
|
dataIndex: 'czyh',
|
||||||
|
key: 'czyh',
|
||||||
|
width: '180px',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '处理时间',
|
||||||
|
dataIndex: 'clsj',
|
||||||
|
key: 'clsj',
|
||||||
|
width: '180px',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '备注',
|
||||||
|
dataIndex: 'remark',
|
||||||
|
key: 'remark',
|
||||||
|
width: '180px',
|
||||||
|
},
|
||||||
|
]
|
||||||
const getInfo = () => {
|
const getInfo = () => {
|
||||||
console.log(props.processInstanceId, '============================')
|
console.log(props.processInstanceId, '============================')
|
||||||
if (props.processDefinitionName == '能力申请') {
|
if (props.processDefinitionName == '能力申请') {
|
||||||
|
|
Loading…
Reference in New Issue