index.vue 11 KB

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