From bbd56115ec1a65833eca6fa091f1c837f6b8e9dd Mon Sep 17 00:00:00 2001
From: 陈泽平 <chenzeping>
Date: 星期二, 25 五月 2021 17:15:01 +0800
Subject: [PATCH] 企业应急事件查询相关修改

---
 src/components/base-page/enterprise-emergency/PipelineFile.vue |   39 +++++++++++++++++++++++++++++++++++----
 1 files changed, 35 insertions(+), 4 deletions(-)

diff --git a/src/components/base-page/enterprise-emergency/PipelineFile.vue b/src/components/base-page/enterprise-emergency/PipelineFile.vue
index 08998d1..6b81d24 100644
--- a/src/components/base-page/enterprise-emergency/PipelineFile.vue
+++ b/src/components/base-page/enterprise-emergency/PipelineFile.vue
@@ -1,20 +1,47 @@
 <template>
     <div class="pipeline-file map-background" v-show="pipelineFile">
-        <span>绠$嚎鏂囦欢閫夋嫨</span>
+        <el-row>
+            <el-form ref="form" :model="form" label-width="80px">
+                <el-col :span="12">
+                    <el-form-item label="绠$嚎鍚嶇О">
+                        <el-input v-model="form.pipeName">
+                            <el-button style="padding-right:10px;" slot="suffix" type="text">
+                                <img src="../../../../public/assets/images/map/emergency/search.png" alt="">
+                            </el-button>
+                        </el-input>
+                    </el-form-item>
+                </el-col>
+                <el-col :span="12">
+                    <el-form-item label="绠℃缂栫爜">
+                        <el-input v-model="form.pipeCode">
+                            <el-button style="padding-right:10px;" slot="suffix" type="text">
+                                <img src="../../../../public/assets/images/map/emergency/search.png" alt="">
+                            </el-button>
+                        </el-input>
+                    </el-form-item>
+                </el-col>
+            </el-form>
+        </el-row>
     </div>
 </template>
 
 <script>
 import eventBus from '../../../eventBus'
+
 export default {
   name: 'PipelineFile',
   data () {
     return {
-      pipelineFile: false
+      pipelineFile: false,
+      form: {
+        pipeName: '',
+        pipeCode: ''
+      }
     }
   },
   mounted () {
     eventBus.$on('pipelineFile-choose', (obj) => {
+      // console.log(obj)
       this.pipelineFile = obj
     })
   }
@@ -23,7 +50,11 @@
 
 <style lang="less" scoped>
     .pipeline-file {
-        min-width: 1.94532rem;
-        max-height: 2.343213rem;
+        min-width: 2.94532rem;
     }
+
+    /*/deep/ .el-input {*/
+    /*    width: 65%;*/
+    /*    margin: 0 auto;*/
+    /*}*/
 </style>

--
Gitblit v1.8.0