index.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. <template>
  2. <view :style="colorStyle">
  3. <view class='productList'>
  4. <view class='list acea-row row-between-wrapper' :class='is_switch == true ? "" : "on"'>
  5. <view class='item' :class='is_switch == true ? "" : "on"' hover-class='none'
  6. v-for="(item, index) in productList" :key="index" @click="godDetail(item)">
  7. <view class='pictrue' :class='is_switch == true ? "" : "on"'>
  8. <image :src='item.image' :class='is_switch == true ? "" : "on"'></image>
  9. <span class="pictrue_log_class" :class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
  10. v-if="item.activity && item.activity.type === '1'">{{ $t(`秒杀`) }}</span>
  11. <span class="pictrue_log_class" :class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
  12. v-if="item.activity && item.activity.type === '2'">{{ $t(`砍价`) }}</span>
  13. <span class="pictrue_log_class" :class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
  14. v-if="item.activity && item.activity.type === '3'">{{ $t(`拼团`) }}</span>
  15. </view>
  16. <view class='text' :class='is_switch == true ? "" : "on"'>
  17. <view class='name line1'>{{ item.store_name }}</view>
  18. <view class='money font-color' :class='is_switch == true ? "" : "on"'>{{ $t(`¥`) }}<text
  19. class='num'>{{ item.price }}</text></view>
  20. <view class='vip acea-row row-between-wrapper' :class='is_switch == true ? "" : "on"'>
  21. <view class='vip-money' v-if="item.vip_price && item.vip_price > 0">
  22. {{ $t(`¥`) }}{{ item.vip_price }}
  23. <image src='../../../static/images/vip.png'></image>
  24. </view>
  25. <view>{{ $t(`已售`) }} {{ item.sales }}{{ $t(item.unit_name) || $t(`件`) }}</view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class='loadingicon acea-row row-center-wrapper' v-if='productList.length > 0'>
  30. <text class='loading iconfont icon-jiazai' :hidden='loading == false'></text>{{ loadTitle }}
  31. </view>
  32. </view>
  33. </view>
  34. <view class='noCommodity' v-if="productList.length == 0 && where.page > 1">
  35. <view class='emptyBox'>
  36. <image :src="imgHost + '/statics/images/no-thing.png'"></image>
  37. </view>
  38. <recommend :hostProduct="hostProduct"></recommend>
  39. </view>
  40. <!-- #ifndef MP -->
  41. <home></home>
  42. <!-- #endif -->
  43. </view>
  44. </template>
  45. <script>
  46. import home from '@/components/home';
  47. import {
  48. getProductslist,
  49. getProductHot
  50. } from '@/api/store.js';
  51. import recommend from '@/components/recommend';
  52. import {
  53. mapGetters
  54. } from "vuex";
  55. import {
  56. goShopDetail
  57. } from '@/libs/order.js'
  58. import { HTTP_REQUEST_URL } from '@/config/app';
  59. import colors from '@/mixins/color.js';
  60. export default {
  61. computed: mapGetters(['uid']),
  62. components: {
  63. recommend,
  64. home
  65. },
  66. mixins: [colors],
  67. data() {
  68. return {
  69. imgHost: HTTP_REQUEST_URL,
  70. productList: [],
  71. is_switch: true,
  72. where: {
  73. sid: 0,
  74. keyword: '',
  75. priceOrder: '',
  76. salesOrder: '',
  77. news: 0,
  78. page: 1,
  79. limit: 20,
  80. cid: 0,
  81. },
  82. price: 0,
  83. stock: 0,
  84. nows: false,
  85. loadend: false,
  86. loading: false,
  87. loadTitle: this.$t(`加载更多`),
  88. title: '',
  89. hostProduct: [],
  90. hotPage: 1,
  91. hotLimit: 10,
  92. hotScroll: false
  93. };
  94. },
  95. onLoad: function (options) {
  96. this.where.cid = options.cid || 0;
  97. this.$set(this.where, 'sid', options.sid || 0);
  98. this.title = options.title || '';
  99. this.$set(this.where, 'keyword', options.searchValue || '');
  100. this.$set(this.where, 'productId', options.productId || '');
  101. this.get_product_list();
  102. uni.setNavigationBarTitle({
  103. title: options.title
  104. });
  105. },
  106. methods: {
  107. // 去详情页
  108. godDetail(item) {
  109. goShopDetail(item, this.uid).then(res => {
  110. uni.navigateTo({
  111. url: `/pages/goods_details/index?id=${item.id}`
  112. })
  113. })
  114. },
  115. Changswitch: function () {
  116. let that = this;
  117. that.is_switch = !that.is_switch
  118. },
  119. searchSubmit: function (e) {
  120. let that = this;
  121. that.$set(that.where, 'keyword', e.detail.value);
  122. that.loadend = false;
  123. that.$set(that.where, 'page', 1)
  124. this.get_product_list(true);
  125. },
  126. /**
  127. * 获取我的推荐
  128. */
  129. get_host_product: function () {
  130. let that = this;
  131. if (that.hotScroll) return
  132. getProductHot(
  133. that.hotPage,
  134. that.hotLimit,
  135. ).then(res => {
  136. that.hotPage++
  137. that.hotScroll = res.data.length < that.hotLimit
  138. that.hostProduct = that.hostProduct.concat(res.data)
  139. // that.$set(that, 'hostProduct', res.data)
  140. });
  141. },
  142. //点击事件处理
  143. set_where: function (e) {
  144. switch (e) {
  145. case 1:
  146. // #ifdef H5
  147. return history.back();
  148. // #endif
  149. // #ifndef H5
  150. return uni.navigateBack({
  151. delta: 1,
  152. })
  153. // #endif
  154. break;
  155. case 2:
  156. if (this.price == 0) this.price = 1;
  157. else if (this.price == 1) this.price = 2;
  158. else if (this.price == 2) this.price = 0;
  159. this.stock = 0;
  160. break;
  161. case 3:
  162. if (this.stock == 0) this.stock = 1;
  163. else if (this.stock == 1) this.stock = 2;
  164. else if (this.stock == 2) this.stock = 0;
  165. this.price = 0
  166. break;
  167. case 4:
  168. this.nows = !this.nows;
  169. break;
  170. }
  171. this.loadend = false;
  172. this.$set(this.where, 'page', 1);
  173. this.get_product_list(true);
  174. },
  175. //设置where条件
  176. setWhere: function () {
  177. if (this.price == 0) this.where.priceOrder = '';
  178. else if (this.price == 1) this.where.priceOrder = 'asc';
  179. else if (this.price == 2) this.where.priceOrder = 'desc';
  180. if (this.stock == 0) this.where.salesOrder = '';
  181. else if (this.stock == 1) this.where.salesOrder = 'asc';
  182. else if (this.stock == 2) this.where.salesOrder = 'desc';
  183. this.where.news = this.nows ? 1 : 0;
  184. },
  185. //查找产品
  186. get_product_list: function (isPage) {
  187. let that = this;
  188. that.setWhere();
  189. if (that.loadend) return;
  190. if (that.loading) return;
  191. if (isPage === true) that.$set(that, 'productList', []);
  192. that.loading = true;
  193. that.loadTitle = '';
  194. uni.request({
  195. url: 'api/mock/Productslist',
  196. success: res => {
  197. let list = res.data;
  198. let productList = that.$util.SplitArray(list, that.productList);
  199. let loadend = list.length < that.where.limit;
  200. that.loadend = loadend;
  201. that.loading = false;
  202. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  203. that.$set(that, 'productList', productList);
  204. that.$set(that.where, 'page', that.where.page + 1);
  205. if (!that.productList.length) this.get_host_product();
  206. }
  207. })
  208. // getProductslist(that.where).then(res => {
  209. // let list = res.data;
  210. // let productList = that.$util.SplitArray(list, that.productList);
  211. // let loadend = list.length < that.where.limit;
  212. // that.loadend = loadend;
  213. // that.loading = false;
  214. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  215. // that.$set(that, 'productList', productList);
  216. // that.$set(that.where, 'page', that.where.page + 1);
  217. // if (!that.productList.length) this.get_host_product();
  218. // }).catch(err => {
  219. // that.loading = false;
  220. // that.loadTitle = that.$t(`加载更多`);
  221. // });
  222. },
  223. },
  224. onPullDownRefresh() {
  225. },
  226. onReachBottom() {
  227. if (this.productList.length > 0) {
  228. this.get_product_list();
  229. } else {
  230. this.get_host_product();
  231. }
  232. }
  233. }
  234. </script>
  235. <style scoped lang="scss">
  236. .productList .search {
  237. width: 100%;
  238. height: 86rpx;
  239. padding-left: 23rpx;
  240. box-sizing: border-box;
  241. position: fixed;
  242. left: 0;
  243. top: 0;
  244. z-index: 9;
  245. }
  246. .productList .search .input {
  247. width: 640rpx;
  248. height: 60rpx;
  249. background-color: #fff;
  250. border-radius: 50rpx;
  251. padding: 0 20rpx;
  252. box-sizing: border-box;
  253. }
  254. .productList .search .input input {
  255. width: 548rpx;
  256. height: 100%;
  257. font-size: 26rpx;
  258. }
  259. .productList .search .input .placeholder {
  260. color: #999;
  261. }
  262. .productList .search .input .iconfont {
  263. font-size: 35rpx;
  264. color: #555;
  265. }
  266. .productList .search .icon-pailie,
  267. .productList .search .icon-tupianpailie {
  268. color: #fff;
  269. width: 62rpx;
  270. font-size: 40rpx;
  271. height: 86rpx;
  272. line-height: 86rpx;
  273. }
  274. .productList .nav {
  275. height: 86rpx;
  276. color: #454545;
  277. position: fixed;
  278. left: 0;
  279. width: 100%;
  280. font-size: 28rpx;
  281. background-color: #fff;
  282. margin-top: 86rpx;
  283. top: 0;
  284. z-index: 9;
  285. }
  286. .productList .nav .item {
  287. width: 25%;
  288. text-align: center;
  289. }
  290. .productList .nav .item.font-color {
  291. font-weight: bold;
  292. }
  293. .productList .nav .item image {
  294. width: 15rpx;
  295. height: 19rpx;
  296. margin-left: 10rpx;
  297. }
  298. .productList .list {
  299. padding: 0 20rpx;
  300. margin-top: 12rpx;
  301. }
  302. .productList .list.on {
  303. background-color: #fff;
  304. border-top: 1px solid #f6f6f6;
  305. }
  306. .productList .list .item {
  307. width: 345rpx;
  308. margin-top: 20rpx;
  309. background-color: #fff;
  310. border-radius: 20rpx;
  311. }
  312. .productList .list .item.on {
  313. width: 100%;
  314. display: flex;
  315. border-bottom: 1rpx solid #f6f6f6;
  316. padding: 30rpx 0;
  317. margin: 0;
  318. }
  319. .productList .list .item .pictrue {
  320. position: relative;
  321. width: 100%;
  322. height: 345rpx;
  323. }
  324. .productList .list .item .pictrue.on {
  325. width: 180rpx;
  326. height: 180rpx;
  327. }
  328. .productList .list .item .pictrue image {
  329. width: 100%;
  330. height: 100%;
  331. border-radius: 20rpx 20rpx 0 0;
  332. }
  333. .productList .list .item .pictrue image.on {
  334. border-radius: 6rpx;
  335. }
  336. .productList .list .item .text {
  337. padding: 20rpx 17rpx 26rpx 17rpx;
  338. font-size: 30rpx;
  339. color: #222;
  340. }
  341. .productList .list .item .text.on {
  342. width: 508rpx;
  343. padding: 0 0 0 22rpx;
  344. }
  345. .productList .list .item .text .money {
  346. font-size: 26rpx;
  347. font-weight: bold;
  348. margin-top: 8rpx;
  349. }
  350. .productList .list .item .text .money.on {
  351. margin-top: 50rpx;
  352. }
  353. .productList .list .item .text .money .num {
  354. font-size: 34rpx;
  355. }
  356. .productList .list .item .text .vip {
  357. font-size: 22rpx;
  358. color: #aaa;
  359. margin-top: 7rpx;
  360. }
  361. .productList .list .item .text .vip.on {
  362. margin-top: 12rpx;
  363. }
  364. .productList .list .item .text .vip .vip-money {
  365. font-size: 24rpx;
  366. color: #282828;
  367. font-weight: bold;
  368. }
  369. .productList .list .item .text .vip .vip-money image {
  370. width: 46rpx;
  371. height: 21rpx;
  372. margin-left: 4rpx;
  373. }
  374. .noCommodity {
  375. background-color: #fff;
  376. padding-bottom: 30rpx;
  377. .emptyBox {
  378. text-align: center;
  379. padding-top: 20rpx;
  380. .tips {
  381. color: #aaa;
  382. font-size: 26rpx;
  383. }
  384. image {
  385. width: 414rpx;
  386. height: 304rpx;
  387. }
  388. }
  389. }
  390. </style>