index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  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" style="width: 570rpx;height: 764rpx;border-radius: 16rpx;" mode=""></image>
  204. <view class="" style="text-align: center;" @click='show=false'>
  205. <image src="../../static/images/index/close.png" mode="" style="width: 70rpx;height: 70rpx;">
  206. </image>
  207. </view>
  208. </view>
  209. </u-popup>
  210. <!-- <view class="" style="height: 160rpx;" v-if="recomlist.length >3"></view> -->
  211. <kj-tabbar :value1=1></kj-tabbar>
  212. </view>
  213. </template>
  214. <script>
  215. import {
  216. recom
  217. } from "../../network/shopApi.js";
  218. export default {
  219. data() {
  220. return {
  221. recomlist: [], //推荐列表
  222. //顶部分段器
  223. list: [],
  224. current: 1,
  225. //tabs
  226. list1: [{
  227. name: '推荐',
  228. }],
  229. //轮播图
  230. banner: [
  231. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  232. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  233. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  234. ],
  235. show: true,
  236. timer: '',
  237. language: 'zh-CN',
  238. subsidylist: [], //百万补贴
  239. packlist: [], //拼包好物
  240. shippList: [], //海外包邮
  241. keyword: '',
  242. page: 1,
  243. index: 0,
  244. parent_id: '',
  245. last_page: '',
  246. configimage: '',
  247. }
  248. },
  249. computed: {
  250. i18n() {
  251. return this.$t('index')
  252. }
  253. },
  254. onReachBottom() {
  255. if (this.page == this.last_page) {
  256. this.$u.toast('已无更多数据')
  257. } else {
  258. if (this.current != 0) {
  259. this.page++
  260. this.goods(this.parent_id)
  261. }
  262. }
  263. },
  264. onLoad(options) {
  265. this.list = [this.i18n.border, this.i18n.shop]
  266. // this.seater()
  267. if (options.current) {
  268. this.current = options.current
  269. }
  270. //商品推荐
  271. this.recommend()
  272. },
  273. onShow() {
  274. this.config()
  275. // tabs列表
  276. this.category()
  277. //百万补贴
  278. this.subsid()
  279. //拼包好物
  280. this.pack()
  281. //海外包邮
  282. this.shipp()
  283. if (uni.getStorageSync('language') != '') {
  284. this.language = uni.getStorageSync('language')
  285. }
  286. },
  287. methods: {
  288. //广告弹窗
  289. config() {
  290. uni.$u.http.get('api/config', {
  291. params: {
  292. module: 'advertising'
  293. }
  294. }).then((res) => {
  295. console.log(res);
  296. this.configimage = res.image
  297. }).catch(() => {
  298. })
  299. },
  300. //海外包邮接口
  301. shipp() {
  302. uni.$u.http.post('api/goods/shipping').then((res) => {
  303. this.shippList = res.splice(0, 2)
  304. }).catch(() => {
  305. })
  306. },
  307. //拼包好物接口
  308. pack() {
  309. uni.$u.http.post('/api/goods/pack').then((res) => {
  310. this.packlist = res.splice(0, 2)
  311. }).catch(() => {
  312. })
  313. },
  314. //百万补贴接口
  315. subsid() {
  316. uni.$u.http.post('/api/goods/subsidy').then((res) => {
  317. this.subsidylist = res.splice(0, 4)
  318. }).catch(() => {
  319. })
  320. },
  321. //标签切换
  322. changetab(e) {
  323. this.index = e.index
  324. this.parent_id = e.id
  325. if (this.index == 0) {
  326. this.recommend()
  327. } else {
  328. this.recomlist = []
  329. this.goods(this.parent_id)
  330. }
  331. },
  332. search() {
  333. if (this.index == 0) {
  334. this.recommend()
  335. } else {
  336. this.recomlist = []
  337. this.goods(this.parent_id)
  338. }
  339. },
  340. //商品推荐
  341. recommend() {
  342. uni.$u.http.post('/api/goods/recommend', {
  343. keyword: this.keyword
  344. }).then((res) => {
  345. this.recomlist = res
  346. }).catch(() => {
  347. })
  348. },
  349. //商品分类列表
  350. category() {
  351. uni.$u.http.get('/api/goods/category', {
  352. params: {
  353. parent_id: 0
  354. }
  355. }).then((res) => {
  356. const categoryArr = res
  357. this.list1 = [{
  358. name: ''
  359. }]
  360. if (this.language == 'en-US') {
  361. categoryArr.forEach(item => {
  362. item.name = item.name_en
  363. })
  364. this.list1[0].name = 'recommend'
  365. }
  366. if (this.language == 'es-ES') {
  367. categoryArr.forEach(item => {
  368. item.name = item.name_es
  369. })
  370. this.list1[0].name = 'recomendación'
  371. }
  372. if (this.language == 'it-IT') {
  373. categoryArr.forEach(item => {
  374. item.name = item.name_ita
  375. })
  376. this.list1[0].name = 'raccomandata'
  377. }
  378. if (this.language == 'zh-CN') {
  379. categoryArr.forEach(item => {
  380. item.name = item.name_cn
  381. })
  382. this.list1[0].name = '推荐'
  383. }
  384. this.list1 = this.list1.concat(categoryArr)
  385. }).catch(() => {
  386. })
  387. },
  388. //商品列表
  389. goods(id) {
  390. uni.$u.http.get('/api/goods', {
  391. params: {
  392. parent_id: id,
  393. limit: 10,
  394. page: this.page,
  395. keyword: this.keyword
  396. }
  397. }).then((res) => {
  398. this.recomlist = this.recomlist.concat(res.data)
  399. this.last_page = res.last_page
  400. }).catch(() => {
  401. })
  402. },
  403. //百万补贴跳转
  404. subsidy(item) {
  405. uni.navigateTo({
  406. url: '/pageA/subsidy?show=' + item
  407. })
  408. },
  409. //物流计算器
  410. counter() {
  411. uni.navigateTo({
  412. url: '/pageA/counter'
  413. })
  414. },
  415. //消息
  416. tochat() {
  417. uni.navigateTo({
  418. url: '/pageA/chat/news'
  419. })
  420. },
  421. //商品分类
  422. shoptype() {
  423. uni.navigateTo({
  424. url: '/pageA/shoptype'
  425. })
  426. },
  427. //分段器切换
  428. sectionChange(index) {
  429. this.current = index;
  430. console.log(index);
  431. if (this.current == 0) {
  432. uni.switchTab({
  433. url: '/pages/express/express?current=0'
  434. })
  435. this.current = 1
  436. }
  437. },
  438. //详情
  439. todetail(id) {
  440. uni.navigateTo({
  441. url: '/pageA/productdetails?id=' + id
  442. })
  443. }
  444. }
  445. }
  446. </script>
  447. <style lang="scss" scoped>
  448. page {
  449. background-color: rgba(0, 0, 0, 0)
  450. }
  451. .index-navbar {
  452. position: sticky;
  453. top: 0;
  454. left: 0;
  455. width: 750rpx;
  456. z-index: 100;
  457. }
  458. ::v-deep .u-tabs {
  459. width: 560rpx;
  460. }
  461. .taber {
  462. border-radius: 4rpx;
  463. padding: 4rpx 8rpx;
  464. margin-bottom: 10rpx;
  465. font-family: PingFangSC, PingFang SC;
  466. font-weight: 400;
  467. font-size: 20rpx;
  468. color: #D48700;
  469. line-height: 28rpx;
  470. text-align: left;
  471. font-style: normal;
  472. }
  473. .title {
  474. font-family: SFPro, SFPro;
  475. font-weight: 400;
  476. font-size: 26rpx;
  477. color: #222222;
  478. // line-height: 30rpx;
  479. // text-align: left;
  480. // font-style: normal;
  481. width: 300rpx;
  482. // height: 70rpx;
  483. overflow: hidden;
  484. text-overflow: ellipsis ;
  485. -webkit-line-clamp: 2;
  486. display: -webkit-box;
  487. -webkit-box-orient:vertical;
  488. }
  489. .weight {
  490. font-family: SFPro, SFPro;
  491. font-weight: 400;
  492. font-size: 20rpx;
  493. color: #888888;
  494. line-height: 24rpx;
  495. text-align: left;
  496. font-style: normal;
  497. margin-left: 12rpx;
  498. }
  499. .shopname {
  500. font-family: PingFangSC, PingFang SC;
  501. font-weight: 400;
  502. font-size: 20rpx;
  503. color: #666666;
  504. line-height: 28rpx;
  505. text-align: left;
  506. font-style: normal;
  507. }
  508. .money {
  509. font-family: HarmonyOS_Sans_Medium;
  510. font-size: 28rpx;
  511. color: #F83224;
  512. line-height: 38rpx;
  513. text-align: right;
  514. font-style: normal;
  515. }
  516. .biaoqian {
  517. height: 28rpx;
  518. border-radius: 6rpx;
  519. padding: 6rpx;
  520. margin-left: 8rpx;
  521. font-family: PingFangSC, PingFang SC;
  522. font-weight: 400;
  523. font-size: 20rpx;
  524. color: #FFFFFF;
  525. line-height: 28rpx;
  526. text-align: center;
  527. }
  528. .tag {
  529. // height: 28rpx;
  530. border-radius: 14rpx 14rpx 14rpx 0rpx;
  531. border: 1rpx solid #FFFFFF;
  532. padding: 6rpx;
  533. text-align: center;
  534. font-family: PingFangSC, PingFang SC;
  535. font-weight: 400;
  536. font-size: 20rpx;
  537. color: #FFFFFF;
  538. line-height: 28rpx;
  539. text-align: center;
  540. font-style: normal;
  541. box-sizing: border-box;
  542. // margin-left: -15rpx;
  543. }
  544. .bigbox {
  545. width: 340rpx;
  546. // height: 468rpx;
  547. background: #FFFFFF;
  548. border-radius: 12rpx;
  549. border: 2rpx solid #FFFFFF;
  550. margin-bottom: 22rpx;
  551. padding: 18rpx 20rpx;
  552. box-sizing: border-box;
  553. }
  554. .smallbox {
  555. width: 340rpx;
  556. height: 226rpx;
  557. background: #FFFFFF;
  558. border-radius: 12rpx;
  559. border: 2rpx solid #FFFFFF;
  560. margin-bottom: 22rpx;
  561. padding: 18rpx 20rpx;
  562. box-sizing: border-box;
  563. }
  564. .shopback {
  565. width: 750rpx;
  566. min-height: 1216rpx;
  567. background: #F4F4F4;
  568. border-radius: 28rpx 28rpx 0rpx 0rpx;
  569. padding: 26rpx 24rpx;
  570. box-sizing: border-box;
  571. }
  572. .fenlei {
  573. font-family: PingFangSC, PingFang SC;
  574. font-weight: 400;
  575. font-size: 28rpx;
  576. color: #222222;
  577. line-height: 40rpx;
  578. text-align: right;
  579. font-style: normal;
  580. margin-left: 8rpx;
  581. }
  582. .search {
  583. width: 702rpx;
  584. height: 68rpx;
  585. background: #FFFFFF;
  586. border-radius: 34rpx;
  587. padding: 6rpx 6rpx 6rpx 36rpx;
  588. display: flex;
  589. align-items: center;
  590. justify-content: space-between;
  591. box-sizing: border-box;
  592. .right {
  593. width: 100rpx;
  594. height: 56rpx;
  595. background: #ED0909;
  596. border-radius: 28rpx;
  597. font-family: PingFangSC, PingFang SC;
  598. font-weight: 400;
  599. font-size: 26rpx;
  600. color: #FFFFFF;
  601. line-height: 56rpx;
  602. text-align: center;
  603. }
  604. }
  605. .border {
  606. width: 2rpx;
  607. height: 24rpx;
  608. border: 2rpx solid #979797;
  609. opacity: 0.2;
  610. background-color: #979797;
  611. }
  612. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  613. // background-color: rgba(0, 0, 0, 0) !important;
  614. // }
  615. // ::v-deep .u-status-bar.data-v-13f16680 {
  616. // background-color: rgba(0, 0, 0, 0) !important;
  617. // }
  618. ::v-deep .u-subsection--button.data-v-b14d3440 {
  619. /* padding: 6rpx 34rpx !important; */
  620. border-radius: 64rpx !important;
  621. }
  622. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  623. border-radius: 32rpx !important;
  624. }
  625. </style>