From 756be572e470c4a2e2e971350a545b3e8d9c0180 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 12 七月 2024 17:17:07 +0800
Subject: [PATCH] 2024.7.12
---
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