From edd35a251b58b1fad17015deda92324f74458434 Mon Sep 17 00:00:00 2001
From: unknown <unknown@example.com>
Date: 星期三, 17 八月 2022 00:05:30 +0800
Subject: [PATCH] 台账模块、智能咨询模块

---
 pages/module_consult/consultsearch/consultsearch.js |   40 +++++++++++++++++++++++++++++++++++-----
 1 files changed, 35 insertions(+), 5 deletions(-)

diff --git a/pages/module_consult/consultsearch/consultsearch.js b/pages/module_consult/consultsearch/consultsearch.js
index 4504269..44a31a9 100644
--- a/pages/module_consult/consultsearch/consultsearch.js
+++ b/pages/module_consult/consultsearch/consultsearch.js
@@ -11,7 +11,7 @@
     placeholder: '鎼滅储',
     value: '',
 
-    histroy: [],
+    history: [],
 
     hotTopic: [],
   },
@@ -69,13 +69,29 @@
       },
     })
     
-    if (this.data.histroy.indexOf(this.data.value) == -1) {
-      this.data.histroy.unshift(this.data.value)
+    if (this.data.history.indexOf(this.data.value) == -1) {
+      let h = this.data.history
+      h.unshift(this.data.value)
+      if (h.length > 10) {
+        h = h.slice(0, 10)
+      }
+      this.setData({
+        history: h
+      })
       wx.setStorage({
-        data: JSON.stringify(this.data.histroy),
+        data: JSON.stringify(h),
         key: 'search_history',
       })
     }
+  },
+
+  selectHistory (e) {
+    var i = e.currentTarget.dataset.index
+    var kw = this.data.history[i]
+    this.setData({
+      value: kw
+    })
+    this.search()
   },
 
   /**
@@ -88,7 +104,7 @@
       success: (res) => {
         let h = JSON.parse(res.data)
         that.setData({
-          histroy: h
+          history: h
         })
       },
     })
@@ -107,4 +123,18 @@
       }
     })
   },
+
+  gotoDetail (e) {
+    var i = e.currentTarget.dataset.index
+    var fileId = this.data.hotTopic[i].mfGuid
+    wx.navigateTo({
+      url: '/pages/module_consult/consultdetail/consultdetail',
+      success: (res) => {
+        // 閫氳繃 eventChannel 鍚戣鎵撳紑椤甸潰浼犻�佹暟鎹�
+        res.eventChannel.emit('acceptDataFromOpenerPage', {
+          fileId: fileId
+        })
+      },
+    })
+  }
 })
\ No newline at end of file

--
Gitblit v1.9.3