fine-food.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <view class="brand-page-container">
  3. <view class="top-container">
  4. <view class="search-header">
  5. <BeeBack>
  6. <view class="header-title">
  7. <BeeIcon :size="24" color="#fff" name="arrowleft"></BeeIcon>
  8. <h1>美食</h1>
  9. </view>
  10. </BeeBack>
  11. <SearchBar
  12. prevent background="#fff" style="flex: 1;margin-right: 15upx;"
  13. @click="$jump('/pages_category_page1/search/index/index')"
  14. ></SearchBar>
  15. <view class="control">
  16. <view class="item">
  17. <BeeIcon :size="24" :src="require('../../../static/images/icon/location.png')"></BeeIcon>
  18. <text>位置</text>
  19. </view>
  20. <view class="item">
  21. <BeeIcon :size="24" :src="require('../../../static/images/icon/dingdan.png')"></BeeIcon>
  22. <text>订单</text>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="hot-search">
  27. 热搜:<text>汉堡</text> <text>薯条</text> <text>奶茶</text>
  28. <text>鸡翅</text> <text>鸡腿</text>
  29. </view>
  30. <view class="menus-wrapper">
  31. <BeeMenus
  32. :data="menusData"
  33. @click="(e) => $jump(`/pages/store/fine-food/food-nearby/food-nearby?name=${e.storeName}&id=${e.id}`)"
  34. >
  35. </BeeMenus>
  36. </view>
  37. <view class="menus-wrapper">
  38. <TimeLimitedSeckill></TimeLimitedSeckill>
  39. </view>
  40. <view class="menus-wrapper">
  41. <view class="navs">
  42. <view class="nav-item active">餐厅</view>
  43. <view class="nav-item">优惠套餐</view>
  44. <view class="nav-item">单人餐</view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="brand">
  49. <BeeStoreFilter
  50. :is-show-filter="false" style="margin: 0;padding: 24upx 28upx 20upx;"
  51. @select-distance="handleSelectDistance"
  52. ></BeeStoreFilter>
  53. <view class="brand-list-wrapper">
  54. <BigNameSpecials></BigNameSpecials>
  55. <view v-if="$data._list && $data._list.length">
  56. <BeeBrandPane v-for="item in $data._list" :key="item.id" :is-positioning="false" :brand-info="item">
  57. </BeeBrandPane>
  58. </view>
  59. <view style="padding-bottom: 45upx;">
  60. <LoadMore
  61. :status="!$data._isEmpty && !$data._list.length
  62. ? 'loading' : !$data._isEmpty && $data._list.length && ($data._list.length >= $data._listTotal) ? 'no-more' : ''"
  63. >
  64. </LoadMore>
  65. <tui-no-data v-if="$data._isEmpty" :fixed="false" style="margin-top: 60upx;">暂无数据</tui-no-data>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. import loadData from '../../../mixins/loadData'
  73. import { menusData } from './data'
  74. import { getHomeBrandListApi, getSubMenuByPidApi } from '../../../api/user'
  75. import TimeLimitedSeckill from './cpns/TimeLimitedSeckill.vue'
  76. import BigNameSpecials from './cpns/BigNameSpecials.vue'
  77. export default {
  78. name: 'FineFood',
  79. components: {
  80. TimeLimitedSeckill,
  81. BigNameSpecials
  82. },
  83. mixins: [
  84. loadData({
  85. api: getHomeBrandListApi,
  86. mapKey: {
  87. list: 'list',
  88. listTotal: 'total',
  89. pageSize: 'pageSize'
  90. },
  91. dataFn(data) {
  92. const ignoreBrandList = ['佛山市顺德区修江缘美食餐饮店', '测试门店呀']
  93. return data.filter((item) => !ignoreBrandList.includes(item.name))
  94. }
  95. })
  96. ],
  97. data() {
  98. return {
  99. menusData: Object.freeze(menusData),
  100. currentNavs: 0,
  101. queryParam: {
  102. dressing: '',
  103. distance: ''
  104. }
  105. }
  106. },
  107. onLoad(options) {
  108. this.queryParam.dressing = options.id
  109. this.getBrandList()
  110. this.getMenus(options.id)
  111. },
  112. onPullDownRefresh() {
  113. this.$data.page = 1
  114. this._loadData()
  115. uni.stopPullDownRefresh()
  116. },
  117. methods: {
  118. getBrandList() {
  119. this.$data._query = {
  120. ...this.$data._query,
  121. ...this.queryParam,
  122. areaId: this.$store.state.location.locationInfo.adcode,
  123. longitude: this.$store.state.location.locationInfo.streetNumber.location.split(',')[0],
  124. latitude: this.$store.state.location.locationInfo.streetNumber.location.split(',')[1]
  125. }
  126. this._loadData()
  127. },
  128. // 获取menus
  129. async getMenus(id) {
  130. const { data } = await getSubMenuByPidApi({
  131. dressing: id
  132. })
  133. this.menusData = data
  134. },
  135. handleSelectDistance(e) {
  136. this.queryParam.distance = e
  137. this.getBrandList()
  138. }
  139. }
  140. }
  141. </script>
  142. <style lang="less" scoped>
  143. .brand-page-container {
  144. width: 100vw;
  145. min-height: 100vh;
  146. background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 3%, #f6f6f6 8%);
  147. .top-container {
  148. width: 100%;
  149. min-height: 826upx;
  150. background: linear-gradient(0deg,
  151. rgba(246, 246, 246, 0.87) -3%,
  152. rgba(246, 246, 246, 0.87) 8%,
  153. rgba(246, 246, 246, 0.87) 14%,
  154. rgba(253, 164, 164, 0.87) 59%);
  155. .search-header {
  156. display: flex;
  157. align-items: center;
  158. justify-content: space-between;
  159. padding: 44upx 22upx 0;
  160. box-sizing: border-box;
  161. .header-title {
  162. display: flex;
  163. align-items: center;
  164. }
  165. h1 {
  166. font-size: 28upx;
  167. color: #fff;
  168. font-weight: normal;
  169. margin-right: 10upx;
  170. }
  171. .control {
  172. display: flex;
  173. align-items: center;
  174. .item {
  175. display: flex;
  176. align-items: center;
  177. justify-content: center;
  178. flex-direction: column;
  179. color: #fff;
  180. font-size: 24upx;
  181. margin-left: 8upx;
  182. &:nth-child(1) {
  183. margin-left: 0;
  184. }
  185. }
  186. }
  187. }
  188. .hot-search {
  189. padding: 0 22upx;
  190. box-sizing: border-box;
  191. padding-left: 32upx;
  192. color: #fff;
  193. margin: 20upx 0 16upx 0;
  194. text {
  195. margin-right: 40upx;
  196. color: #fff;
  197. }
  198. }
  199. .menus-wrapper {
  200. padding: 0 20upx 22upx;
  201. box-sizing: border-box;
  202. /deep/ .menus-container {
  203. margin-top: 0;
  204. }
  205. }
  206. .navs {
  207. display: flex;
  208. align-items: center;
  209. .nav-item {
  210. margin-right: 56upx;
  211. color: #3d3d3d;
  212. &.active {
  213. color: #fa5151;
  214. font-weight: 500;
  215. }
  216. }
  217. }
  218. }
  219. .brand-list-wrapper {
  220. padding: 0 20upx;
  221. box-sizing: border-box;
  222. }
  223. }
  224. </style>