index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <template>
  2. <!-- 商城 -->
  3. <view class="">
  4. <!-- <view class="index-navbar"> -->
  5. <view style="position: relative;">
  6. <!-- 自定义导航栏 -->
  7. <image src="../../static/images/index/back.png"
  8. style="width: 750rpx;height: 1200rpx;position: absolute;top: 0;z-index: -1;" mode=""></image>
  9. <u-navbar bgColor='rgba(255, 215,215, 1)' :placeholder='true' :fixed='true'>
  10. <view class="u-nav-slot" slot="left" style="display: flex;">
  11. <image @click="tochat" src="../../static/images/index/xiaoxi.png" mode=""
  12. style="width: 40rpx;height: 40rpx;">
  13. </image>
  14. <image @click="counter" src="../../static/images/index/compile.png" mode=""
  15. style="width: 40rpx;height: 40rpx;margin-left: 22rpx;"></image>
  16. <image src="../../static/images/index/dianhua.png" mode=""
  17. style="width: 40rpx;height: 40rpx;margin-left: 22rpx;"></image>
  18. </view>
  19. <view class="u-nav-slot" slot="center" style="width: 226rpx;">
  20. <u-subsection bgColor='rgba(248, 50, 36, 0.1)' activeColor='#F83224' inactiveColor='#222'
  21. :list="list" :current="current" @change="sectionChange"></u-subsection>
  22. </view>
  23. </u-navbar>
  24. <view class="" style="margin-top: 30rpx;padding:0 24rpx;">
  25. <!-- 搜索 -->
  26. <view class="search">
  27. <view class="u-flex">
  28. <u-icon name="search" size='32'></u-icon>
  29. <input type="text" v-model="keyword" :placeholder="i18n.Searchcon" />
  30. </view>
  31. <view class="right" @click="search">
  32. {{i18n.search}}
  33. </view>
  34. </view>
  35. <!-- tabs -->
  36. <view class=""
  37. style="display: flex;margin-top: 20rpx;align-items: center;justify-content: space-between;">
  38. <u-tabs :list="list1" @change='changetab'></u-tabs>
  39. <view class="border">
  40. </view>
  41. <view class="u-flex" style="margin-left: 24rpx;width: 100rpx;" @click="shoptype">
  42. <image src="../../static/images/index/fenlei.png" style="width: 24rpx;height: 24rpx;;" mode="">
  43. </image>
  44. <text class="fenlei">{{i18n.sort}}</text>
  45. </view>
  46. </view>
  47. <!-- 轮播图 -->
  48. <view class="" style="margin-top: 20rpx;">
  49. <u-swiper radius='10' :indicator='true' :list="banner"></u-swiper>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="shopback">
  54. <view class="u-flex u-row-between">
  55. <!-- 百亿补贴 -->
  56. <view class="bigbox" @click="subsidy(1)">
  57. <view class="u-flex">
  58. <image src="../../static/images/index/butie.png" style="width: 104rpx;height: 26rpx;" mode="">
  59. </image>
  60. <view class="biaoqian" style="background: #F35D22;">{{i18n.expensive}}</view>
  61. </view>
  62. <view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
  63. <view v-for="(item,idx) in subsidylist" class="ssbox " style="margin-top: 16rpx;">
  64. <view class="" style="position: relative">
  65. <image :src="item.image" style="width: 144rpx;height: 144rpx;" mode=""></image>
  66. <view class="u-flex u-row-center"
  67. style="position: absolute;bottom: 10rpx;width: 144rpx;">
  68. <view class="u-flex">
  69. <view class="tag u-flex" style="background: rgba(243, 93, 34, 1);">
  70. <image src="../../static/images/index/down.png"
  71. style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
  72. mode="">
  73. </image>
  74. <text>{{(item.price*1000 - item.discount_price*1000)/1000 + i18n.RMB}}</text>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. <view class="money" style="text-align: center;">
  80. ¥{{item.discount_price}}
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. <!-- 拼包好物 -->
  86. <view class="">
  87. <view class="smallbox" @click="subsidy(2)">
  88. <view class="u-flex">
  89. <image src="../../static/images/index/pinbao.png" style="width: 164rpx;height: 26rpx;"
  90. mode=""></image>
  91. <view class="biaoqian" style="background: rgba(255, 148, 21, 1);">{{i18n.expensive}}
  92. </view>
  93. </view>
  94. <view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
  95. <view v-for="(item,idx) in packlist" class="ssbox " style="margin-top: 16rpx;">
  96. <view class="" style="position: relative">
  97. <image :src="item.image" style=";width: 144rpx;height: 144rpx;" mode=""></image>
  98. <view class="u-flex u-row-center"
  99. style="position: absolute;bottom: 10rpx;width: 144rpx;">
  100. <view class="u-flex">
  101. <!-- <image src="../../static/images/index/label.png"
  102. style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
  103. mode="">
  104. </image> -->
  105. <view v-if="item.is_discount==0" class="tag u-flex"
  106. style="background-color: rgba(251, 73, 70, 1);">
  107. <image src="../../static/images/index/down.png"
  108. style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
  109. mode="">
  110. </image>
  111. <text>{{(item.price*1000 - item.discount_price*1000)/1000 + i18n.RMB}}</text>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </view>
  117. </view>
  118. </view>
  119. <view class="smallbox" @click="subsidy(3)">
  120. <view class="u-flex">
  121. <image src="../../static/images/index/postage.png" style="width: 116rpx;height: 26rpx;"
  122. mode=""></image>
  123. <view class="biaoqian" style="background:rgba(248, 50, 36, 1)">{{i18n.Something}}</view>
  124. </view>
  125. <view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
  126. <view v-for="(item,idx) in shippList" class="ssbox " style="margin-top: 8rpx;">
  127. <view class="" style="position: relative">
  128. <image :src="item.image" style="width: 124rpx;height: 124rpx;" mode=""></image>
  129. <view class="shopname" v-if="language =='zh-CN'">
  130. {{item.name_cn}}
  131. </view>
  132. <view class="shopname" v-if="language =='en-US'">
  133. {{item.name_en}}
  134. </view>
  135. <view class="shopname" v-if="language =='es-ES'">
  136. {{item.name_es}}
  137. </view>
  138. <view class="shopname" v-if="language =='it-IT'">
  139. {{item.name_ita}}
  140. </view>
  141. </view>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. <view class="u-flex u-row-between" style="flex-wrap: wrap;">
  148. <view class="bigbox" v-for="(item,index) in recomlist" style="position: relative;"
  149. @click="todetail(item.id)">
  150. <image v-if="item.is_discount==0" src="../../static/images/index/discount.png"
  151. style="width: 60rpx;height: 36rpx;position: absolute;left: 12rpx;top: 12rpx;z-index: 10;"
  152. mode="">
  153. </image>
  154. <image :src="item.image"
  155. style="width: 340rpx;height: 340rpx;;margin-left: -20rpx;margin-top: -18rpx;" mode=""></image>
  156. <view class="title" v-if="language =='zh-CN'">
  157. {{item.name_cn}}
  158. </view>
  159. <view class="title" v-if="language =='en-US'">
  160. {{item.name_en}}
  161. </view>
  162. <view class="title" v-if="language =='es-ES'">
  163. {{item.name_es}}
  164. </view>
  165. <view class="title" v-if="language =='it-IT'">
  166. {{item.name_ita}}
  167. </view>
  168. <view class="">
  169. <text class="money">
  170. ¥{{item.is_discount==0?item.discount_price:item.price}}
  171. </text>
  172. <text class="weight">
  173. ¥{{item.weight}}kg
  174. </text>
  175. </view>
  176. <view class="u-flex" style="flex-wrap: wrap;margin-top: 18rpx;column-gap: 12px;overflow: hidden;">
  177. <!-- <view v-for="(child,idx) in item.label_arr" :key="idx" class="taber"
  178. style="border: 1rpx solid #E5BC78;color: #E5BC78;">
  179. <text>{{child.name_cn}}</text>
  180. </view> -->
  181. <view v-for="(child,idx) in item.label_arr" :key="idx" class="taber"
  182. style="border: 1rpx solid rgba(237, 9, 9, 1);color: rgba(237, 9, 9, 1);">
  183. <text v-if="language =='zh-CN'">
  184. {{item.name_cn}}
  185. </text>
  186. <text v-if="language =='en-US'">
  187. {{item.name_en}}
  188. </text>
  189. <text v-if="language =='es-ES'">
  190. {{item.name_es}}
  191. </text>
  192. <text v-if="language =='it-IT'">
  193. {{item.name_ita}}
  194. </text>
  195. </view>
  196. <!-- <view class="taber" style="border: 1rpx solid #E5BC78;color: #E5BC78;">以旧换新</view> -->
  197. </view>
  198. </view>
  199. </view>
  200. </view>
  201. <u-popup :show="show" mode='center' :round='16' bgColor='transparent'>
  202. <view style="position: relative;">
  203. <image :src="configimage"
  204. style="width: 570rpx;height: 764rpx;border-radius: 16rpx;" mode=""></image>
  205. <view class="" style="text-align: center;" @click='show=false'>
  206. <image src="../../static/images/index/close.png" mode="" style="width: 70rpx;height: 70rpx;">
  207. </image>
  208. </view>
  209. </view>
  210. </u-popup>
  211. <!-- <view class="" style="height: 160rpx;" v-if="recomlist.length >3"></view> -->
  212. <kj-tabbar :value1=1></kj-tabbar>
  213. </view>
  214. </template>
  215. <script>
  216. import {
  217. recom
  218. } from "../../network/shopApi.js";
  219. export default {
  220. data() {
  221. return {
  222. recomlist: [], //推荐列表
  223. //顶部分段器
  224. list: [],
  225. current: 1,
  226. //tabs
  227. list1: [{
  228. name: '推荐',
  229. }],
  230. //轮播图
  231. banner: [
  232. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  233. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  234. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  235. ],
  236. show: true,
  237. timer: '',
  238. language: 'zh-CN',
  239. subsidylist: [], //百万补贴
  240. packlist: [], //拼包好物
  241. shippList: [], //海外包邮
  242. keyword: '',
  243. page: 1,
  244. index: 0,
  245. parent_id: '',
  246. last_page: '',
  247. configimage:'',
  248. }
  249. },
  250. computed: {
  251. i18n() {
  252. return this.$t('index')
  253. }
  254. },
  255. onReachBottom() {
  256. if (this.page == this.last_page) {
  257. this.$u.toast('已无更多数据')
  258. } else {
  259. this.page++
  260. this.goods(this.parent_id)
  261. }
  262. },
  263. onLoad(options) {
  264. this.list = [this.i18n.border, this.i18n.shop]
  265. // this.seater()
  266. if (options.current) {
  267. this.current = options.current
  268. }
  269. //商品推荐
  270. this.recommend()
  271. },
  272. onShow() {
  273. this.config()
  274. // tabs列表
  275. this.category()
  276. //百万补贴
  277. this.subsid()
  278. //拼包好物
  279. this.pack()
  280. //海外包邮
  281. this.shipp()
  282. if (uni.getStorageSync('language') != '') {
  283. this.language = uni.getStorageSync('language')
  284. }
  285. },
  286. methods: {
  287. //广告弹窗
  288. config(){
  289. uni.$u.http.get('api/config',{
  290. params:{
  291. module:'advertising'
  292. }}).then((res) => {
  293. console.log(res);
  294. this.configimage = res.image
  295. }).catch(() => {
  296. })
  297. },
  298. //海外包邮接口
  299. shipp() {
  300. uni.$u.http.post('api/goods/shipping').then((res) => {
  301. this.shippList = res.splice(0, 2)
  302. }).catch(() => {
  303. })
  304. },
  305. //拼包好物接口
  306. pack() {
  307. uni.$u.http.post('/api/goods/pack').then((res) => {
  308. this.packlist = res.splice(0, 2)
  309. }).catch(() => {
  310. })
  311. },
  312. //百万补贴接口
  313. subsid() {
  314. uni.$u.http.post('/api/goods/subsidy').then((res) => {
  315. this.subsidylist = res.splice(0, 4)
  316. }).catch(() => {
  317. })
  318. },
  319. //标签切换
  320. changetab(e) {
  321. this.index = e.index
  322. this.parent_id = e.id
  323. if (this.index == 0) {
  324. this.recommend()
  325. } else {
  326. this.recomlist = []
  327. this.goods(this.parent_id)
  328. }
  329. },
  330. search() {
  331. if (this.index == 0) {
  332. this.recommend()
  333. } else {
  334. this.recomlist = []
  335. this.goods(this.parent_id)
  336. }
  337. },
  338. //商品推荐
  339. recommend() {
  340. uni.$u.http.post('/api/goods/recommend', {
  341. keyword: this.keyword
  342. }).then((res) => {
  343. this.recomlist = res
  344. }).catch(() => {
  345. })
  346. },
  347. //商品分类列表
  348. category() {
  349. uni.$u.http.get('/api/goods/category', {
  350. params: {
  351. parent_id: 0
  352. }
  353. }).then((res) => {
  354. const categoryArr = res
  355. this.list1 = [{
  356. name: ''
  357. }]
  358. if (this.language == 'en-US') {
  359. categoryArr.forEach(item => {
  360. item.name = item.name_en
  361. })
  362. this.list1[0].name = 'recommend'
  363. }
  364. if (this.language == 'es-ES') {
  365. categoryArr.forEach(item => {
  366. item.name = item.name_es
  367. })
  368. this.list1[0].name = 'recomendación'
  369. }
  370. if (this.language == 'it-IT') {
  371. categoryArr.forEach(item => {
  372. item.name = item.name_ita
  373. })
  374. this.list1[0].name = 'raccomandata'
  375. }
  376. if (this.language == 'zh-CN') {
  377. categoryArr.forEach(item => {
  378. item.name = item.name_cn
  379. })
  380. this.list1[0].name = '推荐'
  381. }
  382. this.list1 = this.list1.concat(categoryArr)
  383. }).catch(() => {
  384. })
  385. },
  386. //商品列表
  387. goods(id) {
  388. uni.$u.http.get('/api/goods', {
  389. params: {
  390. parent_id: id,
  391. limit: 10,
  392. page: this.page,
  393. keyword: this.keyword
  394. }
  395. }).then((res) => {
  396. this.recomlist = this.recomlist.concat(res.data)
  397. this.last_page = res.last_page
  398. }).catch(() => {
  399. })
  400. },
  401. //百万补贴跳转
  402. subsidy(item) {
  403. uni.navigateTo({
  404. url: '/pageA/subsidy?show=' + item
  405. })
  406. },
  407. //物流计算器
  408. counter() {
  409. uni.navigateTo({
  410. url: '/pageA/counter'
  411. })
  412. },
  413. //消息
  414. tochat() {
  415. uni.navigateTo({
  416. url: '/pageA/chat/news'
  417. })
  418. },
  419. //商品分类
  420. shoptype() {
  421. uni.navigateTo({
  422. url: '/pageA/shoptype'
  423. })
  424. },
  425. //分段器切换
  426. sectionChange(index) {
  427. this.current = index;
  428. console.log(index);
  429. if (this.current == 0) {
  430. uni.switchTab({
  431. url: '/pages/express/express?current=0'
  432. })
  433. this.current = 1
  434. }
  435. },
  436. //详情
  437. todetail(id) {
  438. uni.navigateTo({
  439. url: '/pageA/productdetails?id=' + id
  440. })
  441. }
  442. }
  443. }
  444. </script>
  445. <style lang="scss" scoped>
  446. page {
  447. background-color: rgba(0, 0, 0, 0)
  448. }
  449. .index-navbar {
  450. position: sticky;
  451. top: 0;
  452. left: 0;
  453. width: 750rpx;
  454. z-index: 100;
  455. }
  456. ::v-deep .u-tabs {
  457. width: 560rpx;
  458. }
  459. .taber {
  460. border-radius: 4rpx;
  461. padding: 4rpx 8rpx;
  462. margin-bottom: 10rpx;
  463. font-family: PingFangSC, PingFang SC;
  464. font-weight: 400;
  465. font-size: 20rpx;
  466. color: #D48700;
  467. line-height: 28rpx;
  468. text-align: left;
  469. font-style: normal;
  470. }
  471. .title {
  472. font-family: SFPro, SFPro;
  473. font-weight: 400;
  474. font-size: 26rpx;
  475. color: #222222;
  476. line-height: 30rpx;
  477. text-align: left;
  478. font-style: normal;
  479. width: 300rpx;
  480. height: 72rpx;
  481. }
  482. .weight {
  483. font-family: SFPro, SFPro;
  484. font-weight: 400;
  485. font-size: 20rpx;
  486. color: #888888;
  487. line-height: 24rpx;
  488. text-align: left;
  489. font-style: normal;
  490. margin-left: 12rpx;
  491. }
  492. .shopname {
  493. font-family: PingFangSC, PingFang SC;
  494. font-weight: 400;
  495. font-size: 20rpx;
  496. color: #666666;
  497. line-height: 28rpx;
  498. text-align: left;
  499. font-style: normal;
  500. }
  501. .money {
  502. font-family: HarmonyOS_Sans_Medium;
  503. font-size: 28rpx;
  504. color: #F83224;
  505. line-height: 38rpx;
  506. text-align: right;
  507. font-style: normal;
  508. }
  509. .biaoqian {
  510. height: 28rpx;
  511. border-radius: 6rpx;
  512. padding: 6rpx;
  513. margin-left: 8rpx;
  514. font-family: PingFangSC, PingFang SC;
  515. font-weight: 400;
  516. font-size: 20rpx;
  517. color: #FFFFFF;
  518. line-height: 28rpx;
  519. text-align: center;
  520. }
  521. .tag {
  522. // height: 28rpx;
  523. border-radius: 14rpx 14rpx 14rpx 0rpx;
  524. border: 1rpx solid #FFFFFF;
  525. padding: 6rpx;
  526. text-align: center;
  527. font-family: PingFangSC, PingFang SC;
  528. font-weight: 400;
  529. font-size: 20rpx;
  530. color: #FFFFFF;
  531. line-height: 28rpx;
  532. text-align: center;
  533. font-style: normal;
  534. box-sizing: border-box;
  535. // margin-left: -15rpx;
  536. }
  537. .bigbox {
  538. width: 340rpx;
  539. // height: 468rpx;
  540. background: #FFFFFF;
  541. border-radius: 12rpx;
  542. border: 2rpx solid #FFFFFF;
  543. margin-bottom: 22rpx;
  544. padding: 18rpx 20rpx;
  545. box-sizing: border-box;
  546. }
  547. .smallbox {
  548. width: 340rpx;
  549. height: 226rpx;
  550. background: #FFFFFF;
  551. border-radius: 12rpx;
  552. border: 2rpx solid #FFFFFF;
  553. margin-bottom: 22rpx;
  554. padding: 18rpx 20rpx;
  555. box-sizing: border-box;
  556. }
  557. .shopback {
  558. width: 750rpx;
  559. min-height: 1216rpx;
  560. background: #F4F4F4;
  561. border-radius: 28rpx 28rpx 0rpx 0rpx;
  562. padding: 26rpx 24rpx;
  563. box-sizing: border-box;
  564. }
  565. .fenlei {
  566. font-family: PingFangSC, PingFang SC;
  567. font-weight: 400;
  568. font-size: 28rpx;
  569. color: #222222;
  570. line-height: 40rpx;
  571. text-align: right;
  572. font-style: normal;
  573. margin-left: 8rpx;
  574. }
  575. .search {
  576. width: 702rpx;
  577. height: 68rpx;
  578. background: #FFFFFF;
  579. border-radius: 34rpx;
  580. padding: 6rpx 6rpx 6rpx 36rpx;
  581. display: flex;
  582. align-items: center;
  583. justify-content: space-between;
  584. box-sizing: border-box;
  585. .right {
  586. width: 100rpx;
  587. height: 56rpx;
  588. background: #ED0909;
  589. border-radius: 28rpx;
  590. font-family: PingFangSC, PingFang SC;
  591. font-weight: 400;
  592. font-size: 26rpx;
  593. color: #FFFFFF;
  594. line-height: 56rpx;
  595. text-align: center;
  596. }
  597. }
  598. .border {
  599. width: 2rpx;
  600. height: 24rpx;
  601. border: 2rpx solid #979797;
  602. opacity: 0.2;
  603. background-color: #979797;
  604. }
  605. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  606. // background-color: rgba(0, 0, 0, 0) !important;
  607. // }
  608. // ::v-deep .u-status-bar.data-v-13f16680 {
  609. // background-color: rgba(0, 0, 0, 0) !important;
  610. // }
  611. ::v-deep .u-subsection--button.data-v-b14d3440 {
  612. /* padding: 6rpx 34rpx !important; */
  613. border-radius: 64rpx !important;
  614. }
  615. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  616. border-radius: 32rpx !important;
  617. }
  618. </style>