goodListMall.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <view class="index-product-wrapper" :class="iSshowH ? 'on' : ''" :style="'margin-top:'+mbConfig*2+'rpx;'"
  3. v-show="!isSortType">
  4. <view v-if="iSshowH">
  5. <u-tabs :list="navigationList2" @click="clickNav" lineColor="#EB4C63" :inactiveStyle="{ color: '#333' }"
  6. :activeStyle="{ color: '#EB4C63', fontWeight: 'bold' }" keyName="title"></u-tabs>
  7. </view>
  8. <!-- 首发新品 -->
  9. <view class="list-box animated" :class='tempArr.length > 0 ? "fadeIn on" : ""'>
  10. <view class="item" v-for="(item, index) in tempArr" :key="index" @click="goDetail(item)">
  11. <view class="pictrue">
  12. <span class="pictrue_log pictrue_log_class" :style="'background-color:' + labelColor"
  13. v-if="item.activity && item.activity.type === '1'">{{ $t(`秒杀`) }}</span>
  14. <span class="pictrue_log pictrue_log_class" :style="'background-color:' + labelColor"
  15. v-if="item.activity && item.activity.type === '2'">{{ $t(`砍价`) }}</span>
  16. <span class="pictrue_log pictrue_log_class" :style="'background-color:' + labelColor"
  17. v-if="item.activity && item.activity.type === '3'">{{ $t(`拼团`) }}</span>
  18. <image :src="item.image" mode="aspectFit"></image>
  19. </view>
  20. <view class="text-info">
  21. <view class="title" v-if="titleShow">
  22. <u-text prefixIcon="bookmark" iconStyle="font-size: 16px; color:red" :lines="2" bold block size="12" :text="item.store_name"></u-text>
  23. </view>
  24. <view class="tags" v-if="opriceShow">赠送{{ item.ot_price }}红积分</view>
  25. <view class="price" :style="{ color: fontColor }">
  26. <view v-if="priceShow">
  27. <text>{{ $t(`¥`) }}</text>{{ item.price }}
  28. </view>
  29. <view class="txt" :style="'border:1px solid ' + labelColor + ';color:' + labelColor"
  30. :class="priceShow ? '' : 'on'" v-if="item.checkCoupon && couponShow">{{ $t(`券`) }}</view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import { getAdsList, getNoticeList, getCategoryTwo } from '@/api/home.js'
  39. export default {
  40. name: 'promotionList',
  41. props: {
  42. dataConfig: {
  43. type: Object,
  44. default: () => { }
  45. },
  46. tempArr: {
  47. type: Array,
  48. default: []
  49. },
  50. iSshowH: {
  51. type: Boolean,
  52. default: false
  53. },
  54. isSortType: {
  55. type: String | Number,
  56. default: 0
  57. },
  58. currentId: {
  59. type: String | Number,
  60. default: 0
  61. }
  62. },
  63. watch: {
  64. cartNum(newCart, b) {
  65. this.$store.commit('indexData/setCartNum', newCart + '')
  66. if (newCart > 0) {
  67. uni.setTabBarBadge({
  68. index: Number(uni.getStorageSync('FOOTER_ADDCART')) || 2,
  69. text: newCart + ''
  70. })
  71. } else {
  72. uni.hideTabBarRedDot({
  73. index: Number(uni.getStorageSync('FOOTER_ADDCART')) || 2
  74. })
  75. }
  76. },
  77. currentId(Id){
  78. this.getCategoryTwo(Id)
  79. }
  80. },
  81. data() {
  82. return {
  83. navigationList2: [],
  84. ProductNavindex: 0,
  85. explosiveMoney: [
  86. {
  87. "chiild": [
  88. {
  89. "title": "标题",
  90. "val": "首发新品",
  91. "max": 4,
  92. "pla": "选填,不超过四个字"
  93. },
  94. {
  95. "title": "简介",
  96. "val": "最新出炉",
  97. "max": 4,
  98. "pla": "选填,不超过四个字"
  99. }
  100. ],
  101. "link": {
  102. "title": "链接",
  103. "activeVal": 3,
  104. "optiops": [
  105. {
  106. "type": 0,
  107. "value": 1,
  108. "label": "精品推荐"
  109. },
  110. {
  111. "type": 1,
  112. "value": 2,
  113. "label": "热门榜单"
  114. },
  115. {
  116. "type": 2,
  117. "value": 3,
  118. "label": "首发新品"
  119. },
  120. {
  121. "type": 3,
  122. "value": 4,
  123. "label": "促销单品"
  124. }
  125. ]
  126. }
  127. },
  128. {
  129. "chiild": [
  130. {
  131. "title": "标题",
  132. "val": "精品推荐",
  133. "max": 4,
  134. "pla": "选填,不超过四个字"
  135. },
  136. {
  137. "title": "简介",
  138. "val": "猜你喜欢",
  139. "max": 4,
  140. "pla": "选填,不超过四个字"
  141. }
  142. ],
  143. "link": {
  144. "title": "链接",
  145. "activeVal": 1,
  146. "optiops": [
  147. {
  148. "type": 0,
  149. "value": 1,
  150. "label": "精品推荐"
  151. },
  152. {
  153. "type": 1,
  154. "value": 2,
  155. "label": "热门榜单"
  156. },
  157. {
  158. "type": 2,
  159. "value": 3,
  160. "label": "首发新品"
  161. },
  162. {
  163. "type": 3,
  164. "value": 4,
  165. "label": "促销单品"
  166. }
  167. ]
  168. }
  169. },
  170. {
  171. "chiild": [
  172. {
  173. "title": "标题",
  174. "val": "热门榜单",
  175. "max": 4,
  176. "pla": "选填,不超过四个字"
  177. },
  178. {
  179. "title": "简介",
  180. "val": "好评如云",
  181. "max": 4,
  182. "pla": "选填,不超过四个字"
  183. }
  184. ],
  185. "link": {
  186. "title": "链接",
  187. "activeVal": 2,
  188. "optiops": [
  189. {
  190. "type": 0,
  191. "value": 1,
  192. "label": "精品推荐"
  193. },
  194. {
  195. "type": 1,
  196. "value": 2,
  197. "label": "热门榜单"
  198. },
  199. {
  200. "type": 2,
  201. "value": 3,
  202. "label": "首发新品"
  203. },
  204. {
  205. "type": 3,
  206. "value": 4,
  207. "label": "促销单品"
  208. }
  209. ]
  210. }
  211. },
  212. {
  213. "chiild": [
  214. {
  215. "title": "标题",
  216. "val": "促销单品",
  217. "max": 4,
  218. "pla": "选填,不超过四个字"
  219. },
  220. {
  221. "title": "简介",
  222. "val": "多买多销",
  223. "max": 4,
  224. "pla": "选填,不超过四个字"
  225. }
  226. ],
  227. "link": {
  228. "title": "链接",
  229. "activeVal": 4,
  230. "optiops": [
  231. {
  232. "type": 0,
  233. "value": 1,
  234. "label": "精品推荐"
  235. },
  236. {
  237. "type": 1,
  238. "value": 2,
  239. "label": "热门榜单"
  240. },
  241. {
  242. "type": 2,
  243. "value": 3,
  244. "label": "首发新品"
  245. },
  246. {
  247. "type": 3,
  248. "value": 4,
  249. "label": "促销单品"
  250. }
  251. ]
  252. }
  253. }
  254. ],
  255. numConfig: 9,
  256. // imgStyle: this.dataConfig.imgStyle.type,
  257. mbConfig: 0,
  258. themeColor: "rgba(29,176,252,1)",
  259. titleShow: true, //标题是否显示
  260. opriceShow: true, //原价是否显示
  261. priceShow: true, //价格是否显示
  262. couponShow: true,//优惠券标签是否显示
  263. titleConfig: 2, //标题位置
  264. fontColor: "rgba(253,80,47,1)",
  265. labelColor: "rgba(29,176,252,1)"
  266. };
  267. },
  268. created() {
  269. this.getCategoryTwo(this.currentId)
  270. },
  271. methods: {
  272. clickNav(e) {
  273. console.log(e)
  274. },
  275. getCategoryTwo(Id){
  276. getCategoryTwo({
  277. parentId: Id
  278. }).then(res => [
  279. this.navigationList2 = res.data
  280. ])
  281. },
  282. // 首发新品切换
  283. ProductNavTab(type, index) {
  284. this.ProductNavindex = index;
  285. this.$emit('changeTab', type);
  286. },
  287. goDetail(item) {
  288. this.$emit('detail', item);
  289. }
  290. }
  291. }
  292. </script>
  293. <style lang="scss">
  294. .index-product-wrapper {
  295. margin: 30rpx 20rpx 0 20rpx;
  296. &.on {
  297. min-height: 1500rpx;
  298. }
  299. .nav-bd {
  300. display: flex;
  301. align-items: center;
  302. margin-top: 30rpx;
  303. .item {
  304. display: flex;
  305. flex-direction: column;
  306. align-items: center;
  307. justify-content: center;
  308. width: 25%;
  309. &.on {
  310. border-radius: 0;
  311. }
  312. .txt {
  313. font-size: 32rpx;
  314. color: #282828;
  315. }
  316. .label {
  317. display: flex;
  318. align-items: center;
  319. justify-content: center;
  320. width: 124rpx;
  321. height: 32rpx;
  322. margin-top: 5rpx;
  323. font-size: 24rpx;
  324. color: #999;
  325. border-radius: 16rpx;
  326. }
  327. }
  328. }
  329. .list-box {
  330. display: flex;
  331. flex-wrap: wrap;
  332. justify-content: space-between;
  333. margin-top: 30rpx;
  334. .item {
  335. width: 345rpx;
  336. margin-bottom: 20rpx;
  337. background-color: #fff;
  338. border-radius: 20rpx;
  339. overflow: hidden;
  340. position: relative;
  341. .pictrue_log {
  342. width: 92rpx;
  343. height: 44rpx;
  344. font-size: 26rpx;
  345. line-height: 44rpx;
  346. }
  347. image {
  348. width: 100%;
  349. height: 346rpx;
  350. display: block;
  351. }
  352. .text-info {
  353. padding: 10rpx 20rpx 15rpx;
  354. .title {
  355. color: #222222;
  356. }
  357. .tags {
  358. display: inline-block;
  359. font-size: 20rpx;
  360. padding: 6rpx;
  361. background-color: #FCE9EC;
  362. color: #EB4C63;
  363. margin: 6rpx 0;
  364. }
  365. .old-price {
  366. margin-top: 4rpx;
  367. font-size: 26rpx;
  368. color: #f51414;
  369. // text-decoration: line-through;
  370. text {
  371. margin-right: 2px;
  372. font-size: 20rpx;
  373. }
  374. }
  375. .price {
  376. display: flex;
  377. align-items: flex-end;
  378. font-size: 36rpx;
  379. font-weight: 550;
  380. text {
  381. padding-bottom: 4rpx;
  382. font-size: 26rpx;
  383. font-weight: normal;
  384. }
  385. .txt {
  386. display: flex;
  387. align-items: center;
  388. justify-content: center;
  389. width: 28rpx;
  390. height: 28rpx;
  391. margin-left: 15rpx;
  392. margin-bottom: 10rpx;
  393. border-radius: 4rpx;
  394. font-size: 20rpx;
  395. font-weight: normal;
  396. &.on {
  397. margin-left: 0;
  398. }
  399. }
  400. }
  401. }
  402. }
  403. &.on {
  404. display: flex;
  405. }
  406. }
  407. }
  408. </style>