goodDetails.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. <template>
  2. <view class="container">
  3. <swiper class="swiper" :indicator-dots="true" indicator-color="#9A9A9A" indicator-active-color="#52A63A" :autoplay="true"
  4. :interval="3000" :duration="500">
  5. <swiper-item v-for="(item,index) in goodData.imgs" :key="index">
  6. <cover-image :src="item.imgPath"></cover-image>
  7. </swiper-item>
  8. </swiper>
  9. <view class="good-info">
  10. <view class="auction-date" v-if="goodData.productType == 2">
  11. <text class="iconfont iconshijian"></text>
  12. {{goodData.auctionEndTime}}结束
  13. </view>
  14. <view class="good-price">
  15. <view class="auction-unit" v-if="goodData.productType == 2 || goodData.productType == 4">
  16. <view class="unit-type">RMB</view>
  17. <view class="unit-text">当前价</view>
  18. </view>
  19. <text class="sale-icon">¥</text>
  20. <text class="sale-price">{{ goodData.productType == 2 ? currentPrice : goodData.bizPrice }}</text>
  21. <text class="price" v-if="goodData.productType != 2">原价:{{goodData.originalPrice}}</text>
  22. <text class="seller-count" v-if="goodData.productType != 2 && goodData.productType != 4">{{goodData.sellCount}}人付款</text>
  23. <text class="good-stock" v-if="goodData.productType == 2">仅限{{goodData.stock}}份</text>
  24. </view>
  25. <view class="good-name">{{goodData.productName}}</view>
  26. <view class="good-plant" v-if="goodData.productType == 4">时长:{{goodData.term}}天&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;面积:{{goodData.areaSize}}平米</view>
  27. <view class="good-detail">{{goodData.productDescribe ? goodData.productDescribe : '暂无描述'}}</view>
  28. </view>
  29. <view class="good-data" v-if="goodData.productType != 2 && goodData.productType != 4">
  30. <text class="good-select">商品规格</text>
  31. <text class="good-unit">{{number}}&nbsp;{{goodData.unit ? goodData.unit : ''}}</text>
  32. <!-- <text class="iconfont iconfangxiang"></text>
  33. --> </view>
  34. <view class="tab-box">
  35. <view class="tab-col" :class="tabIndex == 1 ? 'tab-col-active' :''" @click="tabIndex = 1">产品介绍</view>
  36. <view class="tab-col" :class="tabIndex == 2 ? 'tab-col-active' :''" v-if="goodData.productType != 2 && goodData.productType != 4 "
  37. @click="tabIndex = 2">用户评价</view>
  38. </view>
  39. <rich-text :nodes="goodData.sellDesc" v-if="tabIndex == 1"></rich-text>
  40. <view class="good-assess" v-else>
  41. <view class="assess-row" v-for="(item,index) in assessList" :key="index">
  42. <cover-image class="assess-head" :src="item.headimg"></cover-image>
  43. <view class="assess-info">
  44. <view class="assess-name">{{item.nickname}}</view>
  45. <view class="assess-date">{{item.evaluateTime}}</view>
  46. <view class="assess-sore-box">
  47. <u-rate v-model="item.score" active-color="#FFAE21" disabled></u-rate>
  48. </view>
  49. <view class="assess-text">{{item.evaluateContent}}</view>
  50. <view class="assess-img-box">
  51. <cover-image class="img-col" v-for="site in item.evaluateImgs" :key="site" :src="site.imgUrl"></cover-image>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="assess-more" @click="goToEvaluate()">显示全部</view>
  56. </view>
  57. <view class="good-recommend">
  58. <view class="recommend-title">为您推荐</view>
  59. <scroll-view class="recommend-box" scroll-x="true">
  60. <view class="good-col" v-for="(item, index) in goodsList" :key="index">
  61. <cover-image class="good-img" :src="item.imgPath"></cover-image>
  62. <view class="good-name">{{item.productName}}</view>
  63. <view class="good-price">¥{{item.bizPrice}}</view>
  64. </view>
  65. </scroll-view>
  66. </view>
  67. <uni-goods-nav :fill="true" :options="goodData.productType == 4 ? [] : options" @click="goToShop" @buttonClick="showPopup"
  68. style="width: 100%; position: fixed; bottom: 0px;" :buttonGroup="goodData.productType == 2 ? buttonGroup2 : (goodData.productType == 4 ? (minePlant ? buttonGroup4 : buttonGroup3) : buttonGroup1)" />
  69. <uni-popup ref="popup" type="bottom">
  70. <view class="popup-box">
  71. <view class="popup-good-info-box">
  72. <cover-image class="popup-good-img" v-if="goodData.imgs.length" :src="goodData.imgs[0].imgPath"></cover-image>
  73. <view class="popup-good-data">
  74. <view class="popup-good-price"><text style="font-size: 14px;">¥</text>{{goodData.bizPrice}}</view>
  75. <view class="popup-good-number">库存{{goodData.stock}}件</view>
  76. <view class="popup-good-type">单位:{{goodData.unit}}</view>
  77. </view>
  78. <view class="popup-good-close"></view>
  79. </view>
  80. <view class="popup-good-info">数量</view>
  81. <view class="popup-good-number-box">
  82. <uni-icons type="minus-filled" size="20" color="#A67A54" @click="number>1?number--:''"></uni-icons>
  83. <text class="good-select">{{number}}</text>
  84. <uni-icons type="plus-filled" size="20" color="#A67A54" @click="number++"></uni-icons>
  85. </view>
  86. <uni-goods-nav :fill="true" :options="[]" :buttonGroup="buttonGroup1" @buttonClick="submitData" style="width: 100%; position: absolute; bottom: 0px;left:0px" />
  87. </view>
  88. </uni-popup>
  89. <u-top-tips ref="uTips"></u-top-tips>
  90. </view>
  91. </template>
  92. <script>
  93. const NET = require('@/utils/request')
  94. const API = require('@/config/api')
  95. export default {
  96. data() {
  97. return {
  98. // 从我的种植进入minePlant为true
  99. minePlant: false,
  100. goodId: '',
  101. goodData: {
  102. bizPrice: '',
  103. auctionStartPrice: '',
  104. originalPrice: '',
  105. productType: '',
  106. sellCount: '',
  107. productName: '',
  108. productDescribe: '',
  109. unit: '',
  110. sellDesc: '',
  111. stock: '',
  112. auctionEndTime: '',
  113. term: '',
  114. areaSize: '',
  115. imgs: [],
  116. },
  117. currentPrice: '',
  118. assessList: [],
  119. goodsList: [],
  120. number: 1,
  121. tabIndex: 1,
  122. options: [{
  123. icon: 'shop',
  124. text: '店铺',
  125. }],
  126. buttonGroup1: [{
  127. text: '加入购物车',
  128. backgroundColor: '#75BD60',
  129. color: '#fff'
  130. },
  131. {
  132. text: '立即购买',
  133. backgroundColor: '#52A63A',
  134. color: '#fff'
  135. }
  136. ],
  137. buttonGroup2: [{
  138. text: '立即参拍',
  139. backgroundColor: '#52A63A',
  140. color: '#fff'
  141. }],
  142. buttonGroup3: [{
  143. text: '立即购买',
  144. backgroundColor: '#52A63A',
  145. color: '#fff'
  146. }],
  147. buttonGroup4: [{
  148. text: '视察',
  149. backgroundColor: '#75BD60',
  150. color: '#fff'
  151. }, {
  152. text: '委托',
  153. backgroundColor: '#52A63A',
  154. color: '#fff'
  155. }],
  156. }
  157. },
  158. onLoad(options) {
  159. this.goodId = options.goodId ? options.goodId : ''
  160. this.minePlant = options.minePlant ? options.minePlant : false
  161. },
  162. onReady() {
  163. this.getGoodsList()
  164. if (this.goodId) {
  165. NET.request(API.getCommonGoodDetail + '/' + this.goodId, {}, 'GET').then(res => {
  166. this.goodData = res.data
  167. if (this.goodData.productType == 2) {
  168. this.getAuctionData()
  169. }
  170. }).catch(res => {
  171. this.$refs.uTips.show({
  172. title: '获取商品详情失败',
  173. type: 'warning',
  174. })
  175. })
  176. NET.request(API.getAssessList + this.goodId + '/1/3', {}, 'GET').then(res => {
  177. this.assessList = res.data.list
  178. }).catch(res => {
  179. this.$refs.uTips.show({
  180. title: '获取商品评价失败',
  181. type: 'warning',
  182. })
  183. })
  184. }
  185. },
  186. methods: {
  187. // 获取拍卖详情
  188. getAuctionData() {
  189. NET.request(API.getAuctionDetail + this.goodId, {}, 'GET').then(res => {
  190. this.currentPrice = res.data.currentPrice
  191. }).catch(error => {
  192. this.$refs.uTips.show({
  193. title: error.data.msg,
  194. type: 'warning',
  195. })
  196. })
  197. },
  198. // 跳转商铺页
  199. goToShop() {
  200. uni.navigateTo({
  201. url: '/pagesGood/shopDetails?goodId=' + this.goodId
  202. });
  203. },
  204. // 跳转评价页
  205. goToEvaluate() {
  206. uni.navigateTo({
  207. url: '/pagesGood/evaluateList?goodId=' + this.goodId
  208. });
  209. },
  210. // 获取为你推荐
  211. getGoodsList() {
  212. NET.request(API.getPreferGoods, {}, 'GET').then(res => {
  213. this.goodsList = res.data
  214. }).catch(error => {
  215. this.$refs.uTips.show({
  216. title: '获取为您推荐列表失败',
  217. type: 'warning',
  218. })
  219. })
  220. },
  221. // 弹出购物弹窗
  222. showPopup(e) {
  223. uni.removeStorageSync('defaultAddress');
  224. this.setGoodStorage()
  225. if (this.goodData.productType == 2) {
  226. uni.navigateTo({
  227. url: '/pagesGood/auctionDetail?goodId=' + this.goodId
  228. });
  229. } else if (this.goodData.productType == 4) {
  230. if (this.minePlant) {
  231. if (e.index == 0) {
  232. uni.navigateTo({
  233. url: '/pagesGood/plantVideo?productId=' + this.goodId
  234. });
  235. } else {
  236. uni.navigateTo({
  237. url: '/pagesMain/entrustList?productId=' + this.goodData.productId + '&tenantCode=' + this.goodData.tenantCode +
  238. '&productName=' + this.goodData.productName + '&areaSize=' + this.goodData.areaSize
  239. });
  240. }
  241. } else {
  242. uni.navigateTo({
  243. url: '/pagesGood/orderPay?flag=2&orderType=3&paySum=' + this.goodData.bizPrice
  244. });
  245. }
  246. } else {
  247. this.$refs.popup.open()
  248. }
  249. },
  250. // 存入商品信息缓存
  251. setGoodStorage() {
  252. uni.setStorage({
  253. key: 'orderData',
  254. data: {
  255. tenantCode: this.goodData.tenantCode,
  256. supplierName: this.goodData.supplierName,
  257. areaSize: this.goodData.productType == 4 ? this.goodData.areaSize : '',
  258. term: this.goodData.productType == 4 ? this.goodData.term : '',
  259. goodsList: [{
  260. bizPrice: this.goodData.bizPrice,
  261. buyNum: this.number,
  262. imgUrl: this.goodData.imgs.length ? this.goodData.imgs[0].imgPath : '',
  263. originalPrice: this.goodData.productType == 2 ? this.goodData.auctionStartPrice : this.goodData.originalPrice,
  264. productId: this.goodId,
  265. productName: this.goodData.productName,
  266. productType: this.goodData.productType,
  267. shoppingcartId: '',
  268. }]
  269. }
  270. });
  271. },
  272. // 提交操作
  273. submitData(e) {
  274. if (e.index) {
  275. // 立即购买
  276. this.setGoodStorage()
  277. uni.navigateTo({
  278. url: '/pagesGood/orderPay?flag=2&orderType=1'
  279. });
  280. } else {
  281. // 加入购物车
  282. NET.request(API.addCart, {
  283. productId: this.goodId,
  284. productName: this.goodData.productName,
  285. imgUrl: this.goodData.imgs.length ? this.goodData.imgs[0].imgPath : '',
  286. bizPrice: this.goodData.bizPrice,
  287. originalPrice: this.goodData.originalPrice,
  288. productType: this.goodData.productType,
  289. tenantCode: this.goodData.tenantCode,
  290. buyNum: this.number
  291. }, 'POST').then(res => {
  292. this.$refs.uTips.show({
  293. title: '加入购物车成功',
  294. type: 'success',
  295. })
  296. this.$refs.popup.close()
  297. }).catch(error => {
  298. this.$refs.uTips.show({
  299. title: '加入购物车失败',
  300. type: 'warning',
  301. })
  302. })
  303. }
  304. },
  305. },
  306. }
  307. </script>
  308. <style lang="less" scoped>
  309. .container {
  310. background-color: #f7f7f7;
  311. padding-bottom: 50px;
  312. .swiper {
  313. height: 375px;
  314. /deep/.uni-swiper-dot-active {
  315. width: 16px !important;
  316. border-radius: 8px;
  317. }
  318. }
  319. .good-info {
  320. box-sizing: border-box;
  321. padding: 0px 16px 22px 16px;
  322. background-color: #FFFFFF;
  323. .auction-date {
  324. width: calc(100% + 32px);
  325. height: 32px;
  326. box-sizing: border-box;
  327. padding: 0 16px;
  328. margin-left: -16px;
  329. background: #999999;
  330. line-height: 32px;
  331. font-size: 12px;
  332. font-family: PingFang SC;
  333. color: #FFFFFF;
  334. .iconshijian {
  335. font-size: 16px;
  336. margin-right: 8px;
  337. }
  338. }
  339. .good-price {
  340. height: 26px;
  341. padding-top: 22px;
  342. box-sizing: content-box;
  343. line-height: 26px;
  344. font-family: PingFang SC;
  345. white-space: nowrap;
  346. .auction-unit {
  347. width: 40px;
  348. height: 26px;
  349. float: left;
  350. .unit-type {
  351. height: 12px;
  352. font-size: 9px;
  353. font-family: PingFang SC;
  354. color: #666666;
  355. line-height: 9px;
  356. }
  357. .unit-text {
  358. height: 12px;
  359. font-size: 9px;
  360. font-family: PingFang SC;
  361. color: #52A63A;
  362. line-height: 12px;
  363. }
  364. }
  365. .sale-icon {
  366. font-size: 16px;
  367. color: #52A63A;
  368. margin-left: -2px;
  369. }
  370. .sale-price {
  371. font-size: 24px;
  372. color: #52A63A;
  373. }
  374. .price {
  375. font-size: 12px;
  376. text-decoration: line-through;
  377. color: #A67A54;
  378. margin-left: 6px;
  379. }
  380. .seller-count {
  381. float: right;
  382. font-size: 12px;
  383. color: #666666;
  384. }
  385. .good-stock {
  386. float: right;
  387. font-size: 12px;
  388. color: #A67954;
  389. }
  390. }
  391. .good-name {
  392. line-height: 20px;
  393. font-size: 16px;
  394. color: #343434;
  395. font-family: PingFang SC;
  396. margin: 12px 0 8px 0;
  397. }
  398. .good-plant {
  399. line-height: 14px;
  400. font-size: 12px;
  401. color: #000000;
  402. font-family: PingFang SC;
  403. margin-bottom: 4px;
  404. }
  405. .good-detail {
  406. line-height: 16px;
  407. font-size: 12px;
  408. color: #666666;
  409. font-family: PingFang SC;
  410. }
  411. }
  412. .good-data {
  413. height: 46px;
  414. margin-top: 10px;
  415. box-sizing: border-box;
  416. background-color: #FFFFFF;
  417. padding: 14px 16px;
  418. font-family: PingFang SC;
  419. font-size: 12px;
  420. line-height: 14px;
  421. .good-select {
  422. color: #666666;
  423. margin-right: 12px;
  424. }
  425. .good-unit {
  426. color: #343434;
  427. }
  428. .iconfont {
  429. float: right;
  430. font-size: 16px;
  431. color: #999999;
  432. }
  433. }
  434. .tab-box {
  435. height: 50px;
  436. background-color: #FFFFFF;
  437. box-sizing: border-box;
  438. padding: 0 16px;
  439. display: flex;
  440. justify-content: space-around;
  441. margin-top: 10px;
  442. .tab-col {
  443. height: 49px;
  444. font-size: 13px;
  445. font-family: PingFang SC;
  446. color: #666666;
  447. line-height: 50px;
  448. }
  449. .tab-col-active {
  450. font-size: 15px;
  451. color: #343434;
  452. border-bottom: 1px solid #52A63A;
  453. }
  454. }
  455. .good-assess {
  456. width: 100%;
  457. box-sizing: border-box;
  458. background-color: #FFFFFF;
  459. padding: 12px 16px 18px 16px;
  460. .assess-row {
  461. border-top: 1px solid #F6F6F6;
  462. padding: 12px 0;
  463. display: flex;
  464. .assess-head {
  465. width: 50px;
  466. height: 50px;
  467. object-fit: cover;
  468. border-radius: 50%;
  469. }
  470. .assess-info {
  471. width: calc(100% - 62px);
  472. margin-left: 12px;
  473. .assess-name {
  474. height: 18px;
  475. float: left;
  476. line-height: 18px;
  477. font-size: 15px;
  478. font-family: PingFang SC;
  479. font-weight: bold;
  480. color: #343434;
  481. }
  482. .assess-date {
  483. height: 18px;
  484. float: right;
  485. line-height: 18px;
  486. font-size: 12px;
  487. font-family: PingFang SC;
  488. font-weight: bold;
  489. color: #666666;
  490. }
  491. .assess-sore-box {
  492. width: 100%;
  493. height: 16px;
  494. float: left;
  495. margin: 6px 0;
  496. }
  497. .assess-text {
  498. width: 100%;
  499. float: left;
  500. font-size: 12px;
  501. font-family: PingFang SC;
  502. font-weight: bold;
  503. color: #666666;
  504. line-height: 16px;
  505. margin: 8px 0 10px 0;
  506. overflow: hidden;
  507. text-overflow: ellipsis;
  508. display: -webkit-box;
  509. -webkit-line-clamp: 2;
  510. -webkit-box-orient: vertical;
  511. word-wrap: break-word;
  512. }
  513. .assess-img-box {
  514. width: 100%;
  515. float: left;
  516. display: flex;
  517. .img-col {
  518. height: 60px;
  519. width: 60px;
  520. object-fit: cover;
  521. margin: 0 10px 10px 0;
  522. }
  523. }
  524. }
  525. }
  526. .assess-row:first-child {
  527. border-top: none;
  528. padding-top: 0;
  529. }
  530. .assess-more {
  531. width: 220px;
  532. height: 32px;
  533. position: relative;
  534. left: 50%;
  535. transform: translateX(-50%);
  536. border: 1px solid #52A63A;
  537. border-radius: 16px;
  538. text-align: center;
  539. font-size: 12px;
  540. font-family: PingFang SC;
  541. color: #53A63A;
  542. line-height: 32px;
  543. }
  544. }
  545. .good-recommend {
  546. height: 192px;
  547. background-color: #FFFFFF;
  548. margin: 10px 0;
  549. .recommend-title {
  550. height: 24px;
  551. padding-left: 16px;
  552. font-size: 14px;
  553. font-family: PingFang SC;
  554. color: #343434;
  555. line-height: 32px;
  556. }
  557. .recommend-box {
  558. width: 100%;
  559. height: 168px;
  560. white-space: nowrap;
  561. .good-col {
  562. width: 108px;
  563. height: 148px;
  564. margin: 10px 12px 10px 0px;
  565. border-radius: 5px;
  566. overflow: hidden;
  567. background: #FFFFFF;
  568. box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  569. display: inline-block;
  570. .good-img {
  571. width: 108px;
  572. height: 108px;
  573. object-fit: cover;
  574. }
  575. .good-name {
  576. width: 100%;
  577. height: 14px;
  578. float: left;
  579. box-sizing: border-box;
  580. padding: 0 5px;
  581. font-size: 10px;
  582. font-family: PingFang SC;
  583. color: #343434;
  584. line-height: 14px;
  585. margin: 4px 0;
  586. white-space: nowrap;
  587. overflow: hidden;
  588. text-overflow: ellipsis;
  589. }
  590. .good-price {
  591. width: 100%;
  592. height: 16px;
  593. float: left;
  594. box-sizing: border-box;
  595. padding: 0 3px;
  596. font-size: 14px;
  597. font-family: PingFang SC;
  598. color: #6CA63A;
  599. line-height: 16px;
  600. }
  601. }
  602. .good-col:first-child {
  603. margin-left: 16px;
  604. }
  605. .good-col:last-child {
  606. margin-right: 16px;
  607. }
  608. }
  609. }
  610. .popup-box {
  611. width: 100vw;
  612. height: 362px;
  613. background-color: #FFFFFF;
  614. border-radius: 15px 15px 0px 0px;
  615. box-sizing: border-box;
  616. padding: 16px 16px 0 16px;
  617. .popup-good-info-box {
  618. height: 90px;
  619. margin-bottom: 4px;
  620. display: flex;
  621. .popup-good-img {
  622. width: 90px;
  623. height: 90px;
  624. object-fit: cover;
  625. border-radius: 5px;
  626. overflow: hidden;
  627. }
  628. .popup-good-data {
  629. width: calc(100% - 136px);
  630. height: 90px;
  631. margin-left: 22px;
  632. .popup-good-price {
  633. margin-top: 10px;
  634. height: 20px;
  635. line-height: 20px;
  636. font-size: 20px;
  637. font-family: PingFang SC;
  638. color: #52A63A;
  639. }
  640. .popup-good-number {
  641. height: 16px;
  642. font-size: 13px;
  643. font-family: PingFang SC;
  644. color: #9A9A9A;
  645. line-height: 16px;
  646. margin: 12px 0 10px 0;
  647. }
  648. .popup-good-type {
  649. height: 16px;
  650. font-size: 13px;
  651. font-family: PingFang SC;
  652. color: #343434;
  653. line-height: 16px;
  654. }
  655. }
  656. .popup-good-close {
  657. width: 24px;
  658. height: 24px;
  659. }
  660. }
  661. .popup-good-info {
  662. height: 33px;
  663. box-sizing: border-box;
  664. padding-top: 16px;
  665. margin-top: 16px;
  666. border-top: 1px solid #ECECEC;
  667. font-size: 14px;
  668. font-family: PingFang SC;
  669. color: #9A9A9A;
  670. line-height: 16px;
  671. }
  672. .popup-good-unit {
  673. height: 28px;
  674. display: inline-block;
  675. padding: 0 22px;
  676. margin-top: 14px;
  677. background: #52A63A;
  678. border-radius: 14px;
  679. font-size: 14px;
  680. font-family: PingFang SC;
  681. color: #FFFFFF;
  682. line-height: 28px;
  683. }
  684. .popup-good-number-box {
  685. height: 20px;
  686. float: right;
  687. margin-top: -20px;
  688. .good-select {
  689. font-size: 16px;
  690. font-family: PingFang SC;
  691. color: #343434;
  692. margin: 0 12px;
  693. line-height: 20px;
  694. }
  695. }
  696. }
  697. }
  698. </style>