search.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. // pages/search/search.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '搜索', //导航栏 中间的标题,
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. news: [], //历史搜索
  15. dingyues: [], //团长列表
  16. show: false,
  17. isShowSearchResult: false,
  18. keywords: '', //搜索关键字
  19. },
  20. /**
  21. * 生命周期函数--监听页面加载
  22. */
  23. onLoad: function (options) {
  24. let that = this;
  25. // 获取
  26. wx.showLoading({
  27. title: '加载中',
  28. mask: true
  29. })
  30. wx.request({
  31. url: api.Head_list,
  32. header: {
  33. 'Authorization': wx.getStorageSync('token')
  34. },
  35. success(res) {
  36. console.log(res);
  37. if (res.data.code === 1) {
  38. that.setData({
  39. dingyues: res.data.data
  40. })
  41. } else {
  42. wx.showToast({
  43. title: res.data.msg,
  44. mask: true,
  45. icon: 'none'
  46. })
  47. }
  48. },
  49. fail(err) {
  50. wx.showToast({
  51. title: '发起网络请求失败',
  52. icon: 'none',
  53. mask: true
  54. })
  55. },
  56. complete() {
  57. wx.hideLoading()
  58. }
  59. })
  60. },
  61. delhis() {
  62. this.setData({
  63. show: true
  64. })
  65. },
  66. onClose() {
  67. this.setData({
  68. show: false
  69. })
  70. },
  71. /**
  72. * 生命周期函数--监听页面初次渲染完成
  73. */
  74. onReady: function () {
  75. },
  76. /**
  77. * 生命周期函数--监听页面显示
  78. */
  79. onShow: function () {
  80. this.getSearchList()
  81. },
  82. /**
  83. * 生命周期函数--监听页面隐藏
  84. */
  85. onHide: function () {
  86. },
  87. /**
  88. * 生命周期函数--监听页面卸载
  89. */
  90. onUnload: function () {
  91. },
  92. /**
  93. * 页面相关事件处理函数--监听用户下拉动作
  94. */
  95. onPullDownRefresh: function () {
  96. },
  97. /**
  98. * 页面上拉触底事件的处理函数
  99. */
  100. onReachBottom: function () {
  101. },
  102. /**
  103. * 用户点击右上角分享
  104. */
  105. onShareAppMessage: function () {
  106. },
  107. // 获取历史搜索记录
  108. getSearchList() {
  109. let that = this;
  110. // 获取用户历史搜索
  111. wx.showLoading({
  112. title: '加载中',
  113. mask: true
  114. })
  115. wx.request({
  116. url: api.Search_list,
  117. header: {
  118. 'Authorization': wx.getStorageSync('token')
  119. },
  120. success(res) {
  121. console.log(res);
  122. if (res.data.code === 1) {
  123. that.setData({
  124. news: res.data.data
  125. })
  126. } else {
  127. wx.showToast({
  128. title: res.data.msg,
  129. mask: true,
  130. icon: 'none'
  131. })
  132. }
  133. },
  134. fail(err) {
  135. wx.showToast({
  136. title: '发起网络请求失败',
  137. icon: 'none',
  138. mask: true
  139. })
  140. },
  141. complete() {
  142. wx.hideLoading()
  143. }
  144. })
  145. },
  146. inputKeyWords(e) {
  147. if (e.detail.value === '') {
  148. this.setData({
  149. keywords: e.detail.value,
  150. isShowSearchResult: false
  151. })
  152. let that = this;
  153. // 获取
  154. wx.showLoading({
  155. title: '加载中',
  156. mask: true
  157. })
  158. wx.request({
  159. url: api.Head_list,
  160. header: {
  161. 'Authorization': wx.getStorageSync('token')
  162. },
  163. success(res) {
  164. console.log(res);
  165. if (res.data.code === 1) {
  166. that.setData({
  167. dingyues: res.data.data
  168. })
  169. } else {
  170. wx.showToast({
  171. title: res.data.msg,
  172. mask: true,
  173. icon: 'none'
  174. })
  175. }
  176. },
  177. fail(err) {
  178. wx.showToast({
  179. title: '发起网络请求失败',
  180. icon: 'none',
  181. mask: true
  182. })
  183. },
  184. complete() {
  185. wx.hideLoading()
  186. }
  187. })
  188. that.getSearchList()
  189. } else {
  190. this.setData({
  191. keywords: e.detail.value
  192. })
  193. }
  194. },
  195. // 搜索
  196. search() {
  197. let that = this;
  198. if (that.data.keywords !== '') {
  199. // console.log('搜索:' + this.data.keywords);
  200. // 获取订阅团长列表
  201. wx.showLoading({
  202. title: '加载中',
  203. mask: true
  204. })
  205. wx.request({
  206. url: api.Head_list,
  207. header: {
  208. 'Authorization': wx.getStorageSync('token')
  209. },
  210. data: {
  211. name: that.data.keywords
  212. },
  213. success(res) {
  214. console.log(res);
  215. if (res.data.code === 1) {
  216. that.setData({
  217. dingyues: res.data.data,
  218. isShowSearchResult: true
  219. })
  220. } else {
  221. wx.showToast({
  222. title: res.data.msg,
  223. mask: true,
  224. icon: 'none'
  225. })
  226. }
  227. },
  228. fail(err) {
  229. wx.showToast({
  230. title: '发起网络请求失败',
  231. icon: 'none',
  232. mask: true
  233. })
  234. },
  235. complete() {
  236. wx.hideLoading()
  237. }
  238. })
  239. }
  240. },
  241. // 点击历史搜索
  242. clickHistoryItem(e) {
  243. this.setData({
  244. keywords: e.currentTarget.dataset.name
  245. })
  246. },
  247. // 删除所有历史搜索记录
  248. confirmDelete() {
  249. let that = this;
  250. let arr = [];
  251. if(that.data.news.length == 0){
  252. wx.showToast({
  253. title: '暂无记录,无需删除',
  254. icon: 'none',
  255. mask: true
  256. })
  257. return
  258. }
  259. for (let i = 0; i < that.data.news.length; i++) {
  260. arr.push(that.data.news[i].id)
  261. }
  262. wx.showLoading({
  263. title: '删除中',
  264. mask: true
  265. })
  266. wx.request({
  267. url: api.Search_delete,
  268. header: {
  269. 'Authorization': wx.getStorageSync('token')
  270. },
  271. method: 'POST',
  272. data: {
  273. id: arr
  274. },
  275. success(res) {
  276. console.log(res);
  277. wx.hideLoading()
  278. if (res.data.code === 1) {
  279. wx.showToast({
  280. title: '删除成功',
  281. mask: true,
  282. icon: 'none',
  283. success() {
  284. that.setData({
  285. show: false
  286. })
  287. setTimeout(()=>{
  288. that.getSearchList()
  289. }, 1500)
  290. }
  291. })
  292. } else {
  293. wx.showToast({
  294. title: res.data.msg,
  295. mask: true,
  296. icon: 'none'
  297. })
  298. }
  299. },
  300. fail(err) {
  301. wx.hideLoading()
  302. wx.showToast({
  303. title: '发起网络请求失败',
  304. icon: 'none',
  305. mask: true
  306. })
  307. },
  308. complete() {
  309. // wx.hideLoading()
  310. }
  311. })
  312. },
  313. // 团长跳转
  314. navToTuanZhang(e) {
  315. let url = e.currentTarget.dataset.url;
  316. let id = e.currentTarget.dataset.id;
  317. wx.navigateTo({
  318. url: url + '&id=' + id
  319. })
  320. },
  321. })