Commit 5dfbad1c0b5ef7d57290c6d823a2aa102e609a16

Authored by 王强
1 parent aff307cf

搜索页面组件UI完成~

Showing 1 changed file with 13 additions and 0 deletions
src/pages/search/search.vue
@@ -348,6 +348,7 @@ @@ -348,6 +348,7 @@
348 348
349 /** 349 /**
350 * 进入店铺 350 * 进入店铺
  351 + * @param {object} item [数据对象]
351 */ 352 */
352 toShop(item) { 353 toShop(item) {
353 354
@@ -361,6 +362,7 @@ @@ -361,6 +362,7 @@
361 362
362 /** 363 /**
363 * 进入达人个人主页 364 * 进入达人个人主页
  365 + * @param {object} item [数据对象]
364 */ 366 */
365 toDarenProfile(item) { 367 toDarenProfile(item) {
366 368
@@ -374,6 +376,7 @@ @@ -374,6 +376,7 @@
374 376
375 /** 377 /**
376 * 关注/取消关注达人 378 * 关注/取消关注达人
  379 + * @param {object} item [数据对象]
377 */ 380 */
378 fansShop(item) { 381 fansShop(item) {
379 382
@@ -385,10 +388,20 @@ @@ -385,10 +388,20 @@
385 388
386 }, 389 },
387 390
  391 + /**
  392 + * 进入美食
  393 + * @param {object} item [数据对象]
  394 + */
  395 + toFood(item) {
  396 +
388 397
  398 + console.log("toFood", item);
  399 +
389 400
390 401
391 402
  403 + },
  404 +
392 405
393 406
394 407