From ee17debc7eff4af0bbfc1f28a256f2a05993b0c5 Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期二, 16 四月 2024 17:19:36 +0800 Subject: [PATCH] feat:添加圆环 --- src/views/system/threshold/index.vue | 58 ++++++++++++++++++++++++++++++---------------------------- 1 files changed, 30 insertions(+), 28 deletions(-) diff --git a/src/views/system/threshold/index.vue b/src/views/system/threshold/index.vue index 5b536ca..2f3d7f1 100644 --- a/src/views/system/threshold/index.vue +++ b/src/views/system/threshold/index.vue @@ -1,18 +1,18 @@ <template> <div class="app-container"> - <el-row :gutter="10" class="mb8"> - <el-col :span="1.5"> - <el-button - type="primary" - plain - icon="el-icon-plus" - size="mini" - @click="handleAdd" - v-hasPermi="['ycl:threshold:add']" - >鏂板 - </el-button> - </el-col> - </el-row> +<!-- <el-row :gutter="10" class="mb8">--> +<!-- <el-col :span="1.5">--> +<!-- <el-button--> +<!-- type="primary"--> +<!-- plain--> +<!-- icon="el-icon-plus"--> +<!-- size="mini"--> +<!-- @click="handleAdd"--> +<!-- v-hasPermi="['ycl:threshold:add']"--> +<!-- >鏂板--> +<!-- </el-button>--> +<!-- </el-col>--> +<!-- </el-row>--> <el-table v-loading="loading" :data="thresholdList" @selection-change="handleSelectionChange"> <el-table-column type="selection" width="55" align="center"/> @@ -26,15 +26,17 @@ <el-table-column label="瓒呮椂澶╂暟" align="center" prop="timeout"/> <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"> - {{ item.label }}锛歿{ item.value2 }} + <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> @@ -48,14 +50,14 @@ v-hasPermi="['ycl:threshold:edit']" >淇敼 </el-button> - <el-button - size="mini" - type="text" - icon="el-icon-delete" - @click="handleDelete(scope.row)" - v-hasPermi="['ycl:threshold:remove']" - >鍒犻櫎 - </el-button> +<!-- <el-button--> +<!-- size="mini"--> +<!-- type="text"--> +<!-- icon="el-icon-delete"--> +<!-- @click="handleDelete(scope.row)"--> +<!-- v-hasPermi="['ycl:threshold:remove']"--> +<!-- >鍒犻櫎--> +<!-- </el-button>--> </template> </el-table-column> </el-table> @@ -334,7 +336,7 @@ } </script> <style> -.el-input-half-width { - width: calc(50% - 6px); /* 鍑忓幓涓�浜涢棿闅� */ +.el-input-half-width { + width: calc(50% - 6px); /* 鍑忓幓涓�浜涢棿闅� */ } -</style> \ No newline at end of file +</style> -- Gitblit v1.8.0