searchStart: function () { let _this = this; if (_this.searchText == '') {//搜索关键词为空 uni.showToast({//提示信息 title: '请输入关键字', icon: 'none', duration: 1000 }); } else { uni.getStorage({//从缓存中取搜索历史记录的数组 key: 'search_cache', success(res) {//获...