goodsDetail.vue 26 KB

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