goodList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. <template>
  2. <view :style="{ paddingTop: mbConfig + 'rpx'}" v-if="tempArr.length">
  3. <view class="index-product-wrapper" :style="{ background: themeColor,borderRadius: bgStyle+'rpx'}">
  4. <!-- 单列 -->
  5. <block v-if="itemStyle == 0">
  6. <view class="list-box animated listA" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
  7. <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)">
  8. <view class="pictrue" :class="'cont'+conStyle">
  9. <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
  10. <view v-if="item.stock == 0" class="sell_out">已售罄</view>
  11. <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
  12. </view>
  13. <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
  14. <view>
  15. <view v-if="titleShow" class="title line2">{{ item.store_name }}</view>
  16. <view class="merchant_info">
  17. <view v-if="item.merchant && item.merchant.type_name" :style="'background:'+labelColor" class="font-bg-red">{{item.merchant.type_name}}</view>
  18. <view class="txt" :style="'border-color:'+priceColor+';color:'+priceColor+';'" v-if="item.issetCoupon && couponShow">领券</view>
  19. <view class="txt delivery" v-if="item.delivery_free">包邮</view>
  20. </view>
  21. </view>
  22. <view v-if="priceShow" class="price acea-row" :style="'color:'+priceColor">
  23. <view>
  24. ¥
  25. <text>{{ item.price }}</text>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </block>
  32. <!-- 两列 -->
  33. <block v-if="itemStyle == 1">
  34. <view class="list-box listS animated" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
  35. <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)" :class="'bg'+conStyle">
  36. <view class="pictrue picture1" :class="'cont'+conStyle">
  37. <!-- <image :src="item.image" mode=""></image> -->
  38. <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
  39. <view v-if="item.stock == 0" class="sell_out">已售罄</view>
  40. <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
  41. </view>
  42. <view class="text-info">
  43. <view v-if="titleShow" class="title line1">{{ item.store_name }}</view>
  44. <view v-if="priceShow" class="price acea-row" :style="'color:'+priceColor">
  45. <view>¥<text>{{ item.price }}</text></view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </block>
  51. <!-- 三列 -->
  52. <block v-if="itemStyle == 2">
  53. <view class="list-box animated listB" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
  54. <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)">
  55. <view class="pictrue" :class="'cont'+conStyle">
  56. <!-- <image :src="item.image" mode=""></image> -->
  57. <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
  58. <view v-if="item.stock == 0" class="sell_out">已售罄</view>
  59. <view v-if="item.border_pic" :style="{ backgroundImage: `url(${item.border_pic})` }" class="border-picture"></view>
  60. </view>
  61. <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
  62. <view v-if="titleShow" class="title line1">{{ item.store_name }}</view>
  63. <view v-if="priceShow" class="price">
  64. <view v-if="priceShow" :style="'color:'+priceColor">
  65. ¥<text>{{ item.price }}</text>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </block>
  72. <!--大图-->
  73. <block v-if="itemStyle == 3">
  74. <view class="list-box animated listC" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
  75. <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)" :style="'border-radius:'+bgStyle+'rpx;'">
  76. <view class="pictrue" :class="'cont'+conStyle">
  77. <easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
  78. </view>
  79. <view class="text-info" style="display: flex; flex-direction: column; justify-content: space-between;">
  80. <view v-if="titleShow" class="title line2">{{ item.store_name }}</view>
  81. <view v-if="priceShow || opriceShow" class="price">
  82. <view v-if="priceShow" :style="'color:'+priceColor">
  83. <text></text>
  84. {{ item.price }}
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </block>
  91. </view>
  92. </view>
  93. </template>
  94. <script>
  95. // +----------------------------------------------------------------------
  96. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  97. // +----------------------------------------------------------------------
  98. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  99. // +----------------------------------------------------------------------
  100. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  101. // +----------------------------------------------------------------------
  102. // | Author: CRMEB Team <admin@crmeb.com>
  103. // +----------------------------------------------------------------------
  104. import { getProductData } from '@/api/api.js';
  105. export default {
  106. name: 'goodList',
  107. props: {
  108. dataConfig: {
  109. type: Object,
  110. default: () => {}
  111. },
  112. merId: {
  113. type: String || Number,
  114. default: ''
  115. }
  116. },
  117. data() {
  118. return {
  119. tempArr: [],
  120. mbConfig: this.dataConfig.mbConfig.val*2,
  121. numConfig: this.dataConfig.numConfig.val ? this.dataConfig.numConfig.val : this.dataConfig.numConfig.val,
  122. themeColor: this.dataConfig.themeColor.color[0].item,
  123. priceColor: this.dataConfig.fontColor.color[0].item,
  124. labelColor: this.dataConfig.labelColor.color[0].item,
  125. itemStyle: this.dataConfig.itemStyle.type,
  126. sortType: this.dataConfig.goodsSort.type,
  127. conStyle: this.dataConfig.conStyle.type,
  128. bgStyle: this.dataConfig.bgStyle.type ? '20' : '0',
  129. type: this.dataConfig.tabConfig.tabVal || 0,
  130. selectId: this.dataConfig.selectConfig.activeValue || 0,
  131. productIds: this.dataConfig.goodsList.ids || [],
  132. titleShow: this.dataConfig.titleShow.val,
  133. priceShow: this.dataConfig.priceShow.val,
  134. couponShow: this.dataConfig.couponShow.val,
  135. diy_id: this.dataConfig.did,
  136. unique: this.dataConfig.timestamp,
  137. };
  138. },
  139. created() {},
  140. mounted() {
  141. this.productslist();
  142. },
  143. methods: {
  144. productslist() {
  145. let data = {};
  146. if (this.type == 1) {
  147. data = {
  148. diy_id: this.diy_id,
  149. unique: this.unique,
  150. mer_id: this.merId,
  151. product_ids: this.productIds.toString(),
  152. limit: this.productIds.length,
  153. };
  154. } else {
  155. data = {
  156. diy_id: this.diy_id,
  157. unique: this.unique,
  158. mer_id: this.merId,
  159. order: this.sortType == 2 ? 'price_asc' : this.sortType == 1 ? 'sales' : '',
  160. limit: this.numConfig,
  161. };
  162. if(this.merId){
  163. data.mer_cate_id = (this.selectId&&this.selectId.toString()) || ''
  164. }else{
  165. data.cate_pid = (this.selectId&&this.selectId.toString()) || ''
  166. }
  167. }
  168. getProductData(data).then(res => {
  169. this.tempArr = res.data.list;
  170. });
  171. },
  172. goDetail(item) {
  173. this.$emit('detail', item);
  174. }
  175. }
  176. };
  177. </script>
  178. <style lang="scss" scoped>
  179. .index-product-wrapper {
  180. margin: 0 20rpx;
  181. padding: 20rpx 20rpx 0;
  182. .list-box {
  183. display: flex;
  184. flex-wrap: wrap;
  185. justify-content: space-between;
  186. .item {
  187. width: 328rpx;
  188. margin-bottom: 20rpx;
  189. overflow: hidden;
  190. position: relative;
  191. &.on {
  192. border-radius: 0;
  193. }
  194. .pictrue_log {
  195. width: 92rpx;
  196. height: 44rpx;
  197. font-size: 26rpx;
  198. line-height: 44rpx;
  199. }
  200. .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
  201. width: 100%;
  202. display: block;
  203. position: relative;
  204. .border-picture {
  205. position: absolute;
  206. top: 0;
  207. left: 0;
  208. width: 100%;
  209. height: 100%;
  210. background: center/cover no-repeat;
  211. }
  212. }
  213. .picture1,/deep/.picture1 image,/deep/.picture1 .easy-loadimage,/deep/.picture1 uni-image {
  214. height: 346rpx;
  215. position: relative;
  216. .border-picture {
  217. position: absolute;
  218. top: 0;
  219. left: 0;
  220. width: 100%;
  221. height: 100%;
  222. background: center/cover no-repeat;
  223. }
  224. .sell_out {
  225. display: flex;
  226. width: 150rpx;
  227. height: 150rpx;
  228. align-items: center;
  229. justify-content: center;
  230. border-radius: 100%;
  231. background: rgba(0,0,0,.6);
  232. color: #fff;
  233. font-size: 30rpx;
  234. position: absolute;
  235. top: 50%;
  236. left: 50%;
  237. margin: -75rpx 0 0 -75rpx;
  238. &::before{
  239. content: "";
  240. display: block;
  241. width: 140rpx;
  242. height: 140rpx;
  243. border-radius: 100%;
  244. border: 1px dashed #fff;
  245. position: absolute;
  246. top: 5rpx;
  247. left: 5rpx;
  248. }
  249. }
  250. }
  251. .cont1,/deep/.cont1 image,/deep/.cont1 .easy-loadimage,/deep/.cont1 uni-image,.cont1 .border-picture{
  252. border-radius: 16rpx;
  253. }
  254. .text-info {
  255. padding: 10rpx 20rpx 15rpx;
  256. .title {
  257. color: #222222;
  258. }
  259. .old-price {
  260. margin-top: 4rpx;
  261. font-size: 26rpx;
  262. color: #999;
  263. text-decoration: line-through;
  264. text {
  265. margin-right: 2px;
  266. font-size: 20rpx;
  267. }
  268. }
  269. .price {
  270. display: flex;
  271. margin-top: 20rpx;
  272. font-size: 26rpx;
  273. align-items: center;
  274. text {
  275. font-size: 36rpx;
  276. font-weight: 550;
  277. }
  278. .ot-price{
  279. color: #aaa;
  280. font-size: 26rpx;
  281. text-decoration: line-through;
  282. margin-left: 6rpx;
  283. font-weight: normal;
  284. margin-top: 10rpx;
  285. }
  286. }
  287. }
  288. .pictrue {
  289. position: relative;
  290. }
  291. .border-picture {
  292. position: absolute;
  293. top: 0;
  294. left: 0;
  295. width: 100%;
  296. height: 100%;
  297. border-radius: 8rpx;
  298. background: center/cover no-repeat;
  299. }
  300. }
  301. .merchant_info{
  302. display: flex;
  303. align-items: center;
  304. margin-top: 20rpx;
  305. .merchant_type{
  306. color: #fff;
  307. line-height: 30rpx;
  308. padding: 0 10rpx;
  309. border-radius: 2rpx;
  310. font-size: 22rpx;
  311. }
  312. .txt {
  313. display: flex;
  314. align-items: center;
  315. justify-content: center;
  316. padding: 0 4rpx;
  317. height: 28rpx;
  318. margin-left: 15rpx;
  319. border: 1px solid $theme-color;
  320. border-radius: 4rpx;
  321. font-size: 20rpx;
  322. font-weight: normal;
  323. &.delivery{
  324. color: #FF9000;
  325. border-color: #FF9000;
  326. }
  327. }
  328. }
  329. &.on {
  330. display: flex;
  331. }
  332. &.listA {
  333. .item {
  334. display: flex;
  335. width: 100%;
  336. .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
  337. width: 220rpx;
  338. height: 220rpx;
  339. }
  340. .sell_out {
  341. display: flex;
  342. width: 110rpx;
  343. height: 110rpx;
  344. align-items: center;
  345. justify-content: center;
  346. border-radius: 100%;
  347. background: rgba(0,0,0,.6);
  348. color: #fff;
  349. font-size: 24rpx;
  350. position: absolute;
  351. top: 50%;
  352. left: 50%;
  353. margin: -55rpx 0 0 -55rpx;
  354. &::before{
  355. content: "";
  356. display: block;
  357. width: 100rpx;
  358. height: 100rpx;
  359. border-radius: 100%;
  360. border: 1px dashed #fff;
  361. position: absolute;
  362. top: 5rpx;
  363. left: 5rpx;
  364. }
  365. }
  366. .text-info {
  367. width: 490rpx;
  368. }
  369. }
  370. }
  371. &.listB {
  372. justify-content: inherit;
  373. .item {
  374. width: 31.3%;
  375. margin-right: 3.05%;
  376. .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image {
  377. height: 220rpx;
  378. }
  379. .sell_out {
  380. display: flex;
  381. width: 110rpx;
  382. height: 110rpx;
  383. align-items: center;
  384. justify-content: center;
  385. border-radius: 100%;
  386. background: rgba(0,0,0,.6);
  387. color: #fff;
  388. font-size: 24rpx;
  389. position: absolute;
  390. top: 50%;
  391. left: 50%;
  392. margin: -55rpx 0 0 -55rpx;
  393. &::before{
  394. content: "";
  395. display: block;
  396. width: 100rpx;
  397. height: 100rpx;
  398. border-radius: 100%;
  399. border: 1px dashed #fff;
  400. position: absolute;
  401. top: 5rpx;
  402. left: 5rpx;
  403. }
  404. }
  405. &:nth-child(3n) {
  406. margin-right: 0;
  407. }
  408. .price{
  409. font-size: 20rpx;
  410. text{
  411. font-size: 28rpx;
  412. }
  413. }
  414. .text-info{
  415. padding: 10rpx 4rpx;
  416. }
  417. }
  418. }
  419. &.listC{
  420. .item{
  421. width: 100%;
  422. .pictrue,/deep/image,/deep/.easy-loadimage,/deep/uni-image{
  423. height: 320rpx;
  424. }
  425. .price{
  426. margin-top: 20rpx;
  427. font-size: 40rpx;
  428. display: flex;
  429. align-items: center;
  430. .old-price{
  431. font-weight: normal;
  432. font-size: 22rpx;
  433. margin-left: 10rpx;
  434. }
  435. }
  436. }
  437. }
  438. &.listS{
  439. .item{
  440. background: #ffffff;
  441. }
  442. .price{
  443. font-size: 40rpx;
  444. display: flex;
  445. align-items: baseline;
  446. .old-price{
  447. font-weight: normal;
  448. font-size: 22rpx;
  449. margin-left: 10rpx;
  450. }
  451. }
  452. .cont1,/deep/.cont1 image,/deep/.cont1 .easy-loadimage,/deep/.cont1 uni-image,.cont1 .border-picture{
  453. border-radius: 16rpx 16rpx 0 0;
  454. }
  455. .bg1{
  456. border-radius: 16rpx;
  457. }
  458. }
  459. }
  460. }
  461. </style>