index.vue 13 KB

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