From 2547159bbd781c8e1a41ecc939385396c85f9766 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期一, 09 六月 2025 23:35:59 +0800 Subject: [PATCH] 2025.6.9(功能编写中) --- src/views/inspection/problem/component/ProblemTable.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/inspection/problem/component/ProblemTable.vue b/src/views/inspection/problem/component/ProblemTable.vue index f529c6e..e85bda7 100644 --- a/src/views/inspection/problem/component/ProblemTable.vue +++ b/src/views/inspection/problem/component/ProblemTable.vue @@ -29,7 +29,7 @@ </el-table-column> </el-table> <div v-if="showMoreBtn" class="btn-more font-small"> - <el-link type="primary" @click="showMore = !showMore"> + <el-link type="success" @click="showMore = !showMore"> {{ showMore ? '鏀惰捣鏇村' : '鏌ョ湅鏇村' }} </el-link> </div> @@ -61,9 +61,9 @@ const tableData = computed(() => { const l = props.data.map((value) => { - const time = value.subtask.executionendtime - ? value.subtask.executionendtime - : value.subtask.executionstarttime + const time = value.subtask.executionstarttime + ? value.subtask.executionstarttime + : value.subtask.executionendtime value.updateTime = time return value }) -- Gitblit v1.9.3