index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. <template>
  2. <view>
  3. <u-notice-bar :autoplay="autoplay" :playState="playState" :speed="speed" :mode="mode" @click="click"
  4. :show="show" :type="type" :list="list" :moreIcon="moreIcon" :volumeIcon="volumeIcon" :duration="duration"
  5. bgColor="" padding="8rpx 24rpx" :isCircular="isCircular"
  6. style="position: absolute;top: 12%;z-index: 9;width: 100%;"></u-notice-bar>
  7. <!-- 更新组件 force 是否强制更新 tabbar:页面是否有原生tabbar组件-->
  8. <app-update ref="app_update" :tabbar="false"></app-update>
  9. <!-- 状态栏 -->
  10. <view class="status" :style="{position:headerPosition,backgroundColor:bgColor}"></view>
  11. <!-- 漂浮头部 -->
  12. <view class="header" :style="{position:headerPosition,backgroundColor:bgColor}">
  13. <view class="scan">
  14. <view class="icon iconfont icon-scan" @tap="scan"></view>
  15. </view>
  16. <view class="input">
  17. <view class="icon iconfont icon-search"></view>
  18. <input disabled placeholder="车险" @tap="toSearch()" />
  19. </view>
  20. <view class="menu">
  21. <image mode="aspectFill" :src="avatar"></image>
  22. </view>
  23. </view>
  24. <!-- 公共组件-每个页面必须引入 -->
  25. <public-module></public-module>
  26. <!-- 占位 -->
  27. <view class="place" :style="{backgroundColor:'#fff'}"></view>
  28. <!-- 轮播图 -->
  29. <swiper-image :resdata="swiperList" @changeEvent="swiperChange"></swiper-image>
  30. <!-- 分类轮播 -->
  31. <view class="px-2">
  32. <view class="py-1" style="border-radius: 20upx;background-color: #ffffff;">
  33. <index-nav :resdata="categoryList" :row="2"></index-nav>
  34. </view>
  35. </view>
  36. <!-- 推荐商品 -->
  37. <view class="pick" :style="{'background':'#fff'}">
  38. <view class="box">
  39. <view class="title">
  40. <view class="big">推荐商品</view>
  41. <view class="small">好货推荐 低价精选</view>
  42. </view>
  43. <view class="product-list">
  44. <view v-for="product in pickList" :key="product.goods_id" @tap="toPick(product)">
  45. <image mode="widthFix" :src="product.img"></image>
  46. <view class="price">{{product.price}}起</view>
  47. <view class="slogan">{{product.slogan}}</view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 广告横幅 -->
  53. <view class="banner">
  54. <image mode="widthFix" src="/static/image/index/ad-img/ad.jpg"></image>
  55. </view>
  56. <!-- 商品列表 -->
  57. <view class="goods-list">
  58. <view class="title">— 猜你喜欢 —</view>
  59. <view class="product-list">
  60. <view class="product" v-for="product in productList" :key="product.goods_id" @tap="toGoods(product)">
  61. <image mode="widthFix" :src="product.img"></image>
  62. <view class="name">{{product.name}}</view>
  63. <view class="info">
  64. <view class="price">¥{{product.price}} 起</view>
  65. <view class="slogan">{{product.slogan}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="loading-text">{{loadingText}}</view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. import swiperImage from "@/components/modules/index/swiper-image.vue"
  75. import indexNav from "@/components/modules/index/index-nav.vue"
  76. import appUpdate from "@/components/yzhua006-update/app-update.vue"; //app更新组件
  77. import bankBin from "@/common/bankcardinfo.js"
  78. import store from '@/store';
  79. import {
  80. pathToBase64,
  81. base64ToPath
  82. } from '@/common/image-tools-base64.js';
  83. import {
  84. mapState
  85. } from "vuex"
  86. export default {
  87. components: {
  88. swiperImage,
  89. indexNav,
  90. appUpdate
  91. },
  92. data() {
  93. return {
  94. xuelishow: false,
  95. border: false,
  96. form: {
  97. name: "", //姓名
  98. identity: "", //身份证号
  99. birthday: "", //出生日期
  100. addressnow: "", //居住地址
  101. education: "", //学历
  102. bankname: "", //开户行
  103. accountno: "", //银行卡号
  104. },
  105. labelPosition: 'left',
  106. errorType: ['message'],
  107. rules: {
  108. name: [{
  109. required: true,
  110. message: '请输入姓名',
  111. trigger: 'blur',
  112. }, ]
  113. },
  114. contentSlot: true,
  115. showTitle: false,
  116. asyncClose: false,
  117. show: false,
  118. autoplay: true,
  119. type: 'warning',
  120. list: ['欢迎登录晋掌柜,请点击此处文字进行实名验证,方可使用所有功能。'],
  121. mode: 'horizontal',
  122. playState: 'play',
  123. speed: 160,
  124. duration: 1000,
  125. moreIcon: true,
  126. volumeIcon: true,
  127. isCircular: true,
  128. current: 0,
  129. banben: {},
  130. bgColor: "#4B75EB",
  131. //轮播
  132. swiperList: [],
  133. //分类
  134. categoryList: [{
  135. cat_id: 0,
  136. img: '/static/image/index/category-img/0.png',
  137. title: '车险',
  138. src: '/pages/carInsure/entry'
  139. },
  140. {
  141. cat_id: 1,
  142. img: '/static/image/index/category-img/1.png',
  143. title: '车损测算',
  144. src: ''
  145. },
  146. {
  147. cat_id: 2,
  148. img: '/static/image/index/category-img/2.png',
  149. title: '道路救援',
  150. src: ''
  151. },
  152. {
  153. cat_id: 3,
  154. img: '/static/image/index/category-img/3.png',
  155. title: '司法鉴定',
  156. src: ''
  157. },
  158. {
  159. cat_id: 4,
  160. img: '/static/image/index/category-img/4.png',
  161. title: '掌柜商城',
  162. src: ''
  163. },
  164. {
  165. cat_id: 5,
  166. img: '/static/image/index/category-img/5.png',
  167. title: '洗车',
  168. src: ''
  169. },
  170. {
  171. cat_id: 6,
  172. img: '/static/image/index/category-img/6.png',
  173. title: '审车',
  174. src: ''
  175. },
  176. {
  177. cat_id: 7,
  178. img: '/static/image/index/category-img/7.png',
  179. title: '代驾',
  180. src: ''
  181. },
  182. {
  183. cat_id: 8,
  184. img: '/static/image/index/category-img/8.png',
  185. title: '车检代办',
  186. src: '/pages/caragent/index'
  187. },
  188. {
  189. cat_id: 9,
  190. img: '/static/image/index/category-img/9.png',
  191. title: '一键挪车',
  192. src: '/pages/ticket/ticket'
  193. }
  194. ],
  195. //推荐商品 3个
  196. pickList: [{
  197. goods_id: 0,
  198. img: '/static/image/index/pick-img/p1.jpg',
  199. price: '¥5.85',
  200. slogan: '限时抢购'
  201. },
  202. {
  203. goods_id: 1,
  204. img: '/static/image/index/pick-img/p2.jpg',
  205. price: '¥270',
  206. slogan: '精选商品'
  207. },
  208. {
  209. goods_id: 2,
  210. img: '/static/image/index/pick-img/p3.jpg',
  211. price: '¥281',
  212. slogan: '今日疯抢'
  213. }
  214. ],
  215. //猜你喜欢列表
  216. productList: [{
  217. goods_id: 0,
  218. img: '/static/image/index/img/p1.jpg',
  219. name: '平安个人意外伤害险',
  220. price: '25.8',
  221. slogan: '1235人购买'
  222. },
  223. {
  224. goods_id: 1,
  225. img: '/static/image/index/img/p2.jpg',
  226. name: '一年期意外险',
  227. price: '1.2',
  228. slogan: '1235人购买'
  229. },
  230. {
  231. goods_id: 2,
  232. img: '/static/image/index/img/p3.jpg',
  233. name: '平安行·国内自助游保险',
  234. price: '88',
  235. slogan: '1235人购买'
  236. },
  237. {
  238. goods_id: 3,
  239. img: '/static/image/index/img/p4.jpg',
  240. name: '企业团体综合意外险',
  241. price: '1.9',
  242. slogan: '1235人购买'
  243. },
  244. {
  245. goods_id: 4,
  246. img: '/static/image/index/img/p5.jpg',
  247. name: '平安行·境内自驾旅游保险',
  248. price: '442',
  249. slogan: '1235人购买'
  250. },
  251. {
  252. goods_id: 5,
  253. img: '/static/image/index/img/p6.jpg',
  254. name: '平安行·境内节假日旅游保险',
  255. price: '257',
  256. slogan: '1235人购买'
  257. },
  258. {
  259. goods_id: 6,
  260. img: '/static/image/index/img/p7.jpg',
  261. name: '平安行·境内高原旅游保险',
  262. price: '0.2',
  263. slogan: '1235人购买'
  264. },
  265. {
  266. goods_id: 7,
  267. img: '/static/image/index/img/p8.jpg',
  268. name: '儿童综合医疗保险',
  269. price: '1400',
  270. slogan: '1235人购买'
  271. },
  272. {
  273. goods_id: 8,
  274. img: '/static/image/index/img/p9.jpg',
  275. name: '女性关爱保险',
  276. price: '70',
  277. slogan: '1235人付款'
  278. },
  279. {
  280. goods_id: 9,
  281. img: '/static/image/index/img/p10.jpg',
  282. name: '全球交通意外保险',
  283. price: '74.5',
  284. slogan: '1235人购买'
  285. }
  286. ],
  287. headerPosition: "fixed",
  288. loadingText: "正在加载...",
  289. getApplicationStatus: "",
  290. };
  291. },
  292. mounted() {
  293. setTimeout(() => {
  294. this.$refs.app_update.update(); //调用子组件检查更新方法
  295. setTimeout(() => {
  296. if (this.$refs.app_update.popup_show == true && this.$refs.app_update.force == true) {
  297. uni.hideTabBar()
  298. }
  299. }, 100)
  300. }, 2000)
  301. },
  302. computed: {
  303. ...mapState(['avatar', 'userInfo'])
  304. },
  305. onPageScroll(e) {
  306. //兼容iOS端下拉时顶部漂移
  307. if (e.scrollTop >= 0) {
  308. this.headerPosition = "fixed";
  309. } else {
  310. this.headerPosition = "absolute";
  311. }
  312. },
  313. async onLoad() {
  314. // uni.startPullDownRefresh();
  315. let res = await this.$http.get('/apps/getApplicationStatus?jobNumber=' + this.userInfo.sysUser.id);
  316. if (res.code == 200) {
  317. if (res.data == '0') {
  318. this.getApplicationStatus = res.data;
  319. }
  320. } else {
  321. }
  322. let banner = await this.$http.get('/apps/getCarousel');
  323. this.swiperList = banner.data;
  324. this.bgColor = this.swiperList[0].color;
  325. },
  326. // async onReady() {
  327. // this.bgColor = this.swiperList[0].color;
  328. // },
  329. //下拉刷新,需要自己在page.json文件中配置开启页面下拉刷新 "enablePullDownRefresh": true
  330. async onPullDownRefresh() {
  331. let userInfoRes = await this.$http.get('/esmUserInternal/findById?id=' + this.userInfo.sysUser.id, {}, {});
  332. uni.stopPullDownRefresh();
  333. store.commit('setUserModules', {
  334. title: 'userInfo',
  335. data: userInfoRes.data
  336. })
  337. if (userInfoRes.data.sysUser.status == 2) {
  338. this.show = true;
  339. } else {
  340. this.show = false;
  341. }
  342. },
  343. //上拉加载,需要自己在page.json文件中配置"onReachBottomDistance"
  344. onReachBottom() {
  345. uni.showLoading({
  346. mask: true,
  347. title: "Loading..."
  348. })
  349. let len = this.productList.length;
  350. if (len >= 40) {
  351. uni.hideLoading()
  352. this.loadingText = "到底了";
  353. return false;
  354. }
  355. let end_goods_id = this.productList[len - 1].goods_id;
  356. for (let i = 1; i <= 10; i++) {
  357. let goods_id = end_goods_id + i;
  358. let goods_name = this.productList[i - 1].name;
  359. let goods_price = this.productList[i - 1].price;
  360. let p = {
  361. goods_id: goods_id,
  362. img: '/static/image/index/img/p' + (goods_id % 10 == 0 ? 10 : goods_id % 10) + '.jpg',
  363. name: goods_name,
  364. price: goods_price,
  365. slogan: '1235人购买'
  366. };
  367. this.productList.push(p);
  368. }
  369. setTimeout(() => {
  370. uni.hideLoading()
  371. }, 1000)
  372. },
  373. async onShow() {
  374. if (this.userInfo.sysUser.status == '2') {
  375. this.show = true;
  376. } else {
  377. this.show = false;
  378. }
  379. },
  380. methods: {
  381. async chooseImage() {
  382. var _this = this;
  383. uni.chooseImage({
  384. count: 1,
  385. sizeType: "compressed",
  386. success(res) {
  387. pathToBase64(res.tempFilePaths[0])
  388. .then(async base64 => {
  389. var paramImg = {
  390. "image": base64, //图片base64
  391. "imgType": "1" //1身份证 2行驶证
  392. }
  393. let res2 = await _this.$http.post('/api/huanong/imgAI', paramImg);
  394. var data = res2.data.customerInfo;
  395. data.identifyValidDate = data.identifyValidDate.substr(0, 4) + '-' +
  396. data.identifyValidDate.substr(4, 2) + "-" + data.identifyValidDate
  397. .substr(6, 2)
  398. _this.form.name = data.name;
  399. _this.form.identifyNumber = data.identifyNumber;
  400. _this.form.identifyValidDate = data.identifyValidDate;
  401. })
  402. }
  403. });
  404. },
  405. // 验证银行卡
  406. async validateBankCard() {
  407. var that = this;
  408. that.bankname = "";
  409. await bankBin.getBankBin(this.form.name4)
  410. .then((data) => {
  411. that.form.name5 = data.bankName;
  412. return true;
  413. })
  414. .catch((err) => {
  415. return uni.showToast({
  416. title: err.split(":")[1],
  417. icon: "none"
  418. });
  419. })
  420. },
  421. //点击通知
  422. async click(index) {
  423. let res1 = await this.$http.get('/apps/getApplicationStatus?jobNumber=' + this.userInfo.sysUser.id);
  424. if (res1.code == 200) {
  425. this.getApplicationStatus = res1.data;
  426. if (this.getApplicationStatus == '0') {
  427. uni.showToast({
  428. icon: "none",
  429. title: '实名认证等待审核中',
  430. duration: 1500
  431. })
  432. } else if (this.getApplicationStatus == '3') {
  433. uni.showToast({
  434. icon: "none",
  435. title: '实名认证不通过,请修改后提交',
  436. duration: 1500
  437. })
  438. setTimeout(() => {
  439. uni.navigateTo({
  440. url: '/pages/user/certification'
  441. })
  442. }, 1000)
  443. }
  444. } else if (res1.code != '200') {
  445. setTimeout(() => {
  446. uni.navigateTo({
  447. url: '/pages/user/infoInput'
  448. })
  449. }, 1000)
  450. }
  451. if (res1.code == 200) {
  452. this.getApplicationStatus = res1.data;
  453. }
  454. },
  455. // 改变头部颜色
  456. swiperChange(event) {
  457. this.bgColor = this.swiperList[event.detail.current].color;
  458. },
  459. //扫一扫
  460. scan() {
  461. uni.scanCode({
  462. success: (res) => {
  463. uni.showToast({
  464. title: '条码内容:' + res.result
  465. });
  466. }
  467. });
  468. },
  469. //搜索跳转
  470. toSearch() {
  471. // uni.showToast({title: "建议跳转到新页面做搜索功能"});
  472. },
  473. //推荐商品跳转
  474. toPick(e) {
  475. // uni.showToast({title: '推荐商品'+e.goods_id});
  476. },
  477. //商品跳转
  478. toGoods(e) {
  479. // uni.showToast({title: '商品'+e.goods_id});
  480. },
  481. }
  482. };
  483. </script>
  484. <style>
  485. .icon {
  486. font-size: 50upx;
  487. font-style: normal;
  488. color: #ffffff;
  489. }
  490. .status {
  491. width: 100%;
  492. height: 0;
  493. /* #ifdef APP-PLUS */
  494. height: var(--status-bar-height);
  495. /* #endif */
  496. position: fixed;
  497. top: 0;
  498. z-index: 999;
  499. }
  500. .header {
  501. width: 100%;
  502. height: 100upx;
  503. display: flex;
  504. position: fixed;
  505. top: 0;
  506. /* #ifdef APP-PLUS */
  507. top: var(--status-bar-height);
  508. /* #endif */
  509. z-index: 996;
  510. }
  511. .header .scan {
  512. width: 100upx;
  513. height: 100upx;
  514. flex-shrink: 1;
  515. display: flex;
  516. justify-content: center;
  517. align-items: center;
  518. }
  519. .header .input {
  520. width: calc(100% - 200upx);
  521. display: flex;
  522. justify-content: center;
  523. align-items: center;
  524. position: relative;
  525. }
  526. .header .input input {
  527. width: calc(100% - 60upx);
  528. height: 60upx;
  529. background-color: #ffffff;
  530. border-radius: 60upx;
  531. padding-left: 60upx;
  532. font-size: 30upx;
  533. }
  534. .header .input .icon {
  535. width: 60upx;
  536. height: 60upx;
  537. position: absolute;
  538. color: #a18090;
  539. z-index: 996;
  540. top: 20upx;
  541. left: 0;
  542. font-size: 40upx;
  543. display: flex;
  544. justify-content: center;
  545. align-items: center;
  546. }
  547. .header .menu {
  548. background-color: #FFFFFF;
  549. border-radius: 50%;
  550. box-sizing: border-box;
  551. margin: 20upx;
  552. width: 60upx;
  553. height: 60upx;
  554. flex-shrink: 1;
  555. display: flex;
  556. justify-content: center;
  557. align-items: center;
  558. }
  559. .header .menu image {
  560. width: 50upx;
  561. height: 50upx;
  562. border-radius: 60upx;
  563. }
  564. /* 占位 */
  565. .place {
  566. /* #ifdef APP-PLUS */
  567. margin-top: var(--status-bar-height);
  568. /* #endif */
  569. height: 100upx;
  570. }
  571. .pick {
  572. padding: 0 2.5vw 2.5vw 2.5vw;
  573. }
  574. .pick .box {
  575. width: 100%;
  576. border-radius: 20upx;
  577. background-color: #ffffff;
  578. }
  579. .pick .box .title {
  580. display: flex;
  581. justify-content: flex-start;
  582. align-items: flex-end;
  583. height: 60upx;
  584. border-bottom: solid 1upx #eee;
  585. padding-bottom: 10upx;
  586. }
  587. .pick .box .title .big {
  588. font-size: 34upx;
  589. padding-left: 20upx;
  590. color: #46434f;
  591. }
  592. .pick .box .title .small {
  593. font-size: 24upx;
  594. padding-left: 20upx;
  595. color: #827f8b;
  596. }
  597. .pick .box .product-list {
  598. padding-top: 15upx;
  599. box-sizing: border-box;
  600. overflow: hidden;
  601. }
  602. .pick .box .product-list>view {
  603. background-color: #f8f8f8;
  604. display: inline-block;
  605. width: calc(50% - 10upx);
  606. position: relative;
  607. box-sizing: border-box;
  608. margin: 5upx;
  609. float: left;
  610. }
  611. .pick .box .product-list>view:nth-child(1) {
  612. height: 390upx;
  613. }
  614. .pick .box .product-list>view:nth-child(2),
  615. .pick .box .product-list>view:nth-child(3) {
  616. height: 190upx;
  617. }
  618. .pick .box .product-list>view:nth-child(1) .price {
  619. color: #e65339;
  620. font-size: 26upx;
  621. position: absolute;
  622. bottom: 6upx;
  623. left: 8upx;
  624. }
  625. .pick .box .product-list>view:nth-child(1) .slogan {
  626. color: #807c87;
  627. font-size: 26upx;
  628. position: absolute;
  629. bottom: 6upx;
  630. right: 15upx;
  631. }
  632. .pick .box .product-list>view:nth-child(1) image {
  633. width: 100%;
  634. height: 350upx !important;
  635. padding: 15upx;
  636. box-sizing: border-box;
  637. margin-bottom: 40upx;
  638. }
  639. .pick .box .product-list>view:nth-child(2),
  640. .pick .box .product-list>view:nth-child(3) {
  641. padding: 10upx;
  642. box-sizing: border-box;
  643. }
  644. .pick .box .product-list>view:nth-child(2) image,
  645. .pick .box .product-list>view:nth-child(3) image {
  646. width: calc(50% - 5upx);
  647. height: 170upx !important;
  648. }
  649. .pick .box .product-list>view:nth-child(2) .price,
  650. .pick .box .product-list>view:nth-child(3) .price {
  651. position: absolute;
  652. top: 25%;
  653. left: 55%;
  654. color: #e65339;
  655. font-size: 30upx;
  656. }
  657. .pick .box .product-list>view:nth-child(2) .slogan,
  658. .pick .box .product-list>view:nth-child(3) .slogan {
  659. position: absolute;
  660. top: 60%;
  661. left: 55%;
  662. color: #807c87;
  663. font-size: 26upx;
  664. }
  665. .banner image {
  666. width: 100%;
  667. }
  668. .goods-list {
  669. background-color: #f4f4f4;
  670. }
  671. .goods-list .title {
  672. width: 100%;
  673. display: flex;
  674. justify-content: center;
  675. align-items: center;
  676. height: 60upx;
  677. color: #979797;
  678. font-size: 24upx;
  679. }
  680. .goods-list .loading-text {
  681. width: 100%;
  682. display: flex;
  683. justify-content: center;
  684. align-items: center;
  685. height: 60upx;
  686. color: #979797;
  687. font-size: 24upx;
  688. }
  689. .goods-list .product-list {
  690. padding: 0 2.5% 2.5vw 2.5%;
  691. display: flex;
  692. justify-content: space-between;
  693. flex-wrap: wrap;
  694. }
  695. .goods-list .product-list .product {
  696. width: 48.75%;
  697. border-radius: 20upx;
  698. background-color: #fff;
  699. margin: 0 0 15upx 0;
  700. }
  701. .goods-list .product-list .product image {
  702. width: 100%;
  703. border-radius: 20upx 20upx 0 0;
  704. }
  705. .goods-list .product-list .product .name {
  706. width: 92%;
  707. padding: 10upx 4%;
  708. display: -webkit-box;
  709. -webkit-box-orient: vertical;
  710. -webkit-line-clamp: 1;
  711. text-align: justify;
  712. overflow: hidden;
  713. font-size: 30upx;
  714. }
  715. .goods-list .product-list .product .info {
  716. display: flex;
  717. justify-content: space-between;
  718. align-items: flex-end;
  719. width: 92%;
  720. padding: 10upx 4% 10upx 4%;
  721. }
  722. .goods-list .product-list .product .info .price {
  723. color: #e65339;
  724. font-size: 30upx;
  725. font-weight: 600;
  726. }
  727. .goods-list .product-list .product .info .slogan {
  728. color: #807c87;
  729. font-size: 24upx;
  730. }
  731. </style>