From 31980b06d50d530feb2c0f1db9daf24bd3b8797a Mon Sep 17 00:00:00 2001
From: Riku <risaku@163.com>
Date: 星期日, 15 六月 2025 22:50:16 +0800
Subject: [PATCH] 2025.6.15
---
src/components/inspection/TaskNode.vue | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/components/inspection/TaskNode.vue b/src/components/inspection/TaskNode.vue
index 4d5b161..4988c22 100644
--- a/src/components/inspection/TaskNode.vue
+++ b/src/components/inspection/TaskNode.vue
@@ -1,7 +1,10 @@
<template>
<div>
- <el-row justify="center">{{ title }}</el-row>
- <div class="border-r-small f-b">
+ <el-row justify="start">
+ <div>{{ title }}</div>
+ <el-text type="danger" size="small">{{ warning }}</el-text>
+ </el-row>
+ <div class="border-r-small font-base">
<div v-for="(item, i) in items" :key="title + i">
<slot :item="item" :index="i"></slot>
</div>
@@ -16,6 +19,7 @@
export default {
props: {
title: String,
+ warning: String,
count: Number,
items: Array
},
--
Gitblit v1.9.3