|
|
@@ -82,7 +82,7 @@
|
|
|
dataIndex: 'createBy',
|
|
|
align: 'center',
|
|
|
width: '60px',
|
|
|
- customRender: ({ text, record, index, column }) => {
|
|
|
+ customRender: ({ text, record, index, column }) => {
|
|
|
return <div class='smart-table-operate'>{record.createBy?.actualName}</div>;
|
|
|
},
|
|
|
},
|
|
|
@@ -121,10 +121,7 @@
|
|
|
const router = useRouter();
|
|
|
|
|
|
function goDetailPage(record) {
|
|
|
- sessionStorage.setItem('SessionStorageProjectId', record.id);
|
|
|
- router.push({
|
|
|
- path: '/project/project-manage/single-project',
|
|
|
- });
|
|
|
+ window.open(`http://localhost:8081/#/MvcSheet/formWork?flowCode=${record.flowCode}&bizObjectID=${record.bizObjectId}`);
|
|
|
}
|
|
|
</script>
|
|
|
|