goodsDetail.vue 27 KB

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