From 185547d84110faeb341ca122a8e5c166a1f0681b Mon Sep 17 00:00:00 2001 From: shj <1790240199@qq.com> Date: 星期二, 12 四月 2022 09:51:23 +0800 Subject: [PATCH] Merge branch 'shf' of https://sinanoaq.cn:8888/r/ztqt into shf --- src/views/hiddenDangerManagement/index.vue | 28 +++++++++++++++++++++------- 1 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/views/hiddenDangerManagement/index.vue b/src/views/hiddenDangerManagement/index.vue index 9ad445e..6ef8e96 100644 --- a/src/views/hiddenDangerManagement/index.vue +++ b/src/views/hiddenDangerManagement/index.vue @@ -168,10 +168,10 @@ </el-col> </el-form-item> <el-form-item style="text-align: center; padding: 0 50px"> - <el-button type="primary" class="btns" icon="el-icon-search" + <el-button type="primary" class="btns" size="small" icon="el-icon-search" >查询</el-button > - <el-button type="primary" class="btns" icon="el-icon-upload2" + <el-button type="primary" class="btns" size="small" icon="el-icon-upload2" >导出excel</el-button > </el-form-item> @@ -214,12 +214,14 @@ class="btns" type="primary" size="small" + @click="fillRectification()" >填写整改</el-button > <el-button class="btns" type="primary" size="small" + @click="fillInspector()" >填写督查</el-button > <el-button class="btns" type="primary" icon="el-icon-plus" @click="jump" size="small" @@ -228,7 +230,7 @@ <el-button size="small" >批量删除</el-button > - + </el-col> </el-row> <el-table :data="tableData" style="width: 100%"> @@ -319,7 +321,7 @@ data() { return { form: {}, - radio1: "未完成", + radio1: "未整改", options: [ { value: "选项1", @@ -342,7 +344,9 @@ label: "北京烤鸭", }, ], - tableData: [], + tableData: [ + + ], pageSize: 10, recordTotal: 0, currentPage: 1, @@ -356,7 +360,17 @@ this.$router.push({ path:"/fillRectificationAdd" }) - } + }, + fillRectification(){ + this.$router.push({ + path:"/fillRectification" + }) + }, + fillInspector(){ + this.$router.push({ + path:"/fillInspector" + }) + }, } }; </script> @@ -381,7 +395,7 @@ } .title-center /deep/ .el-radio-button__inner{ border: none; - border-radius: 0px; + border-radius: 0px; } .title-center /deep/ .el-radio-button__orig-radio:checked+.el-radio-button__inner{ background-color: #034ea2;background-color: #034ea2; -- Gitblit v1.9.2