index.vue 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. <template>
  2. <view class="product-con">
  3. <view class="head-wrapper" :style="'top:'+statusBarHeight">
  4. <view class="head-menu">
  5. <view class='iconfont icon-xiangzuo' @click="returns"></view>
  6. <view class="iconfont icon-shouye4" @click="goHome"></view>
  7. </view>
  8. </view>
  9. <view>
  10. <scroll-view :scroll-top="scrollTop" scroll-y='true' scroll-with-animation="true" :style='"height:"+height+"px;"'
  11. @scroll="scroll">
  12. <view id="past0">
  13. <productConSwiper :imgUrls="storeInfo.slider_image" :videoCoverImg='videoCoverImg' :videoline="storeInfo.video_link"></productConSwiper>
  14. <view class='nav acea-row row-between-wrapper'>
  15. <view class='money'>¥<text class='num'>{{storeInfo.price}}</text><text class='y-money'>¥{{storeInfo.ot_price}}</text></view>
  16. <view class='acea-row row-middle'>
  17. <view class='time'>
  18. <view>距秒杀结束仅剩</view>
  19. <!-- <view class='timeCon'>
  20. <text class='num'>{{countDownHour}}</text>:
  21. <text class='num'>{{countDownMinute}}</text>:
  22. <text class='num'>{{countDownSecond}}</text>
  23. </view> -->
  24. <countDown :is-day="false" :tip-text="' '" :day-text="' '" :hour-text="' : '" :minute-text="' : '" :second-text="' '"
  25. :datatime="datatime"></countDown>
  26. </view>
  27. <!-- <view class="timeState" wx:if="{{status == 0}}">已结束</view>
  28. <view class="timeState" wx:if="{{status == 2}}">即将开始</view> -->
  29. <!-- <view class='iconfont icon-jiantou'></view> -->
  30. </view>
  31. </view>
  32. <view class='wrapper'>
  33. <!--<view class='share acea-row row-between row-bottom'>
  34. <view class='money font-color'>
  35. <text class='num'>{{storeInfo.price}}</text>
  36. <text class='vip-money' v-if="storeInfo.vip_price && storeInfo.vip_price > 0">¥{{storeInfo.vip_price}}</text>
  37. <image v-if="storeInfo.vip_price && storeInfo.vip_price > 0" src="/static/images/vip.png"></image>
  38. </view>
  39. </view>-->
  40. <view class='introduce'><text v-if="(storeInfo.merchant && storeInfo.merchant.is_trader)" class="font-bg-red bg">自营</text>{{storeInfo.store_name}}
  41. <view class='iconfont icon-fenxiang' @click="listenerActionSheet"></view>
  42. </view>
  43. <view class='label acea-row row-between-wrapper'>
  44. <view>原价:¥{{storeInfo.ot_price}}</view>
  45. <view>库存:{{storeInfo.stock}}{{storeInfo.unit_name}}</view>
  46. <view>销量:{{storeInfo.sales}}{{storeInfo.unit_name}}</view>
  47. </view>
  48. </view>
  49. <view class='attribute acea-row row-between-wrapper' @click="selecAttr">
  50. <view>{{attrTxt}}:
  51. <text class='atterTxt'>{{attrValue}}</text>
  52. </view>
  53. <view class='iconfont icon-jiantou'></view>
  54. </view>
  55. </view>
  56. <view class='userEvaluation' id="past1" v-if="replyCount>0">
  57. <view class='title acea-row row-between-wrapper'>
  58. <view>用户评价({{replyCount}})</view>
  59. <navigator class='praise' hover-class='none' :url='"/pages/users/goods_comment_list/index?product_id="+id'>
  60. <text class='font-color'>{{replyChance}}</text>好评率
  61. <text class='iconfont icon-jiantou'></text>
  62. </navigator>
  63. </view>
  64. <block v-if="replyCount">
  65. <userEvaluation :reply="reply"></userEvaluation>
  66. </block>
  67. </view>
  68. <!-- 商铺信息 -->
  69. <view class="store-wrapper" v-if="storeInfo.merchant">
  70. <view class="store-hd">
  71. <view class="store-info">
  72. <view class="logo">
  73. <image :src="storeInfo.merchant.mer_avatar" mode=""></image>
  74. </view>
  75. <view class="info">
  76. <view class="name">{{storeInfo.merchant.mer_name}}
  77. <text v-if="(storeInfo.merchant && storeInfo.merchant.is_trader)" class="font-bg-red ml8">自营</text></view>
  78. <view class="txt">{{storeInfo.merchant.care_count}}人关注</view>
  79. </view>
  80. <navigator v-if="hide_mer_status == 0" :url="'/pages/store/home/index?id='+storeInfo.merchant.mer_id" class="link"
  81. hover-class="none">进店</navigator>
  82. </view>
  83. <view class="score-wrapper">
  84. <view class="item">
  85. 商品描述<text>{{storeInfo.merchant.product_score}}</text>
  86. </view>
  87. <view class="item">
  88. 卖家服务<text>{{storeInfo.merchant.service_score}}</text>
  89. </view>
  90. <view class="item">
  91. 物流服务<text>{{storeInfo.merchant.postage_score}}</text>
  92. </view>
  93. </view>
  94. </view>
  95. <view v-if="storeInfo.merchant.recommend && storeInfo.merchant.recommend.length > 0" class="con-box">
  96. <view class="title">店铺推荐</view>
  97. <view class="img-box">
  98. <view class="img-item" v-for="(item,index) in storeInfo.merchant.recommend" :key="index" @click="goProDetail(item)">
  99. <image :src="item.image" mode=""></image>
  100. <view class="txt">
  101. <view class="title line1">{{item.store_name}}</view>
  102. <view class="price">
  103. <text>¥</text>{{item.price}}
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. </view>
  110. <view class='product-intro' id="past3">
  111. <view class='title'>产品介绍</view>
  112. <view class='conter' v-if="description">
  113. <jyf-parser :domain='domain' :html="description.content" ref="article" :tag-style="tagStyle"></jyf-parser>
  114. </view>
  115. </view>
  116. <view style='height:120rpx;'></view>
  117. </scroll-view>
  118. </view>
  119. <view class='footer acea-row row-between-wrapper'>
  120. <navigator hover-class="none" class="item" :url="`/pages/chat/customer_list/chat?mer_id=${storeInfo.mer_id}&uid=${uid}&productId=${id}`">
  121. <view class="iconfont icon-kefu"></view>
  122. <view>客服</view>
  123. </navigator>
  124. <view @click="setCollect" class='item'>
  125. <view class='iconfont icon-shoucang1' v-if="storeInfo.isRelation"></view>
  126. <view class='iconfont icon-shoucang' v-else></view>
  127. <view>收藏</view>
  128. </view>
  129. <!-- <navigator open-type='switchTab' class="animated item" :class="animated==true?'bounceIn':''" url='/pages/order_addcart/order_addcart'
  130. hover-class="none">
  131. <view class='iconfont icon-gouwuche1'>
  132. <text class='num bg-color'>{{CartCount || 0}}</text>
  133. </view>
  134. <view>购物车</view>
  135. </navigator>-->
  136. <view class='bnt acea-row'>
  137. <!-- <form @submit="joinCart" report-submit='true'>
  138. <button class='joinCart bnts' form-type="submit">加入购物车</button>
  139. </form> -->
  140. <form @submit="joinCart" report-submit='true'>
  141. <button class='joinCart bnts' @tap="openAlone">直接购买</button>
  142. </form>
  143. <form @submit="goBuy" report-submit='true' v-if="attr.productSelect && storeInfo.seckill_status == '1'">
  144. <button v-if="attr.productSelect.stock == 0" class='buy bnts' form-type="submit" disabled>已售罄</button>
  145. <button v-else class='buy bnts' form-type="submit">秒杀购买</button>
  146. </form>
  147. <form @submit="goBuy" report-submit='true' v-if="attr.productSelect && storeInfo.seckill_status == '0'">
  148. <button class='buy bnts' form-type="submit" disabled>未开始</button>
  149. </form>
  150. <form @submit="goBuy" report-submit='true' v-if="attr.productSelect && storeInfo.seckill_status == '-1'">
  151. <button class='buy bnts' form-type="submit" disabled>已结束</button>
  152. </form>
  153. </view>
  154. </view>
  155. <block v-if="sharePacket.max&&sharePacket.min">
  156. <shareRedPackets :sharePacket="sharePacket" @listenerActionSheet="listenerActionSheet" @closeChange="closeChange"
  157. :showAnimate="showAnimate" @boxStatus="boxStatus"></shareRedPackets>
  158. </block>
  159. <!-- 组件 -->
  160. <productWindow :attr="attr" :isShow='1' :iSplus='1' @myevent="onMyEvent" @ChangeAttr="ChangeAttr" @ChangeCartNum="ChangeCartNum"
  161. @attrVal="attrVal" @iptCartNum="iptCartNum" id='product-window'></productWindow>
  162. <!-- 分享按钮 -->
  163. <view class="generate-posters acea-row row-middle" :class="posters ? 'on' : ''">
  164. <!-- #ifndef MP -->
  165. <button class="item" hover-class='none' v-if="weixinStatus === true" @click="H5ShareBox = true">
  166. <view class="iconfont icon-weixin3"></view>
  167. <view class="">发送给朋友</view>
  168. </button>
  169. <!-- #endif -->
  170. <!-- #ifdef MP -->
  171. <button class="item" open-type="share" hover-class='none' @click="goFriend">
  172. <view class="iconfont icon-weixin3"></view>
  173. <view class="">发送给朋友</view>
  174. </button>
  175. <!-- #endif -->
  176. <button class="item" hover-class='none' @click="goPoster">
  177. <view class="iconfont icon-haibao"></view>
  178. <view class="">生成海报</view>
  179. </button>
  180. </view>
  181. <view class="mask" v-if="posters" @click="listenerActionClose"></view>
  182. <!-- #ifdef MP -->
  183. <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
  184. <!-- #endif -->
  185. <!-- 海报展示 -->
  186. <view class='poster-pop' v-if="posterImageStatus">
  187. <image src='../../../static/images/poster-close.png' class='close' @click="posterImageClose"></image>
  188. <image :src='posterImage'></image>
  189. <!-- #ifndef H5 -->
  190. <view class='save-poster' @click="savePosterPath">保存到手机</view>
  191. <!-- #endif -->
  192. <!-- #ifdef H5 -->
  193. <view class="keep">长按图片可以保存到手机</view>
  194. <!-- #endif -->
  195. </view>
  196. <view class='mask' v-if="posterImageStatus"></view>
  197. <canvas class="canvas" canvas-id='myCanvas' v-if="canvasStatus"></canvas>
  198. <!-- 发送给朋友图片 -->
  199. <view class="share-box" v-if="H5ShareBox">
  200. <image src="/static/images/share-info.png" @click="H5ShareBox = false"></image>
  201. </view>
  202. </view>
  203. </template>
  204. <script>
  205. var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  206. import {
  207. getSeckillProductDetail,
  208. getProductCode,
  209. collectAdd,
  210. collectDel,
  211. postCartAdd
  212. } from '@/api/store.js';
  213. import {
  214. getUserInfo,
  215. userShare,
  216. imgToBase
  217. } from '@/api/user.js';
  218. import {
  219. getCoupons,
  220. getShopCoupons
  221. } from '@/api/api.js';
  222. import {
  223. getCartCounts
  224. } from '@/api/order.js';
  225. import {
  226. toLogin
  227. } from '@/libs/login.js';
  228. import {
  229. mapGetters
  230. } from "vuex";
  231. import {
  232. imageBase64
  233. } from "@/api/public";
  234. import productConSwiper from '@/components/productConSwiper';
  235. import productWindow from '@/components/productWindow';
  236. import userEvaluation from '@/components/userEvaluation';
  237. import shareRedPackets from '@/components/shareRedPackets';
  238. import countDown from '@/components/countDown';
  239. import home from '@/components/home';
  240. import {
  241. HTTP_REQUEST_URL
  242. } from '@/config/app';
  243. import {
  244. silenceBindingSpread
  245. } from "@/utils";
  246. import parser from "@/components/jyf-parser/jyf-parser";
  247. // #ifdef MP
  248. import authorize from '@/components/Authorize';
  249. // #endif
  250. import history from "@/mixins/history";
  251. import shareScence from "@/libs/spread";
  252. const app = getApp();
  253. export default {
  254. components: {
  255. productConSwiper,
  256. productWindow,
  257. userEvaluation,
  258. shareRedPackets,
  259. home,
  260. countDown,
  261. "jyf-parser": parser,
  262. // #ifdef MP
  263. authorize
  264. // #endif
  265. },
  266. mixins: [history],
  267. data() {
  268. let that = this;
  269. return {
  270. countDownHour: "00",
  271. countDownMinute: "00",
  272. countDownSecond: "00",
  273. datatime: '',
  274. statusBarHeight: statusBarHeight, //系统导航条高度
  275. //属性是否打开
  276. coupon: {
  277. 'coupon': false,
  278. list: [],
  279. },
  280. attrTxt: '请选择', //属性页面提示
  281. attrValue: '', //已选属性
  282. animated: false, //购物车动画
  283. id: 0, //商品id
  284. replyCount: 0, //总评论数量
  285. reply: [], //评论列表
  286. storeInfo: {}, //商品详情
  287. productValue: [], //系统属性
  288. cart_num: 1, //购买数量
  289. isAuto: false, //没有授权的不会自动授权
  290. isShowAuth: false, //是否隐藏授权
  291. isOpen: false, //是否打开属性组件
  292. actionSheetHidden: true,
  293. posterImageStatus: false,
  294. storeImage: '', //海报产品图
  295. PromotionCode: '', //二维码图片
  296. canvasStatus: false, //海报绘图标签
  297. posterImage: '', //海报路径
  298. posterbackgd: '/static/images/posterbackgd.png',
  299. sharePacket: {
  300. isState: true, //默认不显示
  301. }, //分销商详细
  302. // uid: 0, //用户uid
  303. circular: false,
  304. autoplay: false,
  305. interval: 3000,
  306. duration: 500,
  307. clientHeight: "",
  308. systemStore: {}, //门店信息
  309. replyChance: 0,
  310. CartCount: 0,
  311. isDown: true,
  312. storeSelfMention: true,
  313. posters: false,
  314. weixinStatus: false,
  315. attr: {
  316. cartAttr: false,
  317. productAttr: [],
  318. productSelect: {}
  319. },
  320. description: '',
  321. navActive: 0,
  322. H5ShareBox: false, //公众号分享图片
  323. activity: [],
  324. retunTop: true, //顶部返回
  325. navH: "",
  326. navList: [],
  327. opacity: 0,
  328. scrollY: 0,
  329. topArr: [],
  330. toView: '',
  331. height: 0,
  332. heightArr: [],
  333. lock: false,
  334. scrollTop: 0,
  335. tagStyle: {
  336. img: 'width:100%;display:block;'
  337. },
  338. // 动画状态
  339. showAnimate: true,
  340. hide_mer_status: app.globalData.hide_mer_status,
  341. domain: HTTP_REQUEST_URL,
  342. currSpid: "",
  343. codeImg: "",
  344. videoCoverImg: ""
  345. };
  346. },
  347. computed: mapGetters(['isLogin', 'uid']),
  348. onLoad(options) {
  349. let that = this;
  350. if (options.spid) {
  351. that.currSpid = options.spid
  352. app.globalData.spid = options.spid;
  353. }
  354. var pages = getCurrentPages();
  355. if (pages.length <= 1) {
  356. that.retunTop = false
  357. }
  358. // #ifdef MP
  359. this.navH = app.globalData.navHeight;
  360. // #endif
  361. // #ifndef MP
  362. this.navH = 96;
  363. // #endif
  364. this.id = options.id;
  365. if (options.id) {
  366. this.id = options.id
  367. this.datatime = Number(options.time)
  368. // this.status = options.status
  369. }
  370. uni.getSystemInfo({
  371. success: function(res) {
  372. that.height = res.windowHeight
  373. //res.windowHeight:获取整个窗口高度为px,*2为rpx;98为头部占据的高度;
  374. },
  375. });
  376. //扫码携带参数处理
  377. // #ifdef MP
  378. if (options.scene) {
  379. let value = this.$util.getUrlParams(decodeURIComponent(options.scene));
  380. if (value.id) options.id = value.id;
  381. //记录推广人uid
  382. if (value.spid) {
  383. app.globalData.spid = value.spid;
  384. that.currSpid = value.spid
  385. }
  386. if (value.time) this.datatime = value.time
  387. }
  388. if (!options.id) {
  389. return this.$util.Tips({
  390. title: '缺少参数无法查看商品'
  391. }, {
  392. tab: 3,
  393. url: 1
  394. });
  395. } else {
  396. this.id = options.id
  397. }
  398. //记录推广人uid
  399. if (options.spid) app.globalData.spid = options.spid;
  400. // #endif
  401. shareScence(that.currSpid, that.isLogin)
  402. this.getGoodsDetails();
  403. //#ifdef H5
  404. this.isLogin && silenceBindingSpread();
  405. //#endif
  406. if (this.isLogin) {
  407. // #ifdef MP
  408. this.getHistory()
  409. // #endif
  410. }
  411. },
  412. onReady() {
  413. uni.$on('update', (data) => {
  414. this.hide_mer_status = data.hide_mer_status
  415. })
  416. },
  417. mounted: function() {
  418. const app = getApp();
  419. this.$nextTick(() => {
  420. this.hide_mer_status = app.globalData.hide_mer_status
  421. });
  422. },
  423. show() {
  424. console.log('222')
  425. },
  426. /**
  427. * 用户点击右上角分享
  428. */
  429. // #ifdef MP
  430. onShareAppMessage: function() {
  431. let that = this;
  432. that.$set(that, 'actionSheetHidden', !that.actionSheetHidden);
  433. userShare();
  434. return {
  435. title: that.storeInfo.store_name || '',
  436. imageUrl: that.storeInfo.image || '',
  437. path: '/pages/activity/goods_seckill_details/index?id=' + that.id + '&spid=' + that.uid,
  438. }
  439. },
  440. onShareTimeline: function() {
  441. let that = this;
  442. that.$set(that, 'actionSheetHidden', !that.actionSheetHidden);
  443. return {
  444. title: that.storeInfo.store_name || '',
  445. query: {
  446. id: that.id,
  447. spid: that.uid
  448. },
  449. imageUrl: that.storeInfo.image || ''
  450. }
  451. },
  452. // #endif
  453. methods: {
  454. goProDetail(item) {
  455. console.log(item, 'goProDetail')
  456. uni.redirectTo({
  457. url: '/pages/goods_details/index?id=' + item.product_id
  458. })
  459. },
  460. boxStatus(data) {
  461. this.showAnimate = data
  462. },
  463. closeChange: function() {
  464. this.$set(this.sharePacket, 'isState', true);
  465. },
  466. goActivity: function(e) {
  467. console.log(e);
  468. let item = e;
  469. if (item.type === "1") {
  470. uni.navigateTo({
  471. url: `/pages/activity/goods_seckill_details/index?id=${item.id}&time=${item.time}&status=1`
  472. });
  473. } else if (item.type === "2") {
  474. uni.navigateTo({
  475. url: `/pages/activity/goods_bargain_details/index?id=${item.id}&bargain=${this.uid}`
  476. });
  477. } else {
  478. uni.navigateTo({
  479. url: `/pages/activity/goods_combination_details/index?id=${item.id}`
  480. });
  481. }
  482. },
  483. /**
  484. * 购物车手动填写
  485. *
  486. */
  487. iptCartNum: function(e) {
  488. this.$set(this.attr.productSelect, 'cart_num', e);
  489. },
  490. // 后退
  491. returns: function() {
  492. uni.navigateBack()
  493. },
  494. // 首页
  495. goHome() {
  496. uni.switchTab({
  497. url: '/pages/index/index'
  498. });
  499. },
  500. tap: function(index) {
  501. var id = "past" + index;
  502. var index = index;
  503. var that = this;
  504. // if (!this.data.good_list.length && id == "past2") {
  505. // id = "past3"
  506. // }
  507. this.$set(this, 'toView', id);
  508. this.$set(this, 'navActive', index);
  509. this.$set(this, 'lock', true);
  510. this.$set(this, 'scrollTop', index > 0 ? that.topArr[index] - (app.globalData.navHeight / 2) : that.topArr[index]);
  511. },
  512. scroll: function(e) {
  513. var that = this,
  514. scrollY = e.detail.scrollTop;
  515. var opacity = scrollY / 200;
  516. opacity = opacity > 1 ? 1 : opacity;
  517. that.$set(that, 'showAnimate', false);
  518. that.$set(that, 'opacity', opacity);
  519. that.$set(that, 'scrollY', scrollY);
  520. if (that.lock) {
  521. that.$set(that, 'lock', false)
  522. return;
  523. }
  524. for (var i = 0; i < that.topArr.length; i++) {
  525. if (scrollY < that.topArr[i] - (app.globalData.navHeight / 2) + that.heightArr[i]) {
  526. that.$set(that, 'navActive', i)
  527. break
  528. }
  529. }
  530. },
  531. // 微信登录回调
  532. onLoadFun: function(e) {
  533. this.getCartCount();
  534. // this.getUserInfo();
  535. // this.get_product_collect();
  536. this.isShowAuth = false
  537. },
  538. /*
  539. * 获取用户信息
  540. */
  541. getUserInfo: function() {
  542. let that = this;
  543. that.$set(that.sharePacket, 'isState', that.sharePacket.priceName != 0 ? false : true);
  544. getUserInfo().then(res => {
  545. // that.$set(that, 'uid', res.data.uid);
  546. });
  547. },
  548. /**
  549. * 购物车数量加和数量减
  550. *
  551. */
  552. ChangeCartNum: function(changeValue) {
  553. //changeValue:是否 加|减
  554. //获取当前变动属性
  555. let productSelect = this.productValue[this.attrValue];
  556. //如果没有属性,赋值给商品默认库存
  557. if (productSelect === undefined && !this.attr.productAttr.length)
  558. productSelect = this.attr.productSelect;
  559. //无属性值即库存为0;不存在加减;
  560. if (productSelect === undefined) return;
  561. let stock = productSelect.stock || 0;
  562. let num = this.attr.productSelect;
  563. if (changeValue) {
  564. num.cart_num++;
  565. if (num.cart_num > stock) {
  566. this.$set(this.attr.productSelect, "cart_num", stock);
  567. this.$set(this, "cart_num", stock);
  568. }
  569. } else {
  570. num.cart_num--;
  571. if (num.cart_num < 1) {
  572. this.$set(this.attr.productSelect, "cart_num", 1);
  573. this.$set(this, "cart_num", 1);
  574. }
  575. }
  576. },
  577. attrVal(val) {
  578. this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val.indexn]);
  579. },
  580. /**
  581. * 属性变动赋值
  582. *
  583. */
  584. ChangeAttr: function(res) {
  585. let productSelect = this.productValue[res];
  586. if (productSelect && productSelect.stock > 0) {
  587. this.$set(this.attr.productSelect, "image", productSelect.image);
  588. this.$set(this.attr.productSelect, "price", productSelect.price);
  589. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  590. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  591. this.$set(this.attr.productSelect, "cart_num", 1);
  592. this.$set(this, "attrValue", res);
  593. this.$set(this, "attrTxt", "已选择");
  594. } else {
  595. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  596. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  597. this.$set(this.attr.productSelect, "stock", 0);
  598. this.$set(this.attr.productSelect, "unique", "");
  599. this.$set(this.attr.productSelect, "cart_num", 0);
  600. this.$set(this, "attrValue", "");
  601. this.$set(this, "attrTxt", "请选择");
  602. }
  603. },
  604. setClientHeight: function() {
  605. let that = this;
  606. let view = uni.createSelectorQuery().in(this).select("#list0");
  607. view.fields({
  608. size: true,
  609. }, data => {
  610. that.$set(that, 'clientHeight', data.height + 20)
  611. }).exec();
  612. },
  613. /**
  614. * 获取产品详情
  615. *
  616. */
  617. getGoodsDetails: function() {
  618. uni.showLoading({
  619. title: '加载中',
  620. // #ifndef MP-TOUTIAO
  621. mask: true
  622. // #endif
  623. });
  624. let that = this;
  625. getSeckillProductDetail(that.id).then(async res => {
  626. console.log(res)
  627. uni.hideLoading();
  628. let storeInfo = res.data;
  629. if (storeInfo.video_link && storeInfo.slider_image.length > 1) {
  630. this.videoCoverImg = storeInfo.slider_image[0]
  631. storeInfo.slider_image.splice(0, 1)
  632. } else if (storeInfo.video_link && storeInfo.slider_image.length === 1) {
  633. this.videoCoverImg = storeInfo.slider_image[0]
  634. }
  635. that.$set(that, 'storeInfo', storeInfo);
  636. that.$set(that, 'description', storeInfo.content);
  637. that.$set(that, 'reply', res.data.topReply ? [res.data.topReply] : []);
  638. that.$set(that, 'replyCount', res.data.replayData.count);
  639. that.$set(that, 'replyChance', res.data.replayData.rate);
  640. that.$set(that.attr, 'productAttr', res.data.attr);
  641. that.$set(that, 'productValue', res.data.sku);
  642. that.$set(that.sharePacket, 'priceName', res.data.priceName);
  643. that.$set(that.sharePacket, 'max', res.data.max_extension);
  644. that.$set(that.sharePacket, 'min', res.data.min_extension);
  645. that.$set(that, 'systemStore', res.data.system_store);
  646. that.$set(that, 'storeSelfMention', res.data.store_self_mention);
  647. that.$set(that, 'PromotionCode', storeInfo.code_base);
  648. that.$set(that, 'activity', res.data.activity ? res.data.activity : []);
  649. that.$set(that, 'datatime', res.data.stop ? res.data.stop : []);
  650. uni.setNavigationBarTitle({
  651. title: storeInfo.store_name.substring(0, 7) + "..."
  652. })
  653. that.$set(that, 'storeImage', that.storeInfo.image);
  654. // #ifdef H5
  655. if (that.isLogin) {
  656. that.getCartCount();
  657. };
  658. this.ShareInfo();
  659. // #endif
  660. this.downloadFilePromotionCode();
  661. setTimeout(function() {
  662. that.infoScroll();
  663. }, 500);
  664. that.DefaultSelect();
  665. }).catch(err => {
  666. //状态异常返回上级页面
  667. return that.$util.Tips({
  668. title: err
  669. }, {
  670. tab: 3,
  671. url: 1
  672. });
  673. })
  674. },
  675. infoScroll: function() {
  676. var that = this,
  677. topArr = [],
  678. heightArr = [];
  679. for (var i = 0; i < that.navList.length; i++) { //productList
  680. //获取元素所在位置
  681. var query = uni.createSelectorQuery().in(this);
  682. var idView = "#past" + i;
  683. // if (!that.data.good_list.length && i == 2) {
  684. // var idView = "#past" + 3;
  685. // }
  686. query.select(idView).boundingClientRect();
  687. query.exec(function(res) {
  688. var top = res[0].top;
  689. var height = res[0].height;
  690. topArr.push(top);
  691. heightArr.push(height);
  692. that.$set(that, 'topArr', topArr);
  693. that.$set(that, 'heightArr', heightArr);
  694. });
  695. };
  696. },
  697. /**
  698. * 拨打电话
  699. */
  700. makePhone: function() {
  701. uni.makePhoneCall({
  702. phoneNumber: this.systemStore.phone
  703. })
  704. },
  705. /**
  706. * 打开地图
  707. *
  708. */
  709. showMaoLocation: function() {
  710. if (!this.systemStore.latitude || !this.systemStore.longitude) return this.$util.Tips({
  711. title: '缺少经纬度信息无法查看地图!'
  712. });
  713. uni.openLocation({
  714. latitude: parseFloat(this.systemStore.latitude),
  715. longitude: parseFloat(this.systemStore.longitude),
  716. scale: 8,
  717. name: this.systemStore.name,
  718. address: this.systemStore.address + this.systemStore.detailed_address,
  719. success: function() {},
  720. });
  721. },
  722. /**
  723. * 默认选中属性
  724. *
  725. */
  726. DefaultSelect: function() {
  727. let productAttr = this.attr.productAttr;
  728. let value = [];
  729. let arr = []
  730. let unSortArr = []
  731. console.log(arr, 'arr')
  732. for (var key in this.productValue) {
  733. if (this.productValue[key].stock > 0) {
  734. value = this.attr.productAttr.length ? key.split(",") : [];
  735. break;
  736. }
  737. }
  738. for (let i = 0; i < productAttr.length; i++) {
  739. this.$set(productAttr[i], "index", value[i]);
  740. }
  741. //sort();排序函数:数字-英文-汉字;
  742. let productSelect = this.productValue[value.join(",")];
  743. if (productSelect && productAttr.length) {
  744. this.$set(
  745. this.attr.productSelect,
  746. "store_name",
  747. this.storeInfo.store_name
  748. );
  749. this.$set(this.attr.productSelect, "image", productSelect.image);
  750. this.$set(this.attr.productSelect, "price", productSelect.price);
  751. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  752. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  753. this.$set(this, "attrValue", value.join(","));
  754. this.$set(this, "attrTxt", "已选择");
  755. if (productSelect.stock == 0) {
  756. this.$set(this.attr.productSelect, "cart_num", 0);
  757. } else {
  758. this.$set(this.attr.productSelect, "cart_num", 1);
  759. }
  760. } else if (!productSelect && productAttr.length) {
  761. this.$set(
  762. this.attr.productSelect,
  763. "store_name",
  764. this.storeInfo.store_name
  765. );
  766. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  767. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  768. this.$set(this.attr.productSelect, "stock", 0);
  769. this.$set(this.attr.productSelect, "unique", "");
  770. this.$set(this.attr.productSelect, "cart_num", 0);
  771. this.$set(this, "attrValue", "");
  772. this.$set(this, "attrTxt", "请选择");
  773. } else if (!productSelect && !productAttr.length) {
  774. this.$set(
  775. this.attr.productSelect,
  776. "store_name",
  777. this.storeInfo.store_name
  778. );
  779. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  780. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  781. this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
  782. this.$set(
  783. this.attr.productSelect,
  784. "unique",
  785. this.storeInfo.unique || ""
  786. );
  787. this.$set(this.attr.productSelect, "cart_num", 1);
  788. this.$set(this, "attrValue", "");
  789. this.$set(this, "attrTxt", "请选择");
  790. } else if (productSelect && !productAttr.length) {
  791. this.$set(
  792. this.attr.productSelect,
  793. "store_name",
  794. this.storeInfo.store_name
  795. );
  796. this.$set(this.attr.productSelect, "image", productSelect.image);
  797. this.$set(this.attr.productSelect, "price", productSelect.price);
  798. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  799. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  800. this.$set(this, "attrValue", value.join(","));
  801. this.$set(this, "attrTxt", "已选择");
  802. if (productSelect.stock == 0) {
  803. this.$set(this.attr.productSelect, "cart_num", 0);
  804. } else {
  805. this.$set(this.attr.productSelect, "cart_num", 1);
  806. }
  807. }
  808. },
  809. /*
  810. * 单独购买
  811. */
  812. openAlone: function() {
  813. uni.navigateTo({
  814. url: `/pages/goods_details/index?id=${this.storeInfo.old_product_id}`
  815. })
  816. },
  817. /**
  818. *
  819. *
  820. * 收藏商品
  821. */
  822. setCollect: function() {
  823. if (this.isLogin === false) {
  824. // #ifdef H5 || APP-PLUS
  825. toLogin();
  826. // #endif
  827. // #ifdef MP
  828. this.isAuto = true;
  829. this.$set(this, 'isShowAuth', true)
  830. // #endif
  831. } else {
  832. let that = this;
  833. if (this.storeInfo.isRelation) {
  834. collectDel({
  835. type: 1,
  836. type_id: this.id
  837. }).then(res => {
  838. that.$set(that.storeInfo, 'isRelation', !that.storeInfo.isRelation);
  839. })
  840. } else {
  841. collectAdd({
  842. type_id: this.id,
  843. type: 1
  844. }).then(res => {
  845. that.$set(that.storeInfo, 'isRelation', !that.storeInfo.isRelation);
  846. })
  847. }
  848. }
  849. },
  850. /**
  851. * 打开属性插件
  852. */
  853. selecAttr: function() {
  854. this.$set(this.attr, 'cartAttr', true);
  855. this.$set(this, 'isOpen', true);
  856. },
  857. onMyEvent: function() {
  858. this.$set(this.attr, 'cartAttr', false);
  859. this.$set(this, 'isOpen', false);
  860. },
  861. /**
  862. * 打开属性加入购物车
  863. *
  864. */
  865. joinCart: function(e) {
  866. //是否登录
  867. if (this.isLogin === false) {
  868. // #ifdef H5 || APP-PLUS
  869. toLogin();
  870. // #endif
  871. // #ifdef MP
  872. this.$set(this, 'isAuto', true);
  873. this.$set(this, 'isShowAuth', true)
  874. // #endif
  875. } else {
  876. this.goCat();
  877. }
  878. },
  879. /*
  880. * 加入购物车
  881. */
  882. goCat: function(news) {
  883. let that = this,
  884. productSelect = that.productValue[this.attrValue];
  885. //打开属性
  886. if (that.attrValue) {
  887. //默认选中了属性,但是没有打开过属性弹窗还是自动打开让用户查看默认选中的属性
  888. that.attr.cartAttr = !that.isOpen ? true : false;
  889. } else {
  890. if (that.isOpen) that.attr.cartAttr = true;
  891. else that.attr.cartAttr = !that.attr.cartAttr;
  892. }
  893. //只有关闭属性弹窗时进行加入购物车
  894. if (that.attr.cartAttr === true && that.isOpen === false)
  895. return (that.isOpen = true);
  896. //如果有属性,没有选择,提示用户选择
  897. if (
  898. that.attr.productAttr.length &&
  899. that.isOpen === true &&
  900. productSelect.stock == 0
  901. )
  902. return that.$util.Tips({
  903. title: "产品库存不足,请选择其它"
  904. });
  905. let q = {
  906. is_new: 1,
  907. product_id: that.id,
  908. cart_num: that.attr.productSelect.cart_num,
  909. product_attr_unique: that.attr.productSelect !== undefined ? that.attr.productSelect.unique : "",
  910. product_type: 1
  911. };
  912. postCartAdd(q)
  913. .then(function(res) {
  914. that.isOpen = false;
  915. that.attr.cartAttr = false;
  916. if (news) {
  917. uni.navigateTo({
  918. url: '/pages/users/order_confirm/index?cartId=' + res.data.cart_id + '&seckillId=' + that.id
  919. });
  920. } else {
  921. that.$util.Tips({
  922. title: "添加购物车成功",
  923. success: () => {
  924. that.getCartCount(true);
  925. }
  926. });
  927. }
  928. })
  929. .catch(res => {
  930. that.isOpen = false;
  931. return that.$util.Tips({
  932. title: res
  933. });
  934. });
  935. },
  936. /**
  937. * 获取购物车数量
  938. * @param boolean 是否展示购物车动画和重置属性
  939. */
  940. getCartCount: function(isAnima) {
  941. let that = this;
  942. const isLogin = that.isLogin;
  943. if (isLogin) {
  944. getCartCounts().then(res => {
  945. that.CartCount = res.data[0].count;
  946. //加入购物车后重置属性
  947. if (isAnima) {
  948. that.animated = true;
  949. setTimeout(function() {
  950. that.animated = false;
  951. }, 500);
  952. }
  953. });
  954. }
  955. },
  956. /**
  957. * 立即购买
  958. */
  959. goBuy: function(e) {
  960. if (this.isLogin === false) {
  961. // #ifdef H5 || APP-PLUS
  962. toLogin();
  963. // #endif
  964. // #ifdef MP
  965. this.$set(this, 'isAuto', true);
  966. this.$set(this, 'isShowAuth', true);
  967. // #endif
  968. } else {
  969. this.goCat(true);
  970. }
  971. },
  972. // 授权关闭
  973. authColse: function(e) {
  974. console.log(e, 'eeeee')
  975. this.isShowAuth = e
  976. },
  977. /**
  978. * 分享打开
  979. *
  980. */
  981. listenerActionSheet: function() {
  982. if (this.isLogin === false) {
  983. // #ifdef H5 || APP-PLUS
  984. toLogin();
  985. // #endif
  986. // #ifdef MP
  987. this.$set(this, 'isAuto', true);
  988. this.$set(this, 'isShowAuth', true);
  989. // #endif
  990. } else {
  991. // #ifdef H5
  992. if (this.$wechat.isWeixin() === true) {
  993. this.weixinStatus = true;
  994. }
  995. // #endif
  996. this.posters = true;
  997. }
  998. },
  999. // 分享关闭
  1000. listenerActionClose: function() {
  1001. this.posters = false;
  1002. },
  1003. //隐藏海报
  1004. posterImageClose: function() {
  1005. this.posterImageStatus = false
  1006. },
  1007. //替换安全域名
  1008. setDomain: function(url) {
  1009. url = url ? url.toString() : '';
  1010. //本地调试打开,生产请注销
  1011. if (url.indexOf("https://") > -1) return url;
  1012. else return url.replace('http://', 'https://');
  1013. },
  1014. /**
  1015. * 获取产品分销二维码
  1016. * @param function successFn 下载完成回调
  1017. *
  1018. */
  1019. downloadFilePromotionCode() {
  1020. let that = this;
  1021. let type;
  1022. // #ifndef MP
  1023. type = 'wechat'
  1024. // #endif
  1025. // #ifdef MP
  1026. type = 'routine'
  1027. // #endif
  1028. getProductCode(that.id, {
  1029. type: type,
  1030. product_type: 1
  1031. }).then(async res => {
  1032. this.codeImg = res.data.url;
  1033. console.log(this.codeImg)
  1034. that.$set(that, 'isDown', false);
  1035. }).catch(err => {
  1036. that.$util.Tips({
  1037. title: err
  1038. });
  1039. that.posters = false;
  1040. that.$set(that, 'isDown', false);
  1041. that.$set(that, 'PromotionCode', '');
  1042. });
  1043. },
  1044. async imgToBase(url) {
  1045. let res = await imgToBase({
  1046. image: url
  1047. })
  1048. return res.data.image
  1049. },
  1050. // 小程序关闭分享弹窗;
  1051. goFriend: function() {
  1052. this.posters = false;
  1053. },
  1054. /**
  1055. * 生成海报
  1056. */
  1057. async goPoster() {
  1058. if (this.posterImage) {
  1059. this.posterImageStatus = true
  1060. this.posters = false
  1061. return
  1062. }
  1063. let that = this;
  1064. let arr2
  1065. that.posters = false;
  1066. that.$set(that, 'canvasStatus', true);
  1067. uni.showLoading({
  1068. title: '海报生成中',
  1069. mask: true
  1070. });
  1071. // #ifdef MP
  1072. arr2 = [that.posterbackgd, await this.fileStoreImage(this.storeImage), await this.fileStoreImage(
  1073. this.codeImg)];
  1074. // #endif
  1075. // #ifdef H5
  1076. arr2 = [that.posterbackgd, await this.imgToBase(that.storeImage), await this.imgToBase(this.codeImg)];
  1077. // #endif
  1078. console.log(arr2)
  1079. that.$util.PosterCanvas(arr2, that.storeInfo.store_name, that.storeInfo.price, function(tempFilePath) {
  1080. that.$set(that, 'posterImage', tempFilePath);
  1081. that.$set(that, 'posterImageStatus', true);
  1082. that.$set(that, 'canvasStatus', false);
  1083. that.$set(that, 'actionSheetHidden', !that.actionSheetHidden);
  1084. }, (err) => {
  1085. that.$set(that, 'canvasStatus', false);
  1086. });
  1087. },
  1088. //图片转符合安全域名路径
  1089. fileStoreImage(url) {
  1090. // #ifdef MP
  1091. let ishttps = url.split('//')[0] == 'https:'
  1092. if (!ishttps) {
  1093. url = 'https://'+url.split('//')[1]
  1094. }
  1095. // #endif
  1096. return new Promise((resolve, reject) => {
  1097. let that = this;
  1098. uni.downloadFile({
  1099. url: url,
  1100. success: function(res) {
  1101. resolve(res.tempFilePath);
  1102. },
  1103. fail: function() {
  1104. return that.$util.Tips({
  1105. title: ''
  1106. });
  1107. }
  1108. });
  1109. })
  1110. },
  1111. /*
  1112. * 保存到手机相册
  1113. */
  1114. // #ifdef MP
  1115. savePosterPath: function() {
  1116. let that = this;
  1117. uni.getSetting({
  1118. success(res) {
  1119. if (!res.authSetting['scope.writePhotosAlbum']) {
  1120. uni.authorize({
  1121. scope: 'scope.writePhotosAlbum',
  1122. success() {
  1123. uni.saveImageToPhotosAlbum({
  1124. filePath: that.posterImage,
  1125. success: function(res) {
  1126. that.posterImageClose();
  1127. that.$util.Tips({
  1128. title: '保存成功',
  1129. icon: 'success'
  1130. });
  1131. },
  1132. fail: function(res) {
  1133. that.$util.Tips({
  1134. title: '保存失败'
  1135. });
  1136. }
  1137. })
  1138. }
  1139. })
  1140. } else {
  1141. uni.saveImageToPhotosAlbum({
  1142. filePath: that.posterImage,
  1143. success: function(res) {
  1144. that.posterImageClose();
  1145. that.$util.Tips({
  1146. title: '保存成功',
  1147. icon: 'success'
  1148. });
  1149. },
  1150. fail: function(res) {
  1151. that.$util.Tips({
  1152. title: '保存失败'
  1153. });
  1154. },
  1155. })
  1156. }
  1157. }
  1158. })
  1159. },
  1160. // #endif
  1161. //#ifdef H5
  1162. ShareInfo() {
  1163. let data = this.storeInfo;
  1164. let href = location.href;
  1165. if (this.$wechat.isWeixin()) {
  1166. getUserInfo().then(res => {
  1167. href =
  1168. href.indexOf("?") === -1 ?
  1169. href + "?spid=" + res.data.uid :
  1170. href + "&spid=" + res.data.uid;
  1171. let configAppMessage = {
  1172. desc: data.store_info,
  1173. title: data.store_name,
  1174. link: href,
  1175. imgUrl: data.image
  1176. };
  1177. this.$wechat.wechatEvevt([
  1178. "updateAppMessageShareData",
  1179. "updateTimelineShareData",
  1180. "onMenuShareAppMessage",
  1181. "onMenuShareTimeline"
  1182. ], configAppMessage).then(res => {
  1183. console.log(res, '=============================>>WXAPI');
  1184. }).catch(err => {
  1185. console.log(err);
  1186. })
  1187. });
  1188. }
  1189. },
  1190. //#endif
  1191. },
  1192. }
  1193. </script>
  1194. <style scoped lang="scss">
  1195. .product-con .nav {
  1196. background-image: url('data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QN/aHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0MiA3OS4xNjA5MjQsIDIwMTcvMDcvMTMtMDE6MDY6MzkgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NDNlZTU0ZDMtNjEwZS03ZjQ4LWEwODgtNTZlMTZiNzI3NTQwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjI1NEI2MDUyM0ZDMjExRTk5OTg1REI1OUM1NjNEMUZCIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjI1NEI2MDUxM0ZDMjExRTk5OTg1REI1OUM1NjNEMUZCIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE4IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjUyMDIzNWNmLTIwNGYtOTQ0My05YTBiLWNmMmZlMTJmMDk3NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0M2VlNTRkMy02MTBlLTdmNDgtYTA4OC01NmUxNmI3Mjc1NDAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAAGBAQEBQQGBQUGCQYFBgkLCAYGCAsMCgoLCgoMEAwMDAwMDBAMDg8QDw4MExMUFBMTHBsbGxwfHx8fHx8fHx8fAQcHBw0MDRgQEBgaFREVGh8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx//wAARCABkAu4DAREAAhEBAxEB/8QAfQABAQEBAQEBAAAAAAAAAAAAAAECAwQFBgEBAQEBAQEBAQAAAAAAAAAAAAECAwQFBgcQAQEAAgEDAwMDBQEBAAAAAAABAgMRITESQTIEUWFxobHBgSJCUgVyExEBAQEBAAICAgMAAwAAAAAAAAECEUEDITFhsVFxEvCBkf/aAAwDAQACEQMRAD8A/PPyb+0gAAAArNvKqAgAAoogAgC448/gtOtsoCAJasjUjLSgPpfC0Y44zZl1zvafRw3fDze3Xzx65WHFZRGgef5fzJpnjj1239Gs5636/X3+ny7bbbbzb3rq9SAAAAAAAAAAAAAAAAAAAAAA+x/y/wDl9t++ffDC/vXHe/EeT3+/xH13F5AAHl+f8/X8XX/tty9mH837N5z109Xqur+H53bt2bdl2bL5ZZd69EnH0c5knIwqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApyHE5qqcdERRAAAAVm1VAAAQAAUUQFk5/CI2iAgCWrI1Iiqij0atXjxbOc72n0ZtY1p9DXj44TH6d3GvLq9rcqI1KiOHyvlzTPHHrsv6NZz1vGO/0+bbbbbebe9dXpQAAAAAAAAAAAAAAAAAAAAAH1/wDmf82dN++ffXrv71x3vxHl93u8R9iVxeMAB5fn/P1/F1/7bcvZh/N+zec9dPV6rq/h+d27dm3Zdmy+WWXevRJx9HOZJyMKoAAAAAAAAAAAAADnnuxl4nWtTLUy1MrMfLPp9k5/Bz+E17Ms+enE+q2cLONyy9urKAgAAAAAAAAAAAAAAKlqqgNSIgAIAACoAqoAAACAACrJyJa0iAgCWrI1IiqA76tXjxb7r2iWsWvXq1+PW+79nK1w1rrtKywojj8j5U1Txx67L+jUz1vGO/0+fbbbbebe9dHoQAAAAAAAAAAAAAAAAAAAAAH0/wDn/Bk43bp98ML+9ct68R5/b7fEfVxycnk46SozW5UR5fn/AD9fxdf+23L2Yfzfs3nPXT1eq6v4fndu3Zt2XZsvlll3r0ScfRzmScjCqAAAAAAAAAAAAAA5bs7P7Z3vdrMbzDDCYTzz7+kW3vxC3qSZbcub0xi/S/Rs2f4YfjoknmknmtYSa8ecr39Et6l+XRlkEAAAAAAAAAAAAAS1VQVqREATnqoqIACoAoACoAAACAsnINIgIAWrI1IyqgO2vX49b7vSJaxa9WvDx633fs52uOtddWWVlEc/kfJmueOPXO/osnWsY68Ftt5vW3vXR3QAAAAAAAAAAAAAAAAAAAAAHt+H8aczZsn/AJx/msa04+zfiPo45OTz2OuOSMWOuOSM2OXzPna/i6+b/dsy9mH837LnPWvX6rq/h+f27dm3Zdmy+WWXevRJx9DOZJyMKoAAAAAAAAAAAAAADHjMcrsz/o13w13wxJlty5vTGNfTX0bNn+GH46JJ5pJ5q44Y68fLLv6Qt6lvWJMtuXN7L9L9PROOOjmwCAAAAAAAAAAAAF7CsqrUiIAlvKqgNIyCgIAoAACoAABJyDSICAFqrEVQHXXhx1vu9IlrNr0a8PHre7na5WukqMtSojnv+RNc4x99/RZGs568Vtt5vW3vXR2QAAAAAAAAAAAAAAAAAAAAAHfRrnPll/SM2sar2Y5sONjrjkjNjtjkyxYz8j5mHx9fN/uzvsw/m/ZZnq49f+q+Nt27Nuy7Nl8ssu9dpOPZnMk5GFUAAAAAAAAAAAAAAAByywyz2dfbG5eRuXkTZs/ww/HQk81ZPNXHHHXj5Zd/SFvUt6xJlty5vZfpfprZsmM8MP61JO/NSTvzXXCcYyfRis1RAAAAAAAAAAAAEvdViyIAJbyqknILwiAAAAIAoAACoCycgqICAFFRVAdcMOOt7+kS1m12wx463uza52ukqMqiMbd/hOJ7/wBlkaznryW23m923VAAAAAAAAAAAAAAAAAAAAAAaxk55qFdsckYsdcckYsdscmWLF2/Jx04c98r7cSZ6Zx183Zsz2Z3PO85XvXSR6ZOMqAAAAAAAAAAAAAAAAAJsmVxsxvFWLHPHHHXj5Ze70jVvWresSZbcub2X6X6a2bJhPDD+tSTvzSTvzU067b5Xt6LrRqu7m5gAAAAAAAAAAAAHHUUBLeVUk5BUQ56gAAAAAgCgABwgoAgAKiqA6YYcdb3Rm11xnHX1ZtYtbRleQZ27fCcT3fsSLM9ea2283u26IAAAAAAAAAAAAAAAAAAAAAACyg3jkiOmOSM2N5bphOe99InGZnrzZZZZZXLK82tOsnGVAAAAAAAAAAAAAAAAAAAEywxy7xZeLLw8ZMfGdDp1nHVhOvHN+5dVbqtoyAAAAAAAAAAAAAACpbyqknIKiJaCKrSIAAAAAgChwgoAgAKigK3jjx1vdGbXTGcflGa2jKyoM7NvjOJ7v2WRZOuFvPWtNoAAAAAAAAAAAAAAAAAAAAAAAACyg158RE4zbbeaqoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACXuLCTlVVES0EVV46AqMgoAAAACcAoAgAKKANYzj8olbiI1KjKgzns8ek7nCRyabQAAAAAAAAAAAAHq16cZjOZLss5vPtwn1rjrV/6/bndf+Jlq13GWSzHth/tnfr+Cavf+fBLXnyxuOVxvSzpXWXrpKigAAAAAAAAACggAAAAAAAAAAAAAAAAPTr14eE6eVy73636T6SetcdavWLb1jdhjJMpx1+na/ifSNYvhc1xdGgAAAAAAAAAAAAAAAAAAACzkUBLQRVWREUAQAFAAAAABAAUABZAaiMtACGWfHbucJHNWkAAAAAAAAAAAAAB68bjdctl8OemH+WeX3+zhfv8AP6cr9tyZ3O9Z/wDXj+7L0wn0jPxz8ftP1+3j2ePnfH289LXoz9fLtPplQAAAAAAAAAAAAAAAAAAAAAAAAAAAB2w3YzHjL6cfmek+0c7j+Gbk3bccp449efdl2547ST0kMZ4Zy4ujQAAAAAAAAAAAAAAAAAAAACWioqrIiKCc9QUQAAFAAABAAAAUgNQRUQAuXH5DjKqgAAAAAAAAAAAAAANYbM8LzjeL9UuZfss6t25+Hhzxj6yev5T/ADO9T/MYaUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAs5FST6goJaogrSMgAAAoAIAAAAAsAQUC0RFVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALyKyqrx0RFEAAAAAAAAAAAAVAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUEf/9k=');
  1197. background-repeat: no-repeat;
  1198. background-size: 100% 100%;
  1199. width: 100%;
  1200. height: 100rpx;
  1201. padding: 0 30rpx;
  1202. box-sizing: border-box;
  1203. }
  1204. .product-con .nav .money {
  1205. font-size: 28rpx;
  1206. color: #fff;
  1207. }
  1208. .product-con .nav .money .num {
  1209. font-size: 48rpx;
  1210. }
  1211. .product-con .nav .money .y-money {
  1212. font-size: 26rpx;
  1213. margin-left: 10rpx;
  1214. text-decoration: line-through;
  1215. }
  1216. .product-con .nav .time {
  1217. font-size: 20rpx;
  1218. color: #fff;
  1219. text-align: center;
  1220. }
  1221. .product-con .nav .time .timeCon {
  1222. margin-top: 10rpx;
  1223. }
  1224. .product-con .nav .time .timeCon .num {
  1225. padding: 0 7rpx;
  1226. font-size: 22rpx;
  1227. color: #ff3d3d;
  1228. background-color: #fff;
  1229. border-radius: 2rpx;
  1230. }
  1231. .product-con .nav .timeState {
  1232. font-size: 28RPX;
  1233. color: #FFF;
  1234. }
  1235. .product-con .nav .iconfont {
  1236. color: #fff;
  1237. font-size: 30rpx;
  1238. margin-left: 20rpx;
  1239. }
  1240. .product-con .wrapper {
  1241. padding: 32rpx;
  1242. width: 100%;
  1243. box-sizing: border-box;
  1244. }
  1245. .product-con .wrapper .introduce {
  1246. margin: 0;
  1247. padding-right: 36rpx;
  1248. position: relative;
  1249. .icon-fenxiang {
  1250. position: absolute;
  1251. top: 0;
  1252. right: 0;
  1253. }
  1254. }
  1255. .product-con .wrapper .introduce .infor {
  1256. width: 570rpx;
  1257. }
  1258. .product-con .wrapper .introduce .iconfont {
  1259. font-size: 37rpx;
  1260. color: #515151;
  1261. }
  1262. .product-con .wrapper .label {
  1263. margin: 18rpx 0 0 0;
  1264. font-size: 24rpx;
  1265. color: #82848f;
  1266. }
  1267. .product-con .wrapper .label .stock {
  1268. width: 255rpx;
  1269. margin-right: 28rpx;
  1270. }
  1271. .activity_pin {
  1272. width: auto;
  1273. height: 44rpx;
  1274. line-height: 44rpx;
  1275. background: linear-gradient(90deg, rgba(233, 51, 35, 1) 0%, rgba(250, 101, 20, 1) 100%);
  1276. opacity: 1;
  1277. border-radius: 22rpx;
  1278. padding: 0 15rpx;
  1279. margin-left: 19rpx;
  1280. }
  1281. .activity_miao {
  1282. width: auto;
  1283. height: 44rpx;
  1284. line-height: 44rpx;
  1285. padding: 0 15rpx;
  1286. background: linear-gradient(90deg, rgba(250, 102, 24, 1) 0%, rgba(254, 161, 15, 1) 100%);
  1287. opacity: 1;
  1288. border-radius: 22rpx;
  1289. margin-left: 19rpx;
  1290. }
  1291. .iconfonts {
  1292. color: #fff !important;
  1293. font-size: 28rpx;
  1294. }
  1295. .activity_title {
  1296. font-size: 24rpx;
  1297. color: #fff;
  1298. }
  1299. .activity_kan {
  1300. width: auto;
  1301. height: 44rpx;
  1302. line-height: 44rpx;
  1303. padding: 0 15rpx;
  1304. background: linear-gradient(90deg, rgba(254, 159, 15, 1) 0%, rgba(254, 178, 15, 1) 100%);
  1305. opacity: 1;
  1306. border-radius: 22rpx;
  1307. margin-left: 19rpx;
  1308. }
  1309. .mask {
  1310. z-index: 300 !important;
  1311. }
  1312. .head-bar {
  1313. background: #fff;
  1314. }
  1315. .generate-posters {
  1316. width: 100%;
  1317. height: 170rpx;
  1318. background-color: #fff;
  1319. position: fixed;
  1320. left: 0;
  1321. bottom: 0;
  1322. z-index: 388;
  1323. transform: translate3d(0, 100%, 0);
  1324. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  1325. border-top: 1rpx solid #eee;
  1326. }
  1327. .generate-posters.on {
  1328. transform: translate3d(0, 0, 0);
  1329. }
  1330. .generate-posters .item {
  1331. flex: 50%;
  1332. text-align: center;
  1333. font-size: 30rpx;
  1334. }
  1335. .generate-posters .item .iconfont {
  1336. font-size: 80rpx;
  1337. color: #5eae72;
  1338. }
  1339. .generate-posters .item .iconfont.icon-haibao {
  1340. color: #5391f1;
  1341. }
  1342. .product-con .mask {
  1343. z-index: 88;
  1344. }
  1345. .product-con .footer {
  1346. padding: 0 20rpx 0 80rpx;
  1347. position: fixed;
  1348. left: 0;
  1349. bottom: 0;
  1350. width: 100%;
  1351. box-sizing: border-box;
  1352. height: 100rpx;
  1353. background-color: #fff;
  1354. z-index: 277;
  1355. border-top: 1rpx solid #f0f0f0;
  1356. }
  1357. .product-con .attribute .atterTxt {
  1358. overflow: hidden;
  1359. white-space: nowrap;
  1360. text-overflow: ellipsis;
  1361. display: inline;
  1362. width: 400rpx;
  1363. }
  1364. .product-con .footer .item {
  1365. font-size: 18rpx;
  1366. color: #666;
  1367. }
  1368. .product-con .footer .item .iconfont {
  1369. text-align: center;
  1370. font-size: 40rpx;
  1371. }
  1372. .product-con .footer .item .iconfont.icon-shoucang1 {
  1373. color: #f00;
  1374. }
  1375. .product-con .footer .item .iconfont.icon-gouwuche1 {
  1376. font-size: 40rpx;
  1377. position: relative;
  1378. }
  1379. .product-con .footer .item .iconfont.icon-gouwuche1 .num {
  1380. color: #fff;
  1381. position: absolute;
  1382. font-size: 18rpx;
  1383. padding: 2rpx 8rpx 3rpx;
  1384. border-radius: 200rpx;
  1385. top: -10rpx;
  1386. right: -10rpx;
  1387. }
  1388. .product-con .footer .bnt {
  1389. width: 444rpx;
  1390. height: 76rpx;
  1391. }
  1392. .product-con .footer .bnt .bnts {
  1393. width: 222rpx;
  1394. text-align: center;
  1395. line-height: 76rpx;
  1396. color: #fff;
  1397. font-size: 28rpx;
  1398. }
  1399. .product-con .footer .bnt .joinCart {
  1400. border-radius: 50rpx 0 0 50rpx;
  1401. background-image: linear-gradient(to right, #fea10f 0%, #fa8013 100%);
  1402. }
  1403. .product-con .footer .bnt .buy {
  1404. border-radius: 0 50rpx 50rpx 0;
  1405. background-image: linear-gradient(to right, #fa6514 0%, #e93323 100%);
  1406. }
  1407. .product-con .footer .bnt .joinCart[disabled] {
  1408. background: #bbb;
  1409. }
  1410. .product-con .footer .bnt .buy[disabled] {
  1411. background: #bbb;
  1412. }
  1413. .product-con .superior {
  1414. background-color: #fff;
  1415. margin-top: 20rpx;
  1416. padding-bottom: 10rpx;
  1417. }
  1418. .product-con .superior .title {
  1419. height: 98rpx;
  1420. }
  1421. .product-con .superior .title image {
  1422. width: 30rpx;
  1423. height: 30rpx;
  1424. }
  1425. .product-con .superior .title .titleTxt {
  1426. margin: 0 20rpx;
  1427. font-size: 30rpx;
  1428. background-image: linear-gradient(to right, #f57a37 0%, #f21b07 100%);
  1429. -webkit-background-clip: text;
  1430. -webkit-text-fill-color: transparent;
  1431. }
  1432. .product-con .superior .slider-banner {
  1433. width: 690rpx;
  1434. margin: 0 auto;
  1435. position: relative;
  1436. }
  1437. .product-con .superior .slider-banner swiper {
  1438. height: 100%;
  1439. width: 100%;
  1440. }
  1441. .product-con .superior .slider-banner swiper-item {
  1442. height: 100%;
  1443. }
  1444. .product-con .superior .slider-banner .list {
  1445. width: 100%;
  1446. }
  1447. .product-con .superior .slider-banner .list .item {
  1448. width: 215rpx;
  1449. margin: 0 22rpx 30rpx 0;
  1450. font-size: 26rpx;
  1451. }
  1452. .product-con .superior .slider-banner .list .item:nth-of-type(3n) {
  1453. margin-right: 0;
  1454. }
  1455. .product-con .superior .slider-banner .list .item .pictrue {
  1456. position: relative;
  1457. width: 100%;
  1458. height: 215rpx;
  1459. }
  1460. .product-con .superior .slider-banner .list .item .pictrue image {
  1461. width: 100%;
  1462. height: 100%;
  1463. border-radius: 6rpx;
  1464. }
  1465. .product-con .superior .slider-banner .list .item .name {
  1466. color: #282828;
  1467. margin-top: 12rpx;
  1468. }
  1469. .product-con .superior .slider-banner .swiper-pagination-bullet {
  1470. background-color: #999;
  1471. }
  1472. .product-con .superior .slider-banner .swiper-pagination-bullet-active {
  1473. background-color: #e93323;
  1474. }
  1475. button {
  1476. padding: 0;
  1477. margin: 0;
  1478. line-height: normal;
  1479. background-color: #fff;
  1480. }
  1481. button::after {
  1482. border: 0;
  1483. }
  1484. action-sheet-item {
  1485. padding: 0;
  1486. height: 240rpx;
  1487. align-items: center;
  1488. display: flex;
  1489. }
  1490. .contact {
  1491. font-size: 16px;
  1492. width: 50%;
  1493. background-color: #fff;
  1494. padding: 8rpx 0;
  1495. border-radius: 0;
  1496. margin: 0;
  1497. line-height: 2;
  1498. }
  1499. .contact::after {
  1500. border: none;
  1501. }
  1502. .action-sheet {
  1503. font-size: 17px;
  1504. line-height: 1.8;
  1505. width: 50%;
  1506. position: absolute;
  1507. top: 0;
  1508. right: 0;
  1509. padding: 25rpx 0;
  1510. }
  1511. .canvas {
  1512. z-index: 300;
  1513. width: 750px;
  1514. height: 1190px;
  1515. }
  1516. .poster-pop {
  1517. width: 450rpx;
  1518. height: 714rpx;
  1519. position: fixed;
  1520. left: 50%;
  1521. transform: translateX(-50%);
  1522. z-index: 399;
  1523. top: 50%;
  1524. margin-top: -357rpx;
  1525. }
  1526. .poster-pop image {
  1527. width: 100%;
  1528. height: 100%;
  1529. display: block;
  1530. }
  1531. .poster-pop .close {
  1532. width: 46rpx;
  1533. height: 75rpx;
  1534. position: fixed;
  1535. right: 0;
  1536. top: -73rpx;
  1537. display: block;
  1538. }
  1539. .poster-pop .save-poster {
  1540. background-color: #df2d0a;
  1541. font-size: :22rpx;
  1542. color: #fff;
  1543. text-align: center;
  1544. height: 76rpx;
  1545. line-height: 76rpx;
  1546. width: 100%;
  1547. }
  1548. .poster-pop .keep {
  1549. color: #fff;
  1550. text-align: center;
  1551. font-size: 25rpx;
  1552. margin-top: 10rpx;
  1553. }
  1554. .mask {
  1555. position: fixed;
  1556. top: 0;
  1557. left: 0;
  1558. right: 0;
  1559. bottom: 0;
  1560. background-color: rgba(0, 0, 0, 0.6);
  1561. z-index: 9;
  1562. }
  1563. .pro-wrapper .iconn {
  1564. background-image: url('data:image/png;base64,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');
  1565. width: 100rpx;
  1566. height: 100rpx;
  1567. background-repeat: no-repeat;
  1568. background-size: 100% 100%;
  1569. margin: 0 auto;
  1570. }
  1571. .pro-wrapper .iconn.iconn1 {
  1572. background-image: url('data:image/png;base64,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');
  1573. }
  1574. .pictrue_log {
  1575. width: 80upx;
  1576. height: 40upx;
  1577. border-radius: 6upx 0 12upx 0;
  1578. line-height: 40upx;
  1579. font-size: 24upx;
  1580. }
  1581. .pictrue_log_class {
  1582. z-index: 3;
  1583. background: -webkit-gradient(linear, left top, right top, from(rgba(246, 122, 56, 1)), to(rgba(241, 27, 9, 1)));
  1584. background: linear-gradient(90deg, rgba(246, 122, 56, 1) 0%, rgba(241, 27, 9, 1) 100%);
  1585. opacity: 1;
  1586. position: absolute;
  1587. top: 0;
  1588. left: 0;
  1589. color: #fff;
  1590. text-align: center;
  1591. }
  1592. .navbar .header {
  1593. height: 96rpx;
  1594. font-size: 30rpx;
  1595. color: #050505;
  1596. background-color: #fff;
  1597. /* #ifdef MP */
  1598. padding-right: 95rpx;
  1599. /* #endif */
  1600. }
  1601. .navbar .header .item {
  1602. position: relative;
  1603. margin: 0 25rpx;
  1604. }
  1605. .navbar .header .item.on:before {
  1606. position: absolute;
  1607. width: 60rpx;
  1608. height: 5rpx;
  1609. background-repeat: no-repeat;
  1610. content: "";
  1611. background-image: linear-gradient(to right, #ff3366 0%, #ff6533 100%);
  1612. bottom: -10rpx;
  1613. left: 50%;
  1614. margin-left: -28rpx;
  1615. }
  1616. .navbar {
  1617. position: fixed;
  1618. background-color: #fff;
  1619. top: 0;
  1620. left: 0;
  1621. z-index: 99;
  1622. width: 100%;
  1623. }
  1624. .navbar .navbarH {
  1625. position: relative;
  1626. }
  1627. .navbar .navbarH .navbarCon {
  1628. position: absolute;
  1629. bottom: 0;
  1630. height: 100rpx;
  1631. width: 100%;
  1632. }
  1633. .share-box {
  1634. z-index: 1000;
  1635. position: fixed;
  1636. left: 0;
  1637. top: 0;
  1638. width: 100%;
  1639. height: 100%;
  1640. image {
  1641. width: 100%;
  1642. height: 100%;
  1643. }
  1644. }
  1645. .store-wrapper {
  1646. margin-top: 20rpx;
  1647. background-color: #fff;
  1648. .store-hd {
  1649. padding: 30rpx;
  1650. border-bottom: 1px solid #F5F5F5;
  1651. .store-info {
  1652. position: relative;
  1653. display: flex;
  1654. .logo {
  1655. width: 86rpx;
  1656. height: 86rpx;
  1657. image {
  1658. width: 86rpx;
  1659. height: 86rpx;
  1660. border-radius: 6rpx;
  1661. }
  1662. }
  1663. .info {
  1664. display: flex;
  1665. flex-direction: column;
  1666. justify-content: center;
  1667. margin-left: 20rpx;
  1668. .name {
  1669. font-size: 28rpx;
  1670. color: #282828;
  1671. font-weight: bold;
  1672. }
  1673. .txt {
  1674. margin-top: 8rpx;
  1675. color: #666666;
  1676. font-size: 22rpx;
  1677. }
  1678. }
  1679. .link {
  1680. position: absolute;
  1681. right: 0;
  1682. top: 50%;
  1683. transform: translateY(-50%);
  1684. display: flex;
  1685. align-items: center;
  1686. justify-content: center;
  1687. width: 114rpx;
  1688. height: 50rpx;
  1689. background: linear-gradient(-90deg, $bg-end 0%, $bg-star 100%);
  1690. border-radius: 25rpx;
  1691. color: #fff;
  1692. }
  1693. }
  1694. .score-wrapper {
  1695. display: flex;
  1696. justify-content: space-between;
  1697. margin-top: 30rpx;
  1698. .item {
  1699. color: #948D8C;
  1700. font-size: 26rpx;
  1701. text {
  1702. margin-left: 10rpx;
  1703. color: $theme-color;
  1704. }
  1705. }
  1706. }
  1707. }
  1708. .con-box {
  1709. padding: 20rpx 30rpx 30rpx;
  1710. .title {
  1711. font-size: 28rpx;
  1712. color: #282828;
  1713. }
  1714. .img-box {
  1715. display: flex;
  1716. margin-top: 20rpx;
  1717. .img-item {
  1718. width: 220rpx;
  1719. margin-right: 15rpx;
  1720. image {
  1721. width: 220rpx;
  1722. height: 220rpx;
  1723. border-radius: 16rpx;
  1724. }
  1725. .txt {
  1726. .title {
  1727. font-size: 28rpx;
  1728. color: #282828;
  1729. }
  1730. .price {
  1731. color: $theme-color;
  1732. font-size: 28rpx;
  1733. text {
  1734. font-size: 20rpx;
  1735. }
  1736. }
  1737. }
  1738. &:nth-child(3n) {
  1739. margin-right: 0;
  1740. }
  1741. }
  1742. }
  1743. }
  1744. }
  1745. .sys-head {
  1746. background: transparent;
  1747. }
  1748. .head-wrapper {
  1749. z-index: 999;
  1750. display: flex;
  1751. align-items: center;
  1752. position: fixed;
  1753. left: 30rpx;
  1754. top: 0;
  1755. /* #ifdef MP */
  1756. height: 43px;
  1757. /* #endif */
  1758. /* #ifdef H5 */
  1759. height: 114rpx;
  1760. /* #endif */
  1761. }
  1762. .head-menu {
  1763. display: flex;
  1764. align-items: center;
  1765. height: 54rpx;
  1766. width: 140rpx;
  1767. background: rgba(0, 0, 0, .25);
  1768. border-radius: 27rpx;
  1769. .iconfont {
  1770. flex: 1;
  1771. text-align: center;
  1772. color: #fff;
  1773. box-sizing: border-box;
  1774. &.icon-xiangzuo {
  1775. border-right: 1px solid #fff;
  1776. }
  1777. }
  1778. }
  1779. </style>