kj-index.vue 20 KB

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