| | |
| | | </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> |
| | |
| | | |
| | | 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 |
| | | }) |