integralgoodsDetail.vue 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. <template>
  2. <view class="box">
  3. <view class="spwBox">
  4. <swiper class="swiper" circular :autoplay="false" :indicator-dots="true" indicator-color="#CCCCCC" indicator-active-color="#D53533">
  5. <swiper-item v-for="(item,index) in info.imgList">
  6. <view class="swiper-item">
  7. <img mode="aspectFit" :src="item.img" alt="" class="swiper-itemImg" v-if="item.imgType==1">
  8. <video :src="item.url" v-if="item.imgType==2" show-fullscreen-btn controls style="width: 100%;height: 100%;"></video>
  9. </view>
  10. </swiper-item>
  11. <swiper-item v-for="(item,index) in info.detailImgList">
  12. <view class="swiper-item">
  13. <img mode="aspectFit" :src="item.img" alt="" class="swiper-itemImg" >
  14. </view>
  15. </swiper-item>
  16. </swiper>
  17. </view>
  18. <view class="shopCont">
  19. <view class="goodsName">{{info.name}}</view>
  20. <view class="jfNumBox" style="padding-left: 24rpx;padding-bottom: 20rpx;">
  21. <span class="jfspan1 jfspan11">{{info.integral}}</span> <span class="jfspan2">积分</span>
  22. <span class="marketvalue" v-if="info.salePrice">市场价 ¥{{info.salePrice}}</span>
  23. </view>
  24. </view>
  25. <!-- 商品详情 -->
  26. <view class="goodsDetail" v-if="info.details">
  27. <view class="goodsDetailTitle">商品详情</view>
  28. <!-- <view v-html="info.details" style="background: #fff;"></view> -->
  29. <rich-text :nodes="info.details" style="background: #fff;"></rich-text>
  30. </view>
  31. <view style="height: 120rpx;padding-bottom: env(safe-area-inset-bottom)"></view>
  32. <view class="bottomBox">
  33. <view class="ktyong" style="padding-top: 46rpx;">可用 <span class="ktyong1" style="font-weight: 500;">{{avaIntegral}}</span><span class="ktyong2">积分</span> </view>
  34. <view class="bottomBtn" :style="{background:'#'+themeColor}" @click="ljbuy">立即兑换</view>
  35. </view>
  36. <!-- 立即购买 -->
  37. <view class="buyBox" v-if="buyShow" @click="buyShow=false">
  38. <view class="buyCont" @click.stop="">
  39. <image src="../../static/timg/chahao.png" mode="" class="buyContCh" @click="buyShow=false"></image>
  40. <view class="goodsBox">
  41. <view class="hotGoodsLine" >
  42. <view>
  43. <image :src="info.imgList[0].img" mode="" v-if="info.imgList.length>0" class="hotGoodsLineImg"></image>
  44. <image src="../../static/timg/noimg.png" class="hotGoodsLineImg" v-else></image>
  45. </view>
  46. <view class="hotGoodsLineRIght">
  47. <view class="goodsName2">{{info.name}}</view>
  48. <view class="goodsPriceTk">
  49. <view class="jfNumBox">
  50. <span class="jfspan1">{{info.integral}}</span> <span class="jfspan2">积分</span>
  51. <span class="marketvalue" v-if="info.salePrice">市场价 ¥{{info.salePrice}}</span>
  52. </view>
  53. <view class="surplus">剩余{{shopInfo.qty>0?shopInfo.qty:0}}个</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="buyNumBox">
  59. <view class="bugNUm">
  60. <view class="bugNUmLeft">
  61. <view class="buySl">数量</view>
  62. <!-- <view class="buyXg" v-if="info.oneQty">限购{{info.oneQty}}件</view> -->
  63. </view>
  64. <view class="numJsbox">
  65. <view class="numJj" @click="calculation(1)">-</view>
  66. <view class="goodsnum">
  67. <input type="number" value="" v-model="goodsnum" class="goodsnumInput" @input="goodsnumInput"/>
  68. </view>
  69. <view class="numJj" @click="calculation(2)">+</view>
  70. </view>
  71. </view>
  72. <view class="buySHop" @click="ckShop" style="border-bottom: 1px solid #EEEEEE;">
  73. <view>服务门店</view>
  74. <view class="buyShopRight" >
  75. <view v-if="shopInfo.shopId">{{shopInfo.shopName}}</view>
  76. <view v-else>请选择</view>
  77. <image src="../../static/timg/icon_arrow_right.png" mode="" class="buyShopRightJt"></image>
  78. </view>
  79. </view>
  80. <view class="buySHop" v-if="info.oneCount&&info.dayCount">
  81. <view>兑换限制</view>
  82. <view class="buyShopRight" >
  83. 每人限兑{{info.oneCount?info.oneCount:0}}个,每天限兑{{info.dayCount?info.dayCount:0}}个
  84. </view>
  85. </view>
  86. <view class="buySHop" v-else></view>
  87. </view>
  88. <view class="buybtnBox">
  89. <view class="ktyong"><view>合计 <span class="ktyong1" style="font-weight: 500;">{{totalIntegral}}</span><span class="ktyong2">积分</span> </view>
  90. <view class="kyNum">可用积分:{{avaIntegral}}</view>
  91. </view>
  92. <view class="bottomBtn" @click="goBuy" :style="{background:'#'+themeColor}">立即兑换</view>
  93. </view>
  94. </view>
  95. </view>
  96. <!-- 手机号授权 -->
  97. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  98. <view class="authorizCont" @click.stop="">
  99. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  100. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  101. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  102. </view>
  103. <view style="text-align: center;padding-top: 56rpx;">
  104. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  105. </view>
  106. </view>
  107. <!-- <view :style="{color:colorX}">asdfas</view> -->
  108. <!-- 门店弹框 -->
  109. <view class="baomingBox ckshopBox" v-if="ckshopShow" @click="noShowShop">
  110. <view class="baomingCont" @click.stop="">
  111. <view class="bmTop">
  112. <view class="bmTitle">选择门店</view>
  113. <img src="../../static/timg/chahao.png" alt="" class="bmChimg" @click="noShowShop">
  114. </view>
  115. <view style="padding: 0 24rpx; height: 45vh;overflow-y: scroll;">
  116. <view class="ckshopLine" v-for="(item,index) in info.shopList" @click="ckshop2(item)">
  117. <view class="shopName"> {{item.ShopName}}</view>
  118. <view class="surplus" style="padding-top: 2rpx;">剩余{{item.qty>0?item.qty:0}}个</view>
  119. </view>
  120. </view>
  121. </view>
  122. </view>
  123. </view>
  124. </template>
  125. <script>
  126. export default {
  127. components: {
  128. },
  129. data() {
  130. return {
  131. userInfo:'',
  132. goodsnum:1,
  133. buyShow:false,
  134. id:'',
  135. info:'',
  136. shopInfo:{
  137. shopName:'',
  138. shopId:''
  139. },
  140. authorizShow:false,
  141. code:'',
  142. wxOpenData:'',
  143. ext:'',
  144. categoryIds:'',
  145. thenShow:false,
  146. activityEnd:true,
  147. shengyuD:1,
  148. shengyuH:12,
  149. shengyuM:21,
  150. totalIntegral:'',
  151. avaIntegral:'',
  152. ckshopShow:false,
  153. themeColor:'',
  154. //snapup:
  155. }
  156. },
  157. onLoad(opt) {
  158. this.id=opt.id;
  159. this.avaIntegral=opt.avaIntegral;
  160. //this.id='F58D6DEA-726A-4E28-93FA-EE6E5D6E3BDF'
  161. //this.userInfo = uni.getStorageSync("userInfo");
  162. this.userInfo=this.$store.state.userInfo;
  163. this.ext=this.$common.getExtStoreId();
  164. this.themeColor = uni.getStorageSync("themeColor");
  165. if(this.userInfo){
  166. this.wxOpenData=this.$store.state.wxOpenData;
  167. this.openGoodsDetailById();
  168. }else{
  169. this.$common.automaticlogin().then(val => {
  170. this.userInfo=this.$store.state.userInfo;
  171. this.wxOpenData=this.$store.state.wxOpenData;
  172. this.openGoodsDetailById();
  173. console.log(this.userInfo)
  174. })
  175. }
  176. },
  177. onShow() {
  178. this.shopInfo=this.$store.state.ckshopInfo;
  179. console.log(this.shopInfo)
  180. },
  181. onPullDownRefresh(){
  182. this.openGoodsDetailById();
  183. setTimeout(() => {
  184. uni.stopPullDownRefresh(); // 关闭下拉刷新
  185. }, 2000);
  186. },
  187. methods: {
  188. sharewx(){
  189. },
  190. goodsnumInput(){
  191. console.log(this.goodsnum)
  192. var qty=this.shopInfo.qty?this.shopInfo.qty:0
  193. if(this.goodsnum>qty){
  194. uni.showToast({
  195. title: '服务门店库存不足',
  196. icon: 'none',
  197. duration: 3000
  198. });
  199. this.goodsnum=qty
  200. }
  201. },
  202. noShowShop(){
  203. this.ckshopShow=false;
  204. },
  205. ckShop(){
  206. //this.ckshopShow=true;
  207. uni.navigateTo({
  208. url:'/pages/shop/ckshopList?goodsId='+this.id+'&type=4'
  209. })
  210. },
  211. ckshop2(item){
  212. if(item.qty){
  213. this.shopInfo=item;
  214. this.ckshopShow=false;
  215. }else{
  216. uni.showToast({
  217. title: '服务门店库存不足',
  218. icon: 'none',
  219. duration: 3000
  220. });
  221. }
  222. },
  223. openGoodsDetailById(){
  224. this.$http('openIntegralMall/integralGoodsDetailById', {
  225. id:this.id,
  226. },'GET').then(res => {
  227. this.info=res.data;
  228. if(this.info.details){
  229. this.info.details = this.info.details.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block" ');
  230. this.info.details=this.info.details.replace(/\<p/gi, '<p style="display: inline-block"');
  231. }
  232. this.shopInfo=res.data.shopList[0];
  233. this.totalIntegral=this.goodsnum*this.info.integral
  234. //this.$store.commit('mutationsckshopInfo', '')
  235. //this.szShop()
  236. })
  237. },
  238. ljbuy(){
  239. if(!this.userInfo){
  240. this.authorizShow=true
  241. }else{
  242. this.buyShow=true
  243. }
  244. },
  245. goINdex(){
  246. uni.switchTab({
  247. url:'../index/index'
  248. })
  249. },
  250. goBuy(){
  251. if(this.info.dayCount&&this.info.dayCount!='null'){
  252. if(this.goodsnum>this.info.dayCount){
  253. uni.showToast({
  254. title:'超过兑换限制',
  255. icon:'none',
  256. })
  257. return false;
  258. }
  259. }
  260. if(!this.shopInfo.qty){
  261. uni.showToast({
  262. title: '库存不足',
  263. icon: 'none',
  264. duration: 3000
  265. });
  266. return false;
  267. }
  268. if(this.shopInfo.qty<0){
  269. uni.showToast({
  270. title: '库存不足',
  271. icon: 'none',
  272. duration: 3000
  273. });
  274. return false;
  275. }
  276. if(!this.shopInfo.shopId){
  277. uni.showToast({
  278. title: '请选择服务门店',
  279. icon: 'none',
  280. duration: 3000
  281. });
  282. return false;
  283. }
  284. var that=this;
  285. uni.setStorage({
  286. key: 'jfgoodsDetail',
  287. data: that.info,
  288. success: function () {
  289. uni.navigateTo({
  290. url:'integralConfirm?shopID='+that.shopInfo.shopId+'&shopName='+that.shopInfo.shopName+'&goodsnum='+that.goodsnum+'&avaIntegral='+that.avaIntegral
  291. })
  292. }
  293. });
  294. },
  295. calculation(type){
  296. if(type==1){
  297. if(this.goodsnum>1){
  298. this.goodsnum--
  299. }
  300. }else{
  301. //console.log("+++")
  302. if(this.info.dayCount&&this.info.dayCount!='null'){
  303. console.log(this.info.dayCount)
  304. if(this.goodsnum<this.info.dayCount){
  305. if(this.goodsnum<this.shopInfo.qty){
  306. this.goodsnum++
  307. }else{
  308. uni.showToast({
  309. title:'剩余个数不足',
  310. icon:'none',
  311. })
  312. }
  313. }else{
  314. uni.showToast({
  315. title:'超过兑换限制',
  316. icon:'none',
  317. })
  318. }
  319. }else{
  320. this.goodsnum++
  321. }
  322. }
  323. this.totalIntegral=this.goodsnum*this.info.integral
  324. },
  325. decryptPhoneNumber: function(e) {
  326. console.log(e);
  327. this.code=e.detail.code
  328. this.wxPhoneLogin()
  329. this.authorizShow=false;
  330. },
  331. wxPhoneLogin(){
  332. var that=this;
  333. this.$http('miniApp2/sys/wxPhoneLogin', {
  334. appId:this.ext.appId,
  335. unionId:this.ext.unionId,
  336. code:this.code,
  337. openId:this.wxOpenData.openid
  338. },'POST').then(res => {
  339. var data = res.data;
  340. if(data.newCustomer){
  341. uni.showModal({
  342. title: '提示',
  343. content: data.newCustomerMsg,
  344. success: function(resTK) {
  345. }
  346. });
  347. var token=res.data.token
  348. data.loginInfo={}
  349. data.loginInfo.token=token
  350. this.$store.commit('mutationswxOpenData', data);
  351. return false;
  352. }
  353. if(data.loginInfo){
  354. this.userInfo=data.loginInfo.openUser;
  355. this.wxOpenData=data.loginInfo;
  356. this.$store.commit('mutationswxOpenData', data)
  357. this.$store.commit('mutationsuserInfo', this.userInfo)
  358. this.szShop()
  359. }
  360. })
  361. },
  362. },
  363. onShareAppMessage(res) {
  364. var img='';
  365. if(this.info.ImgList.length>0){
  366. img=this.info.ImgList[0].url
  367. }
  368. return {
  369. title: this.info.name,
  370. imageUrl:img,
  371. path: 'pages/shop/goodsDetail?id=' + this.id,
  372. success(res){
  373. uni.showToast({
  374. title:'分享成功'
  375. })
  376. },
  377. fail(res){
  378. uni.showToast({
  379. title:'分享失败',
  380. icon:'none',
  381. duration: 3000
  382. })
  383. }
  384. }
  385. },
  386. }
  387. </script>
  388. <style scoped lang="less">
  389. .ckshopLine{
  390. display: flex;
  391. justify-content: space-between;
  392. padding: 20rpx 0;
  393. border-bottom: 1px solid #EEEEEE;
  394. }
  395. .shopName{
  396. font-size: 28rpx;
  397. color: #333333;
  398. width: 500rpx;
  399. }
  400. .ckshopBox{
  401. width: 750rpx;
  402. height: 100vh;
  403. background: rgba(0, 0, 0, 0.4);
  404. position: fixed;
  405. top: 0;
  406. left: 0;
  407. z-index: 111 !important;
  408. }
  409. .baomingCont{
  410. position: absolute;
  411. width: 750rpx;
  412. /* height:850rpx; */
  413. /* padding-bottom: constant(safe-area-inset-bottom);
  414. padding-bottom: env(safe-area-inset-bottom); */
  415. left: 0;
  416. bottom: 0;
  417. background: #ffffff;
  418. border-radius: 24rpx 24rpx 0px 0px;
  419. }
  420. .bmTop{
  421. display: flex;
  422. justify-content: space-between;
  423. padding: 40rpx 24rpx 10rpx 24rpx;
  424. }
  425. .bmTitle{
  426. font-weight: 500;
  427. color: #3C3C3C;
  428. font-size: 30rpx;
  429. line-height: 36rpx;
  430. }
  431. .bmChimg{
  432. width: 36rpx;
  433. height: 36rpx;
  434. }
  435. .kyNum{
  436. color: #999999;
  437. font-size: 24rpx;
  438. }
  439. .goodsPriceTk{
  440. display: flex;
  441. justify-content: space-between;
  442. width: 460rpx;
  443. }
  444. .surplus{
  445. color: #FF0000;font-size: 24rpx;padding-top: 6rpx;
  446. }
  447. .ktyong{
  448. color: #666666;
  449. font-size: 24rpx;
  450. padding-left: 30rpx;
  451. padding-top: 18rpx;
  452. } .ktyong1{
  453. color: #FF0000;
  454. font-size: 32rpx;
  455. }
  456. .ktyong2{
  457. color: #FF0000;
  458. font-size: 24rpx;
  459. }
  460. .jfspan1{
  461. font-weight: 500;
  462. color: #FF0000;
  463. font-size:32rpx;
  464. line-height: 45rpx;
  465. }
  466. .jfspan11{
  467. font-size: 40rpx !important;
  468. }
  469. .jfspan2{
  470. font-weight: 400;
  471. color: #FF0000;
  472. font-size:24rpx;
  473. line-height: 45rpx;
  474. padding-left: 10rpx;
  475. }
  476. .marketvalue{
  477. font-weight: 400;
  478. color: #999999;
  479. font-size:24rpx;
  480. line-height: 45rpx;
  481. padding-left: 10rpx;
  482. text-decoration: line-through;
  483. }
  484. .timeTbox{
  485. width: 750rpx;
  486. height: 60rpx;
  487. background:#FFF5F0;
  488. border-radius: 24rpx 24rpx 0px 0px;
  489. border: 1px solid #EFE1D5;
  490. display: flex;
  491. justify-content: center;
  492. font-size: 24rpx;
  493. font-family: PingFangSC-Regular, PingFang SC;
  494. font-weight: 400;
  495. color: #764D49;
  496. }
  497. .timeTbox2{
  498. height: 60rpx;
  499. }
  500. .timeviewTxt{
  501. line-height: 41rpx;
  502. padding-top: 10rpx;
  503. }
  504. .timeDivTxt{
  505. line-height: 60rpx;
  506. padding: 0 10rpx;
  507. }
  508. .timeK{
  509. height: 41rpx;
  510. line-height: 41rpx;
  511. color: #FFFFFF;
  512. width: 41rpx;
  513. text-align: center;
  514. background: #F03B3B;
  515. border-radius: 6rpx;
  516. margin-top: 9rpx;
  517. margin-left: 15rpx;
  518. margin-right: 15rpx;
  519. }
  520. .bottomHz{
  521. width: 750rpx;
  522. /* height: 180rpx; */
  523. position: fixed;left: 0;
  524. bottom: 0;
  525. border-radius: 24rpx 24rpx 0px 0px;
  526. }
  527. .box{
  528. background: #F4F5F7;
  529. min-height: 100vh;
  530. }
  531. .buySHop{
  532. display: flex;
  533. justify-content: space-between;
  534. font-size:28rpx ;
  535. color: #666666;
  536. padding-top: 30rpx;
  537. padding-bottom: 30rpx;
  538. }
  539. .buybtnBox{
  540. width: 750rpx;
  541. height: 120rpx;
  542. background: #FFFFFF;
  543. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.2000);
  544. display: flex;
  545. justify-content: space-between;
  546. }
  547. .buyBox{
  548. width: 750rpx;
  549. height: 100vh;
  550. position: fixed;
  551. left: 0;
  552. top: 0;
  553. background: rgba(0,0,0,0.5);
  554. }
  555. .buyBtn{
  556. width: 690rpx;
  557. height: 74rpx;
  558. background: #D53533;
  559. border-radius: 37rpx;
  560. text-align: center;
  561. line-height: 74rpx;
  562. color: #FFFFFF;
  563. font-size: 30rpx;
  564. margin-left: 30rpx;
  565. }
  566. .buyShopRightJt{
  567. width: 12rpx;
  568. height: 20rpx;
  569. margin-top: 8rpx;
  570. margin-left: 10rpx;
  571. }
  572. .buyShopRight{
  573. display: flex;
  574. }
  575. .bugNUm{
  576. border-top: 1px solid #EEEEEE;
  577. border-Bottom: 1px solid #EEEEEE;
  578. padding: 28rpx 0;
  579. display: flex;
  580. justify-content: space-between;
  581. }
  582. .buyXg{
  583. width: 110rpx;
  584. height: 36rpx;
  585. border-radius: 4rpx;
  586. border: 1px solid #F19D01;
  587. text-align: center;
  588. line-height: 36rpx;
  589. color: #F19D01;
  590. font-size: 24rpx;
  591. }
  592. .numJj{
  593. width: 44rpx;
  594. height: 44rpx;
  595. background: #F4F5F7;
  596. border-radius: 0px 6rpx 6rpx 0px;
  597. text-align: center;
  598. line-height: 44rpx;
  599. font-size: 32rpx;
  600. color: #999999;
  601. }
  602. .bugNUmLeft{
  603. display: flex;
  604. }
  605. .buySl{
  606. color: #666666;font-size: 28rpx;padding-right: 30rpx;
  607. }
  608. .goodsnum{
  609. width: 88rpx;
  610. height: 44rpx;
  611. background: #F4F5F7;
  612. line-height: 44rpx;
  613. text-align: center;
  614. font-weight: 500;
  615. color: #333333;
  616. font-size: 24rpx;
  617. margin: 0 4rpx;
  618. }
  619. .goodsnumInput{
  620. width: 88rpx;
  621. height: 44rpx;
  622. background: #F4F5F7;
  623. line-height: 44rpx;
  624. text-align: center;
  625. font-weight: 500;
  626. color: #333333;
  627. font-size: 24rpx;
  628. }
  629. .numJsbox{
  630. display: flex;
  631. }
  632. .buyCont{
  633. position: absolute;
  634. left: 0;
  635. bottom: 0;
  636. width: 750rpx;
  637. /* height: 688rpx; */
  638. background: #FFFFFF;
  639. border-radius: 26rpx 26rpx 0px 0px;
  640. }
  641. .buyNumBox{
  642. padding: 30rpx;
  643. padding-top: 10rpx;
  644. }
  645. .buyContCh{
  646. position: absolute;
  647. top: 53rpx;
  648. right: 36rpx;
  649. width: 36rpx;
  650. height: 36rpx;
  651. }
  652. .hotGoodsLine{
  653. margin-top: 30rpx;
  654. padding: 20rpx;
  655. background: #FFFFFF;
  656. border-radius: 16rpx;
  657. display: flex;
  658. }
  659. .hotGoodsLineImg{
  660. width: 208rpx;
  661. height: 194rpx;
  662. border-radius: 16rpx;
  663. border: 1px solid #EEEEEE;
  664. }
  665. .goodsName2{
  666. font-size: 28rpx;
  667. font-family: PingFangSC-Regular, PingFang SC;
  668. font-weight: 400;
  669. color: #333333;
  670. line-height: 40rpx;
  671. text-overflow: -o-ellipsis-lastline;
  672. overflow: hidden;
  673. text-overflow: ellipsis;
  674. display: -webkit-box;
  675. -webkit-line-clamp: 2;
  676. line-clamp: 2;
  677. -webkit-box-orient: vertical;
  678. min-height: 80rpx;
  679. width: 370rpx;
  680. }
  681. .hotGoodsLineRIght{
  682. padding-left: 24rpx;
  683. display: flex;
  684. flex-direction: column;
  685. justify-content: space-between;
  686. }
  687. .goodsPrice{
  688. display: flex;
  689. padding-top: 10rpx;
  690. }
  691. .goodsPrice11{
  692. font-size: 24rpx;
  693. font-weight: 400;
  694. color: #FF0000;
  695. padding-top: 8rpx;
  696. padding-right: 10rpx;
  697. }
  698. .goodsPrice22{
  699. font-size: 22rpx;
  700. font-weight: 400;
  701. color: #FF0000;
  702. padding-top: 8rpx;
  703. }
  704. .goodsPrice33{
  705. font-size: 32rpx;
  706. font-weight: 500;
  707. color: #FF0000;
  708. }
  709. .goodsPrice44{
  710. font-size: 24rpx;
  711. font-weight: 400;
  712. color: #999999;
  713. padding-top: 8rpx;
  714. padding-left: 5rpx;
  715. text-decoration:line-through;
  716. }
  717. .bottomBox{
  718. width: 750rpx;
  719. height: 120rpx;
  720. background: #FFFFFF;
  721. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.2000);
  722. padding-bottom: env(safe-area-inset-bottom);
  723. background: #FFFFFF;
  724. display: flex;
  725. position: fixed;
  726. left: 0;
  727. justify-content: space-between;
  728. bottom: 0;
  729. }
  730. .bottomTxt{
  731. color: #666666;font-size: 22rpx;
  732. }
  733. .bottomImg{
  734. width: 48rpx;height: 48rpx;
  735. }
  736. .bottomImgBox{
  737. text-align: center;
  738. padding-top: 20rpx;
  739. padding-left: 40rpx;
  740. }
  741. .shareBtn{
  742. width: 100rpx;
  743. background: #FFFFFF;
  744. }
  745. button::after{
  746. border: none;
  747. }
  748. button{
  749. position: relative;
  750. display: block;
  751. margin-left: 0;
  752. margin-right: 0;
  753. padding-left: 0px;
  754. padding-right: 0px;
  755. box-sizing: border-box;
  756. // font-size: 18px;
  757. text-align: center;
  758. text-decoration: none;
  759. // line-height: 1;
  760. line-height: 1.35;
  761. // border-radius: 5px;
  762. -webkit-tap-highlight-color: transparent;
  763. overflow: hidden;
  764. color: #000000;
  765. background-color: #fff;
  766. height: 100%;
  767. }
  768. .bottomBtn{
  769. width: 204rpx;
  770. height: 74rpx;
  771. background: #D53533;
  772. border-radius: 37rpx;
  773. line-height: 74rpx;
  774. text-align: center;
  775. color: #FFFFFF;
  776. font-size: 30rpx;
  777. margin-top: 23rpx;
  778. margin-left: 70rpx;
  779. margin-right: 30rpx;
  780. }
  781. .bottomBtn2{
  782. width: 450rpx;
  783. height: 74rpx;
  784. background: #DDDDDD;
  785. border-radius: 37rpx;
  786. line-height: 74rpx;
  787. text-align: center;
  788. color: #FFFFFF;
  789. font-size: 30rpx;
  790. margin-top: 23rpx;
  791. margin-left: 70rpx;
  792. }
  793. .goodsDetailTitle{
  794. color: #333333;
  795. font-size: 30rpx;
  796. font-weight: 500;
  797. background: #FFFFFF;
  798. padding: 20rpx 24rpx;
  799. }
  800. .goodsDetail{
  801. margin-top: 20rpx;
  802. padding-bottom: 30rpx;
  803. background: #FFFFFF;
  804. }
  805. .goodsDetail img{
  806. width: 750rpx;
  807. }
  808. .goodsDetail image{
  809. width: 750rpx;
  810. }
  811. .mealBox{
  812. background: #FFFFFF;
  813. padding: 20rpx 24rpx;
  814. margin-top: 20rpx;
  815. }
  816. .mealTopRight{
  817. display: flex;
  818. }
  819. .mealLine{
  820. margin-top: 20rpx;
  821. }
  822. .itemname{
  823. width: 441rpx;
  824. text-overflow: -o-ellipsis-lastline;
  825. overflow: hidden;
  826. text-overflow: ellipsis;
  827. display: -webkit-box;
  828. -webkit-line-clamp: 2;
  829. line-clamp: 2;
  830. -webkit-box-orient: vertical;
  831. }
  832. .itemline{
  833. display: flex;
  834. padding: 10rpx 20rpx;
  835. justify-content: space-between;
  836. line-height: 37rpx;
  837. font-size: 26rpx;
  838. color: #333333;
  839. }
  840. .itemlinebOX{
  841. border-radius: 0px 0px 10px 10px;
  842. border: 2Rpx solid #EEEEEE;
  843. padding: 10rpx 0;
  844. }
  845. .mealTop{
  846. display: flex;
  847. justify-content: space-between;
  848. height: 72rpx;
  849. background: #F19D01 linear-gradient(90deg, #FFF7EB 0%, #FFEFD5 100%);
  850. border-radius: 10rpx 10rpx 0px 0px;
  851. line-height: 72rpx;
  852. color: #333333;
  853. font-size: 26rpx;
  854. padding: 0 20rpx;
  855. }
  856. .fwlcTitle{
  857. color: #333333;font-size: 30rpx;font-weight: 500;
  858. }
  859. .fuwuliucBox{
  860. background: #FFFFFF;
  861. padding: 20rpx 24rpx;
  862. margin-top: 20rpx;
  863. }
  864. .fwlcxian{
  865. padding:30rpx 42rpx 10rpx 42rpx ;
  866. display: flex;
  867. }
  868. .fwlcyuan{
  869. width: 16rpx;
  870. height: 16rpx;
  871. background: #FF0000;
  872. border-radius: 50%;
  873. }
  874. .fwHx{
  875. height: 4rpx;
  876. background: #FF0000;
  877. width: 186rpx;
  878. margin-top: 7rpx;
  879. }
  880. .fwTxt{
  881. display: flex;
  882. justify-content: space-between;
  883. }
  884. .fwTxtline{
  885. color: #333333;
  886. line-height: 37px;
  887. font-size: 26rpx;
  888. }
  889. .swiper{
  890. width: 750rpx;
  891. height: 700rpx;
  892. background: #FFFFFF;
  893. border-bottom: 1px solid #EEEEEE;
  894. }
  895. .swiper-item{
  896. width: 750rpx;
  897. height: 700rpx;
  898. }
  899. .swiper-itemImg{
  900. width: 750rpx;
  901. height: 700rpx;
  902. }
  903. .shopCtop{
  904. display: flex;
  905. padding: 20rpx 24rpx;
  906. justify-content: space-between;
  907. background: #FFFFFF;
  908. }
  909. .goodsPrice{
  910. display: flex;
  911. }
  912. .goodsPrice1{
  913. font-size: 24rpx;
  914. font-weight: 400;
  915. color: #FF0000;
  916. padding-top: 14rpx;
  917. padding-right: 14rpx;
  918. }
  919. .goodsPrice2{
  920. font-size: 28rpx;
  921. font-weight: 400;
  922. color: #FF0000;
  923. padding-top: 10rpx;
  924. }
  925. .goodsPrice3{
  926. font-size: 40rpx;
  927. font-weight: 500;
  928. color: #FF0000;
  929. }
  930. .goodsPrice4{
  931. font-size: 24rpx;
  932. font-weight: 400;
  933. color: #999999;
  934. padding-top: 14rpx;
  935. text-decoration:line-through;
  936. padding-left: 10rpx;
  937. }
  938. .Sold{
  939. font-weight: 400;
  940. color: #999999;
  941. font-size: 24rpx;
  942. padding-top: 18rpx;
  943. }
  944. .goodsName{
  945. font-size: 30rpx;
  946. line-height: 42rpx;
  947. font-weight: 500;
  948. color: #333333;
  949. padding: 20rpx 24rpx;
  950. padding-top: 20rpx;
  951. padding-bottom: 16rpx;
  952. }
  953. .goodsMd{
  954. font-weight: 400;
  955. color: #999999;
  956. font-size: 26rpx;
  957. padding: 0 24rpx;
  958. padding-bottom: 20rpx;
  959. }
  960. .shopCont{
  961. background: #FFFFFF;
  962. }
  963. .modeBox{
  964. margin-top:20rpx ;
  965. padding: 5rpx 0;
  966. background: #FFFFFF;
  967. }
  968. .modeline{
  969. display: flex;
  970. padding: 15rpx 24rpx;
  971. }
  972. .modelineLeft{
  973. color: #999999;
  974. font-size: 26rpx;
  975. width: 150rpx;
  976. }
  977. .modeLineRight{
  978. color: #333333;
  979. font-size: 26rpx;
  980. width: 550rpx;
  981. }
  982. .expireNumber{
  983. width: 110rpx;
  984. text-align: right;
  985. }
  986. .authorizBox{
  987. width: 100vw;
  988. height: 100vh;
  989. background: rgba(0, 0, 0, 0.5);
  990. position: fixed;
  991. top: 0;
  992. left: 0;
  993. }
  994. .authorizCont{
  995. margin-top: 30vh;
  996. width: 564rpx;
  997. height: 408rpx;
  998. background: #FFFFFF;
  999. border-radius: 24rpx;
  1000. margin-left: 93rpx;
  1001. position: relative;
  1002. }
  1003. .authorizCloseImg{
  1004. width: 62rpx;
  1005. height: 62rpx;
  1006. }
  1007. .sqLogoBox{
  1008. width: 180rpx;
  1009. height: 180rpx;
  1010. background: #FFFFFF;
  1011. border-radius: 90rpx;
  1012. text-align: center;
  1013. position: absolute;
  1014. top: -50rpx;
  1015. left: 192rpx;
  1016. }
  1017. .authorizName{
  1018. color: #333333;
  1019. line-height: 42rpx;
  1020. font-size: 30rpx;
  1021. text-align: center;
  1022. padding-top: 58rpx;
  1023. }
  1024. .authorizMs{
  1025. color: #999999;
  1026. line-height: 36rpx;
  1027. font-size: 26rpx;
  1028. width: 452rpx;
  1029. padding-top: 24rpx;
  1030. text-align: center;
  1031. margin-left: 56rpx;
  1032. }
  1033. .authorizContbutton{
  1034. width: 422rpx;
  1035. height: 88rpx;
  1036. background: #D53533;
  1037. border-radius: 44rpx;
  1038. line-height: 88rpx;
  1039. text-align: center;
  1040. font-size:30rpx;
  1041. color: #FFFFFF;
  1042. margin-top: 62rpx;
  1043. margin-left:71rpx;
  1044. }
  1045. </style>
  1046. <!--
  1047. -->