From 37d4739ea9fa8c62ca3afde85ce4cbd0d36b3312 Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Fri, 23 Feb 2024 14:42:24 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E9=97=AE=E9=A2=98=E8=B0=83?= =?UTF-8?q?=E6=95=B4new?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../contestSceneManage/ContestSceneManage.vue | 8 ++++++-- .../contestSeasonManage/ContestSeasonManage.vue | 4 ++-- .../ContestTaskScoreManage.vue | 4 ++-- .../contestTaskScoreManage/detailAdd.vue | 2 +- .../contestTaskScoreManage/selectScene.vue | 12 +++++++++--- 5 files changed, 20 insertions(+), 10 deletions(-) diff --git a/src/views/contestDataManage/contestSceneManage/ContestSceneManage.vue b/src/views/contestDataManage/contestSceneManage/ContestSceneManage.vue index 9c852c0f0..41dd627a3 100644 --- a/src/views/contestDataManage/contestSceneManage/ContestSceneManage.vue +++ b/src/views/contestDataManage/contestSceneManage/ContestSceneManage.vue @@ -42,6 +42,10 @@ export default { title: '名 称', prop: 'name' }, + { + title: '地图', + prop: 'mapName' + }, { title: '类 型', prop: 'type', @@ -53,14 +57,14 @@ export default { title: '创建时间', prop: 'createTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.createtime; }, + columnValue: (row) => { return row.modifyInfo.createTime; }, tagType: (row) => { return ''; } }, { title: '修改时间', prop: 'updateTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.updatetime; }, + columnValue: (row) => { return row.modifyInfo.updateTime; }, tagType: (row) => { return ''; } }, { diff --git a/src/views/contestDataManage/contestSeasonManage/ContestSeasonManage.vue b/src/views/contestDataManage/contestSeasonManage/ContestSeasonManage.vue index f34e94710..61d3902f2 100644 --- a/src/views/contestDataManage/contestSeasonManage/ContestSeasonManage.vue +++ b/src/views/contestDataManage/contestSeasonManage/ContestSeasonManage.vue @@ -65,14 +65,14 @@ export default { title: '创建时间', prop: 'createTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.createtime; }, + columnValue: (row) => { return row.modifyInfo.createTime; }, tagType: (row) => { return ''; } }, { title: '修改时间', prop: 'updateTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.updatetime; }, + columnValue: (row) => { return row.modifyInfo.updateTime; }, tagType: (row) => { return ''; } }, { diff --git a/src/views/contestDataManage/contestTaskScoreManage/ContestTaskScoreManage.vue b/src/views/contestDataManage/contestTaskScoreManage/ContestTaskScoreManage.vue index f71497dcc..c2bf6d560 100644 --- a/src/views/contestDataManage/contestTaskScoreManage/ContestTaskScoreManage.vue +++ b/src/views/contestDataManage/contestTaskScoreManage/ContestTaskScoreManage.vue @@ -43,14 +43,14 @@ export default { title: '创建时间', prop: 'createTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.createtime; }, + columnValue: (row) => { return row.modifyInfo.createTime; }, tagType: (row) => { return ''; } }, { title: '修改时间', prop: 'updateTime', type: 'tag', - columnValue: (row) => { return row.modifyinfo.updatetime; }, + columnValue: (row) => { return row.modifyInfo.updateTime; }, tagType: (row) => { return ''; } }, { diff --git a/src/views/contestDataManage/contestTaskScoreManage/detailAdd.vue b/src/views/contestDataManage/contestTaskScoreManage/detailAdd.vue index 77ded7491..7c5fb44c8 100644 --- a/src/views/contestDataManage/contestTaskScoreManage/detailAdd.vue +++ b/src/views/contestDataManage/contestTaskScoreManage/detailAdd.vue @@ -8,7 +8,7 @@ - + diff --git a/src/views/contestDataManage/contestTaskScoreManage/selectScene.vue b/src/views/contestDataManage/contestTaskScoreManage/selectScene.vue index 2742d355a..11a3db8ad 100644 --- a/src/views/contestDataManage/contestTaskScoreManage/selectScene.vue +++ b/src/views/contestDataManage/contestTaskScoreManage/selectScene.vue @@ -43,23 +43,29 @@ export default { title: '名 称', prop: 'name' }, + { + title: '地图', + prop: 'mapName' + }, { title: '类 型', prop: 'type', type: 'tag', - columnValue: (row) => { return row.type === 1 ? '二维' : '三维'; } + columnValue: (row) => { return row.type === 'Local' ? '二维' : '三维'; } }, { title: '创建时间', prop: 'createTime', type: 'tag', - columnValue: (row) => { return row.modifyInfo.createTime; } + columnValue: (row) => { return row.modifyInfo.createTime; }, + tagType: (row) => { return ''; } }, { title: '修改时间', prop: 'updateTime', type: 'tag', - columnValue: (row) => { return row.modifyInfo.updateTime; } + columnValue: (row) => { return row.modifyInfo.updateTime; }, + tagType: (row) => { return ''; } }, { type: 'button',