From 13272e92a6c98daad06aa166a6674bf4dac7cc4b Mon Sep 17 00:00:00 2001 From: hcong <1050828145@qq.com> Date: 星期一, 21 十月 2024 11:06:55 +0800 Subject: [PATCH] 问题审核1021 --- src/components/list-item/ItemSubTask.vue | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/components/list-item/ItemSubTask.vue b/src/components/list-item/ItemSubTask.vue index 52b43f0..58abf2b 100644 --- a/src/components/list-item/ItemSubTask.vue +++ b/src/components/list-item/ItemSubTask.vue @@ -1,16 +1,20 @@ <template> <div class="wrapper"> <div> - <el-text truncated>{{ item.name }}</el-text> + <el-text truncated class="w-250px" size="large">{{ item.name }}</el-text> </div> <div> - <el-space fill> - <el-text truncated class="w-250px" size="small">{{ item.scenseaddress }}</el-text> - <el-text truncated class="w-250px" size="small">{{ - $fm.formatYMDH(item.planstarttime) - }}</el-text> - <el-text truncated class="w-250px" size="small">{{ item.executorrealtimes }}</el-text> - </el-space> + <el-text truncated class="w-250px" size="small">{{ item.scenseaddress }}</el-text> + </div> + <div> + <el-text truncated size="small">{{ + $fm.formatYMDH(item.planstarttime) + }}</el-text> + </div> + <div> + <el-text truncated class="w-250px" size="small">{{ + item.executorrealtimes + }}</el-text> </div> <el-row justify="end" style="margin-top: 4px"> <slot :item="item"></slot> -- Gitblit v1.9.3