diff --git a/src/router/modules/final.ts b/src/router/modules/final.ts index 9ede89c..98a65a2 100644 --- a/src/router/modules/final.ts +++ b/src/router/modules/final.ts @@ -38,7 +38,7 @@ const routes: Array = [ path: 'final-detail', name: 'final-detail', meta: { - title: '任务终审详情', + title: '任务详情', }, component: () => import('@/views/task/content/Content.vue'), }, diff --git a/src/views/final/comp/RepeatTaskTableModal.vue b/src/views/final/comp/RepeatTaskTableModal.vue index e0001cf..7adf491 100644 --- a/src/views/final/comp/RepeatTaskTableModal.vue +++ b/src/views/final/comp/RepeatTaskTableModal.vue @@ -68,6 +68,9 @@ const columns: DataTableColumns = [ ellipsis: { tooltip: true, }, + render(row: any) { + return row.fromtaskname + }, }, { title: '任务名称', @@ -356,6 +359,7 @@ function showModal() { function reload() { selectionIds.value = [] checkedRowKeys.value = [] + query(pagination.page, pagination.pageSize) } function goDetail(row) { diff --git a/src/views/final/content/Content.vue b/src/views/final/content/Content.vue index 24f68fa..33e6ed6 100644 --- a/src/views/final/content/Content.vue +++ b/src/views/final/content/Content.vue @@ -1,6 +1,6 @@