kj-index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  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" style="height: 468rpx;" @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. props: {
  234. language: ''
  235. },
  236. data() {
  237. return {
  238. recomlist: [], //推荐列表
  239. //顶部分段器
  240. // list: [],
  241. current: 1,
  242. //tabs
  243. list1: [{
  244. name: '推荐',
  245. }],
  246. //轮播图
  247. banner: [
  248. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  249. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  250. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  251. ],
  252. show: true,
  253. timer: '',
  254. subsidylist: [], //百万补贴
  255. packlist: [], //拼包好物
  256. shippList: [], //海外包邮
  257. keyword: '',
  258. page: 1,
  259. index: 0,
  260. parent_id: '',
  261. last_page: '',
  262. configimage: '',
  263. url: '',
  264. unReadCount: 0,
  265. type: "error",
  266. }
  267. },
  268. computed: {
  269. i18n() {
  270. return this.$t('index')
  271. },
  272. list() {
  273. var list = []
  274. list = [this.i18n.border, this.i18n.shop]
  275. return list
  276. }
  277. },
  278. onReachBottom() {
  279. if (this.page < this.last_page) {
  280. if (this.current != 0) {
  281. this.page++
  282. this.goods(this.parent_id)
  283. }
  284. } else {
  285. this.$u.toast(this.i18n.Nofurtherdata)
  286. }
  287. },
  288. created(options) {
  289. // this.seater()
  290. //商品推荐
  291. this.getlista()
  292. if (uni.getStorageSync('language') != '') {
  293. this.language = uni.getStorageSync('language')
  294. }
  295. },
  296. mounted() {
  297. console.log(this._language, 'this._language');
  298. this.config()
  299. // tabs列表
  300. this.category()
  301. //百万补贴
  302. this.subsid()
  303. //拼包好物
  304. this.pack()
  305. //海外包邮
  306. this.shipp()
  307. this.recommend()
  308. if (uni.getStorageSync('language') != '') {
  309. this.language = uni.getStorageSync('language')
  310. }
  311. this.HXlogin()
  312. this.bannerList()
  313. },
  314. methods: {
  315. //下拉触底
  316. lower() {
  317. if (this.page < this.last_page) {
  318. if (this.current != 0) {
  319. this.page++
  320. this.goods(this.parent_id)
  321. }
  322. } else {
  323. this.$u.toast(this.i18n.Nofurtherdata)
  324. }
  325. },
  326. //获取快递列表
  327. getlista() {
  328. uni.$u.http.get('/api/express-company', {}).then((res) => {
  329. uni.setStorageSync('radiolist1', res)
  330. }).catch(() => {
  331. })
  332. },
  333. //获取轮播图
  334. bannerList() {
  335. uni.$u.http.get('/api/banner', {}).then((res) => {
  336. this.banner = res.data
  337. }).catch(() => {
  338. })
  339. },
  340. HXlogin() {
  341. if (uni.getStorageSync('user_no') && uni.getStorageSync('pwd')) {
  342. var user_no = uni.getStorageSync('user_no')
  343. var pwd = uni.getStorageSync('pwd')
  344. conn.open({
  345. user: user_no,
  346. pwd: pwd,
  347. appKey: conn.appkey
  348. }).then(() => {
  349. console.log('res');
  350. this.getlist()
  351. }).catch(reason => {
  352. console.log('失败', reason);
  353. })
  354. }
  355. },
  356. getlist() {
  357. this.unReadCount = 0
  358. conn.getServerConversations({
  359. pageSize: 50,
  360. cursor: ''
  361. }).then((res) => {
  362. console.log(res);
  363. res.data.conversations.forEach((item) => {
  364. this.unReadCount += item.unReadCount
  365. })
  366. console.log(this.unReadCount);
  367. })
  368. },
  369. callphone() {
  370. uni.$u.http.get('/api/config', {
  371. params: {
  372. module: 'basic'
  373. }
  374. }).then((res) => {
  375. console.log(res);
  376. uni.makePhoneCall({
  377. phoneNumber: res.service_mobile
  378. })
  379. }).catch(() => {
  380. })
  381. },
  382. advert() {
  383. uni.navigateTo({
  384. url: this.url
  385. })
  386. },
  387. //广告弹窗
  388. config() {
  389. uni.$u.http.get('api/config', {
  390. params: {
  391. module: 'advertising'
  392. }
  393. }).then((res) => {
  394. console.log(res);
  395. this.configimage = res.image
  396. this.url = res.url
  397. }).catch(() => {
  398. })
  399. },
  400. //海外包邮接口
  401. shipp() {
  402. uni.$u.http.post('api/goods/shipping').then((res) => {
  403. this.shippList = res.data.splice(0, 2)
  404. }).catch(() => {
  405. })
  406. },
  407. //拼包好物接口
  408. pack() {
  409. uni.$u.http.post('/api/goods/pack').then((res) => {
  410. this.packlist = res.data.splice(0, 2)
  411. }).catch(() => {
  412. })
  413. },
  414. //百万补贴接口
  415. subsid() {
  416. uni.$u.http.post('/api/goods/subsidy').then((res) => {
  417. console.log(res);
  418. this.subsidylist = res.data.splice(0, 4)
  419. }).catch(() => {
  420. })
  421. },
  422. //标签切换
  423. changetab(e) {
  424. this.page = 1
  425. this.last_page = 0
  426. this.index = e.index
  427. this.parent_id = e.id
  428. if (this.index == 0) {
  429. this.recommend()
  430. } else {
  431. this.recomlist = []
  432. this.goods(this.parent_id)
  433. }
  434. },
  435. search() {
  436. if (this.index == 0) {
  437. this.recommend()
  438. } else {
  439. this.recomlist = []
  440. this.goods(this.parent_id)
  441. }
  442. },
  443. //商品推荐
  444. recommend() {
  445. uni.$u.http.post('/api/goods/recommend', {
  446. keyword: this.keyword
  447. }).then((res) => {
  448. this.recomlist = res
  449. }).catch(() => {
  450. })
  451. },
  452. //商品分类列表
  453. category() {
  454. uni.$u.http.get('/api/goods/category', {
  455. params: {
  456. parent_id: 0
  457. }
  458. }).then((res) => {
  459. const categoryArr = res
  460. this.list1 = [{
  461. name: ''
  462. }]
  463. if (this.language == 'en-US') {
  464. categoryArr.forEach(item => {
  465. item.name = item.name_en
  466. })
  467. this.list1[0].name = 'recommend'
  468. }
  469. if (this.language == 'es-ES') {
  470. categoryArr.forEach(item => {
  471. item.name = item.name_es
  472. })
  473. this.list1[0].name = 'recomendación'
  474. }
  475. if (this.language == 'it-IT') {
  476. categoryArr.forEach(item => {
  477. item.name = item.name_ita
  478. })
  479. this.list1[0].name = 'raccomandata'
  480. }
  481. if (this.language == 'zh-CN') {
  482. categoryArr.forEach(item => {
  483. item.name = item.name_cn
  484. })
  485. this.list1[0].name = '推荐'
  486. }
  487. this.list1 = this.list1.concat(categoryArr)
  488. }).catch(() => {
  489. })
  490. },
  491. //商品列表
  492. goods(id) {
  493. uni.$u.http.get('/api/goods', {
  494. params: {
  495. parent_id: id,
  496. limit: 10,
  497. page: this.page,
  498. keyword: this.keyword
  499. }
  500. }).then((res) => {
  501. this.recomlist = this.recomlist.concat(res.data)
  502. this.last_page = res.last_page
  503. }).catch(() => {
  504. })
  505. },
  506. //百万补贴跳转
  507. subsidy(item) {
  508. uni.navigateTo({
  509. url: '/pageA/subsidy?show=' + item
  510. })
  511. },
  512. //物流计算器
  513. counter() {
  514. uni.navigateTo({
  515. url: '/pageA/counter'
  516. })
  517. },
  518. //消息
  519. tochat() {
  520. uni.navigateTo({
  521. url: '/pageA/chat/news'
  522. })
  523. },
  524. //商品分类
  525. shoptype() {
  526. uni.navigateTo({
  527. url: '/pageA/shoptype'
  528. })
  529. },
  530. //分段器切换
  531. sectionChange(index) {
  532. this.current = index;
  533. console.log(index);
  534. if (this.current == 0) {
  535. uni.switchTab({
  536. url: '/pages/express/express?current=0'
  537. })
  538. this.current = 1
  539. }
  540. },
  541. //详情
  542. todetail(id) {
  543. uni.navigateTo({
  544. url: '/pageA/productdetails?id=' + id
  545. })
  546. }
  547. }
  548. }
  549. </script>
  550. <style lang="scss" scoped>
  551. page {
  552. background-color: rgba(0, 0, 0, 0)
  553. }
  554. .discount {
  555. // width: 100rpx;
  556. padding: 0 6rpx;
  557. height: 36rpx;
  558. background: #FF1515;
  559. border-radius: 6rpx;
  560. position: absolute;
  561. left: 12rpx;
  562. top: 12rpx;
  563. z-index: 10;
  564. font-family: OriyaMN;
  565. font-size: 20rpx;
  566. color: #FFFFFF;
  567. line-height: 36rpx;
  568. text-align: center;
  569. font-style: normal;
  570. }
  571. .index-navbar {
  572. position: sticky;
  573. top: 0;
  574. left: 0;
  575. width: 750rpx;
  576. z-index: 100;
  577. }
  578. ::v-deep .u-tabs {
  579. width: 560rpx;
  580. }
  581. .taber {
  582. border-radius: 4rpx;
  583. padding: 4rpx 8rpx;
  584. margin-bottom: 10rpx;
  585. font-family: PingFangSC, PingFang SC;
  586. font-weight: 400;
  587. font-size: 16rpx;
  588. color: #D48700;
  589. line-height: 28rpx;
  590. text-align: left;
  591. font-style: normal;
  592. }
  593. .title {
  594. font-family: SFPro, SFPro;
  595. font-weight: 400;
  596. font-size: 26rpx;
  597. color: #222222;
  598. // line-height: 30rpx;
  599. // text-align: left;
  600. // font-style: normal;
  601. width: 300rpx;
  602. // height: 70rpx;
  603. overflow: hidden;
  604. text-overflow: ellipsis;
  605. word-break: break-all;
  606. -webkit-line-clamp: 1;
  607. display: -webkit-box;
  608. -webkit-box-orient: vertical;
  609. }
  610. .weight {
  611. font-family: SFPro, SFPro;
  612. font-weight: 400;
  613. font-size: 20rpx;
  614. color: #888888;
  615. line-height: 24rpx;
  616. text-align: left;
  617. font-style: normal;
  618. margin-left: 12rpx;
  619. }
  620. .shopname {
  621. width: 124rpx;
  622. overflow: hidden;
  623. text-overflow: ellipsis;
  624. word-break: break-all;
  625. white-space: nowrap;
  626. font-family: PingFangSC, PingFang SC;
  627. font-weight: 400;
  628. font-size: 20rpx;
  629. color: #666666;
  630. line-height: 28rpx;
  631. text-align: left;
  632. font-style: normal;
  633. }
  634. .money {
  635. font-family: HarmonyOS_Sans_Medium;
  636. font-size: 28rpx;
  637. color: #F83224;
  638. line-height: 38rpx;
  639. text-align: right;
  640. font-style: normal;
  641. }
  642. .biaoqian {
  643. height: 28rpx;
  644. border-radius: 6rpx;
  645. padding: 6rpx;
  646. margin-left: 8rpx;
  647. font-family: PingFangSC, PingFang SC;
  648. font-weight: 400;
  649. font-size: 20rpx;
  650. color: #FFFFFF;
  651. line-height: 30rpx;
  652. text-align: center;
  653. overflow: hidden;
  654. }
  655. .tag {
  656. // height: 28rpx;
  657. border-radius: 14rpx 14rpx 14rpx 0rpx;
  658. border: 1rpx solid #FFFFFF;
  659. padding: 6rpx;
  660. text-align: center;
  661. font-family: PingFangSC, PingFang SC;
  662. font-weight: 400;
  663. font-size: 20rpx;
  664. color: #FFFFFF;
  665. line-height: 28rpx;
  666. text-align: center;
  667. font-style: normal;
  668. box-sizing: border-box;
  669. // margin-left: -15rpx;
  670. }
  671. .bigbox {
  672. width: 340rpx;
  673. // height: 468rpx;
  674. background: #FFFFFF;
  675. border-radius: 12rpx;
  676. border: 2rpx solid #FFFFFF;
  677. margin-bottom: 22rpx;
  678. padding: 18rpx 20rpx;
  679. box-sizing: border-box;
  680. }
  681. .smallbox {
  682. width: 340rpx;
  683. height: 226rpx;
  684. background: #FFFFFF;
  685. border-radius: 12rpx;
  686. border: 2rpx solid #FFFFFF;
  687. margin-bottom: 22rpx;
  688. padding: 18rpx 20rpx;
  689. box-sizing: border-box;
  690. }
  691. .shopback {
  692. width: 750rpx;
  693. min-height: 1216rpx;
  694. background: #F4F4F4;
  695. border-radius: 28rpx 28rpx 0rpx 0rpx;
  696. padding: 26rpx 24rpx;
  697. box-sizing: border-box;
  698. }
  699. .fenlei {
  700. font-family: PingFangSC, PingFang SC;
  701. font-weight: 400;
  702. font-size: 28rpx;
  703. color: #222222;
  704. line-height: 40rpx;
  705. text-align: right;
  706. font-style: normal;
  707. margin-left: 8rpx;
  708. }
  709. .search {
  710. width: 702rpx;
  711. height: 68rpx;
  712. background: #FFFFFF;
  713. border-radius: 34rpx;
  714. padding: 6rpx 6rpx 6rpx 36rpx;
  715. display: flex;
  716. align-items: center;
  717. justify-content: space-between;
  718. box-sizing: border-box;
  719. .right {
  720. width: 100rpx;
  721. height: 56rpx;
  722. background: #ED0909;
  723. border-radius: 28rpx;
  724. font-family: PingFangSC, PingFang SC;
  725. font-weight: 400;
  726. font-size: 26rpx;
  727. color: #FFFFFF;
  728. line-height: 56rpx;
  729. text-align: center;
  730. }
  731. }
  732. .border {
  733. width: 2rpx;
  734. height: 24rpx;
  735. border: 2rpx solid #979797;
  736. opacity: 0.2;
  737. background-color: #979797;
  738. }
  739. // ::v-deep .u-navbar__content.data-v-1194bf80 {
  740. // background-color: rgba(0, 0, 0, 0) !important;
  741. // }
  742. // ::v-deep .u-status-bar.data-v-13f16680 {
  743. // background-color: rgba(0, 0, 0, 0) !important;
  744. // }
  745. ::v-deep .u-subsection--button.data-v-b14d3440 {
  746. /* padding: 6rpx 34rpx !important; */
  747. border-radius: 64rpx !important;
  748. }
  749. ::v-deep .u-subsection--button__bar.data-v-b14d3440 {
  750. border-radius: 32rpx !important;
  751. }
  752. </style>