From 725f07f7b46edef47c656bad40d1b92c30a0570c Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期四, 11 四月 2024 10:45:15 +0800
Subject: [PATCH] 工单报备文件

---
 src/views/system/threshold/index.vue |   42 +++++++++++++++---------------------------
 1 files changed, 15 insertions(+), 27 deletions(-)

diff --git a/src/views/system/threshold/index.vue b/src/views/system/threshold/index.vue
index 9144c2b..5b536ca 100644
--- a/src/views/system/threshold/index.vue
+++ b/src/views/system/threshold/index.vue
@@ -12,31 +12,6 @@
         >鏂板
         </el-button>
       </el-col>
-      <el-col :span="1.5">
-        <el-button
-          type="success"
-          plain
-          icon="el-icon-edit"
-          size="mini"
-          :disabled="single"
-          @click="handleUpdate"
-          v-hasPermi="['ycl:threshold:edit']"
-        >淇敼
-        </el-button>
-      </el-col>
-      <el-col :span="1.5">
-        <el-button
-          type="danger"
-          plain
-          icon="el-icon-delete"
-          size="mini"
-          :disabled="multiple"
-          @click="handleDelete"
-          v-hasPermi="['ycl:threshold:remove']"
-        >鍒犻櫎
-        </el-button>
-      </el-col>
-      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
     </el-row>
 
     <el-table v-loading="loading" :data="thresholdList" @selection-change="handleSelectionChange">
@@ -49,10 +24,17 @@
         </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>
+        </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">
+            {{ item.label }}锛歿{ item.value2 }}
           </div>
         </template>
       </el-table-column>
@@ -100,7 +82,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">
@@ -350,3 +333,8 @@
   }
 }
 </script>
+<style>
+.el-input-half-width {  
+  width: calc(50% - 6px); /* 鍑忓幓涓�浜涢棿闅� */  
+}
+</style>
\ No newline at end of file

--
Gitblit v1.8.0