index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <template>
  2. <page ref="pageRef" :nav="false">
  3. <view class="pagae-nav" :style="{ paddingTop: statusBarHeight + 'px' }">
  4. <view
  5. class="flex-align relative flex-align-center"
  6. style="height: 72rpx; padding-left: 14px"
  7. >
  8. <image :src="resource.sell_title" style="width: 300rpx; height: 42rpx" />
  9. <image :src="resource.icon_back" class="back translateY" @click.stop="back" />
  10. </view>
  11. </view>
  12. <view style="height: 72rpx"></view>
  13. <view class="flex-align" style="padding: 11px 14px 10px 14px">
  14. <view class="flex1 input-wrapper flex-align paddingL10">
  15. <input
  16. v-model.trim="searchVal"
  17. placeholder="输入搜索内容"
  18. class="color-white flex1"
  19. />
  20. <view class="search-wrapper flex-align-center" @click="search">
  21. <image :src="resource.weal_search" style="width: 32rpx; height: 32rpx" />
  22. </view>
  23. </view>
  24. <!-- <image :src="resource.sell_btn_record" style="width: 176rpx;height:84rpx" @click="showRecord" /> -->
  25. </view>
  26. <view class="flex-align-between marginX26 paddingT5 paddingB5">
  27. <view class="flex-column-align-center" @click="showRecord()">
  28. <image :src="resource.sell_fun_1" style="width: 36rpx; height: 36rpx" />
  29. <text class="font4 color-white paddingT10">我发布的</text>
  30. </view>
  31. <view class="flex-column-align-center" @click="showRecord(1)">
  32. <image :src="resource.sell_fun_2" style="width: 36rpx; height: 36rpx" />
  33. <text class="font4 color-white paddingT10">我出价的</text>
  34. </view>
  35. <view class="flex-column-align-center" @click="showRecord(2)">
  36. <image :src="resource.sell_fun_3" style="width: 36rpx; height: 36rpx" />
  37. <text class="font4 color-white paddingT10">我卖出的</text>
  38. </view>
  39. <view class="flex-column-align-center" @click="showRecord(3)">
  40. <image :src="resource.sell_fun_4" style="width: 36rpx; height: 36rpx" />
  41. <text class="font4 color-white paddingT10">我买到的</text>
  42. </view>
  43. </view>
  44. <!-- <tabbar2 custom-class="marginX14" :tabs="tabs" @change="clickTab" /> -->
  45. <view class="flex-wrap" style="margin: 12px 8px">
  46. <view style="padding: 0 3px 10px" v-for="item in tableData" :key="item.id">
  47. <view
  48. class="cell relative"
  49. :style="{ width: size.width + 'px' }"
  50. @click="showDetail(item)"
  51. >
  52. <image :src="resource.sell_bg_cell" mode="scaleToFill" class="bg" />
  53. <image
  54. :src="item.cover"
  55. :style="{ width: '100%', height: size.imageHeight + 'px' }"
  56. />
  57. <view style="padding: 8px">
  58. <view class="font2 line-ellipsis" style="color: #ccc">{{ item.name }}</view>
  59. <view class="color-white paddingT4">
  60. <text class="font0">¥</text>
  61. <text class="font4 bold">{{ item.price }}</text>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <empty v-if="isEmpty" :top="180" />
  68. </page>
  69. </template>
  70. <script>
  71. import resource from '@/utils/resource'
  72. import tabbar2 from '@/components/tabbar2'
  73. import empty from '@/components/empty'
  74. import pageMixin from '@/mixin/page'
  75. const Tabs = [
  76. { title: '全部', value: '' },
  77. { title: '0~9.9', priceMax: '9.9', value: '0~9.9' },
  78. { title: '9.9~19.9', priceMin: '10', priceMax: '19.9', value: '9.9~19.9' },
  79. { title: '19.9~29.9', priceMin: '20', priceMax: '29.9', value: '19.9~29.9' },
  80. { title: '大于29.9', priceMin: '30', value: '大于29.9' }
  81. ]
  82. export default {
  83. mixins: [pageMixin],
  84. components: { tabbar2, empty },
  85. data() {
  86. return {
  87. searchVal: '',
  88. resource,
  89. tabs: Tabs,
  90. tab: Tabs[0],
  91. isRefreshClear: false
  92. }
  93. },
  94. computed: {
  95. statusBarHeight() {
  96. if (this.$store.state.systemInfo) {
  97. return this.$store.state.systemInfo.statusBarHeight
  98. }
  99. return 20
  100. },
  101. size() {
  102. let width = Math.floor((this.$store.state.systemInfo.screenWidth - 36) / 3)
  103. return { width, imageHeight: (141 / 112) * width }
  104. }
  105. },
  106. onLoad() {
  107. this.$event.on(this.$event.key.SELL_REFRESH, this.refresh)
  108. this.$event.on(this.$event.key.APP_SHOW, this.refresh)
  109. },
  110. onUnload() {
  111. this.$event.off(this.$event.key.SELL_REFRESH)
  112. this.$event.off(this.$event.key.APP_SHOW)
  113. },
  114. onTabItemTap() {
  115. this.refresh()
  116. },
  117. mounted() {
  118. this.refresh()
  119. },
  120. onPullDownRefresh() {
  121. this.refresh()
  122. },
  123. onReachBottom() {
  124. this.loadMore()
  125. },
  126. onShareAppMessage(res) {
  127. return {
  128. title: '燚火漫域 次元聚集地,潮玩新势力'
  129. }
  130. },
  131. onShareTimeline() {
  132. return {
  133. title: '燚火漫域 次元聚集地,潮玩新势力'
  134. }
  135. },
  136. methods: {
  137. back() {
  138. this.$router.back()
  139. },
  140. search() {
  141. this.refresh(true)
  142. },
  143. clickTab(item) {
  144. this.tab = item
  145. this.refresh(true)
  146. },
  147. async loadData(loading) {
  148. const res = await this.$service.sell.list(
  149. this.pageNum,
  150. this.pageSize,
  151. this.tab.priceMin,
  152. this.tab.priceMax,
  153. this.searchVal,
  154. loading
  155. )
  156. return res
  157. },
  158. showRecord(active = 0) {
  159. if (!this.$common.checkLogin()) return
  160. this.$router.push('sell_record', { active })
  161. },
  162. async showDetail(item) {
  163. if (!this.$common.checkLogin()) return
  164. this.$router.push('sell_detail', { id: item.id })
  165. }
  166. }
  167. }
  168. </script>
  169. <style lang="scss">
  170. </style>
  171. <style lang="scss" scoped>
  172. .bg {
  173. position: fixed;
  174. z-index: -1;
  175. left: 0;
  176. right: 0;
  177. top: 0;
  178. width: 100%;
  179. height: 100%;
  180. opacity: 0.3;
  181. }
  182. .pagae-nav {
  183. height: 72rpx;
  184. .back {
  185. position: absolute;
  186. left: 28rpx;
  187. width: 48rpx;
  188. height: 48rpx;
  189. z-index: 1800;
  190. }
  191. }
  192. .input-wrapper {
  193. height: 68rpx;
  194. background: rgba(0, 0, 0, 0.5);
  195. box-shadow: 0px 0px 4px 2px rgba(147, 67, 255, 0.3);
  196. border-radius: 4px;
  197. border: 1px solid rgba(174, 231, 255, 0.5);
  198. .search-wrapper {
  199. height: 100%;
  200. width: 68rpx;
  201. box-shadow: inset 1px 0px 0px 0px rgba(174, 231, 255, 0.5);
  202. }
  203. }
  204. .cell {
  205. background: rgba($color: #000000, $alpha: 0.5);
  206. box-shadow: 0px 0px 3px 0px rgba(167, 110, 244, 0.5);
  207. border-radius: 6px;
  208. border: 1px solid;
  209. overflow: hidden;
  210. .bg {
  211. position: absolute;
  212. left: 0;
  213. width: 100%;
  214. top: 0;
  215. height: 100%;
  216. z-index: -1;
  217. }
  218. }
  219. </style>