Browse Source

修复搜索无效的问题

xiaohaizhao 1 year ago
parent
commit
6f3892bb3a

+ 2 - 2
packageA/project/modules/contacts/quickly/index.js

@@ -74,13 +74,13 @@ Page({
         detail
     }) {
         this.setData({
-            'parems.content.where.condition': detail ? detail : ""
+            'content.where.condition': detail ? detail : ""
         });
         this.getList(true);
     },
     onClear() {
         this.setData({
-            'parems.content.where.condition': ""
+            'content.where.condition': ""
         });
         this.getList(true);
     },

+ 2 - 2
packageA/setclient/modules/contacts/quickly/index.js

@@ -78,13 +78,13 @@ Page({
         detail
     }) {
         this.setData({
-            'parems.content.where.condition': detail ? detail : ""
+            'content.where.condition': detail ? detail : ""
         });
         this.getList(true);
     },
     onClear() {
         this.setData({
-            'parems.content.where.condition': ""
+            'content.where.condition': ""
         });
         this.getList(true);
     },