搜索完成

This commit is contained in:
2020-08-09 18:29:36 +08:00
parent d00b4a75ac
commit b9b9a8e829
7 changed files with 304 additions and 75 deletions

View File

@@ -294,8 +294,8 @@ export default {
})
},
// 搜索发现列表
searchwordlist() {
return vm.$u.post('ShopSearch/searchwordlist')
searchwordlist({type}) {
return vm.$u.post('ShopSearch/searchWordList',{type})
},
// 提交试穿订单
saveGoodsTry({ member_name, member_mobile, area_info, address_detail, goods_id, num, store_id, appointment_time }) {
@@ -332,6 +332,13 @@ export default {
fav_id: fid,
type: type
})
},
//店铺列表
storeList({ page, name_search }) {
return vm.$u.post('shop/storeList',{
page,
name_search: name_search
})
}
}
}