From 624e812b40ac87bf8d7a17b83b4a3bc3bbd901fb Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期四, 03 八月 2023 18:38:58 +0800
Subject: [PATCH] 增加客户服务单(删除工单管理、消费服务单)和客户管理模块详情页

---
 src/components/makepager/SearchCommonView.vue |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/src/components/makepager/SearchCommonView.vue b/src/components/makepager/SearchCommonView.vue
index 768342a..3ba9a99 100644
--- a/src/components/makepager/SearchCommonView.vue
+++ b/src/components/makepager/SearchCommonView.vue
@@ -7,7 +7,7 @@
           <el-option v-for="item in queryClassOptions" :key="item.value" :label="item.label" :value="item.value">
           </el-option>
         </el-select>
-        <div class="query-class-btn">
+        <div class="query-class-btn" @click="queryClassClick">
           <i class="el-icon-setting"></i>
         </div>
       </div>
@@ -20,7 +20,7 @@
           <i slot="suffix" class="el-icon-search" style="cursor: pointer" @click="searchClick"></i>
         </el-input>
       </div>
-      <div class="other-search">
+      <!-- <div class="other-search">
         <div class="other-search-high" @click="highSearchClick">
           <div class="high-icon"><i class="el-icon-postcard"></i></div>
           <div>楂樼骇鏌ユ壘</div>
@@ -33,7 +33,7 @@
           <div class="high-icon"><i class="el-icon-discount"></i></div>
           <div>鏍囩鏌ユ壘</div>
         </div>
-      </div>
+      </div> -->
     </div>
     <div v-if="isTileSearch" class="search-bottom">
       <el-table :data="tileSearchData" style="width: 100%">
@@ -83,12 +83,17 @@
         </div>
       </div>
     </div>
+    <!-- 鏌ヨ鍒嗙被寮圭獥 -->
+    <QueryClassSettingDialog v-if="queryClassSetConfig.visible" :editCommonConfig="queryClassSetConfig" />
   </div>
 </template>
 
 <script>
+import QueryClassSettingDialog from "@/views/other/commonDialog/QueryClassSettingDialog"
+
 export default {
   name: "SearchCommonView",
+  components: { QueryClassSettingDialog },
   props: {
     queryClass: {
       type: String,
@@ -113,6 +118,10 @@
   },
   data() {
     return {
+      queryClassSetConfig: {
+        visible: false,
+        infomation: {}
+      },
       queryClassValue: this.queryClass,
       searchInput: "",
       searchSelValue: this.searchSel,
@@ -144,6 +153,11 @@
     }
   },
   methods: {
+    queryClassClick() {
+      this.queryClassSetConfig = {
+        visible: true
+      }
+    },
     searchClick() {
       console.log("sssssssssss")
     },
@@ -195,6 +209,7 @@
         font-size: 16px;
         margin-left: 10px;
         color: #bebebe;
+        cursor: pointer;
       }
     }
     .search {
@@ -212,6 +227,7 @@
       margin-left: 20px;
       .other-search-high {
         display: flex;
+        cursor: pointer;
         .high-icon {
           font-size: 18px;
         }
@@ -219,6 +235,7 @@
       .other-search-tile,
       .other-search-label {
         display: flex;
+        cursor: pointer;
         margin-left: 20px;
         .high-icon {
           font-size: 18px;

--
Gitblit v1.8.0