From bdd5c718e7821766aca256f6fddcab98234fbb57 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期五, 12 四月 2024 16:25:11 +0800
Subject: [PATCH] 报备时间必填

---
 src/views/system/threshold/index.vue |   23 +++++++++++++++++++----
 1 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/src/views/system/threshold/index.vue b/src/views/system/threshold/index.vue
index a334492..8b6e629 100644
--- a/src/views/system/threshold/index.vue
+++ b/src/views/system/threshold/index.vue
@@ -24,10 +24,19 @@
         </template>
       </el-table-column>
       <el-table-column label="瓒呮椂澶╂暟" align="center" prop="timeout"/>
-      <el-table-column label="鎸囨爣" align="center" prop="indicator">
+      <el-table-column label="宸ュ崟闃堝��" align="center" prop="indicator">
         <template slot-scope="scope">
-          <div v-for="item in JSON.parse(scope.row.indicator)" :key="item">
-            {{ item.label }}锛歿{ item.value }}
+          <div v-for="item in JSON.parse(scope.row.indicator)" :key="item" style="display: flex;flex-direction: row">
+            <div style="width: 120px;text-align: right">{{ item.label }}</div>
+            <div style="width: 60px;text-align: right">{{ item.value}}</div>
+          </div>
+        </template>
+      </el-table-column>
+      <el-table-column label="涓嬪彂闃堝��" align="center" prop="indicator">
+        <template slot-scope="scope">
+          <div v-for="item in JSON.parse(scope.row.indicator)" :key="item" style="display: flex;flex-direction: row">
+            <div style="width: 120px;text-align: right">{{ item.label }}</div>
+            <div style="width: 60px;text-align: right">{{ item.value2}}</div>
           </div>
         </template>
       </el-table-column>
@@ -75,7 +84,8 @@
           <el-input type="number" min="0" max="1000" v-model="form.timeout" placeholder="璇疯緭鍏ヨ秴鏃跺ぉ鏁�"/>
         </el-form-item>
         <el-form-item :label="indicator.label" prop="indexOneValue" v-for="indicator in indicators" label-width="150px">
-          <el-input class="el-input-width" v-model="indicator.value" :placeholder="'璇疯緭鍏�' + indicator.label"/>
+          <el-input class="el-input-half-width" v-model="indicator.value" placeholder="宸ュ崟闃堝��"/>
+          <el-input style="float: right;" class="el-input-half-width" v-model="indicator.value2" placeholder="涓嬪彂闃堝��"/>
         </el-form-item>
       </el-form>
       <div slot="footer" class="dialog-footer">
@@ -325,3 +335,8 @@
   }
 }
 </script>
+<style>
+.el-input-half-width {
+  width: calc(50% - 6px); /* 鍑忓幓涓�浜涢棿闅� */
+}
+</style>

--
Gitblit v1.8.0