index.vue 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295
  1. <template>
  2. <view class="product-con" :style="colorStyle">
  3. <view class="product-con">
  4. <!-- #ifndef APP-PLUS -->
  5. <view class="navbar" :style="{ height: navH + 'rpx', opacity: opacity }">
  6. <view class="navbarH" :style="'height:' + navH + 'rpx;'">
  7. <view class="navbarCon acea-row row-center-wrapper" :style="{ paddingRight: navbarRight - 20 + 'px' }">
  8. <view class="header acea-row row-center-wrapper">
  9. <view class="item" :class="navActive === index ? 'on' : ''" v-for="(item, index) in navList" :key="index" @tap="tap(index)">{{ item }}</view>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. <!-- #endif -->
  15. <!-- <view class='iconfont icon-xiangzuo' :style="{top:navH/2+'rpx',opacity:(1-opacity)}" @tap='returns'></view> -->
  16. <!-- #ifndef APP-PLUS -->
  17. <view id="home" class="home acea-row row-center-wrapper" :class="[opacity > 0.5 ? 'on' : '']" :style="{ top: homeTop + 'rpx' }">
  18. <view class="iconfont icon-fanhui2" @tap="returns"></view>
  19. <!-- #ifdef MP -->
  20. <view class="line"></view>
  21. <view class="iconfont icon-gengduo5" @click="moreNav"></view>
  22. <!-- #endif -->
  23. </view>
  24. <!-- #endif -->
  25. <!-- #ifdef H5 -->
  26. <view id="home" class="home right acea-row row-center-wrapper" :class="[opacity > 0.5 ? 'on' : '']" :style="{ top: homeTop + 'rpx' }">
  27. <!-- #endif -->
  28. <!-- #ifdef H5 -->
  29. <view class="iconfont icon-gengduo2" @click="moreNav"></view>
  30. </view>
  31. <!-- #endif -->
  32. <homeList :navH="navH" :returnShow="returnShow" :currentPage="currentPage" :sysHeight="sysHeight"></homeList>
  33. <view>
  34. <scroll-view :scroll-top="scrollTop" scroll-y="true" scroll-with-animation="true" :style="'height:' + height + 'px;'" @scroll="scroll">
  35. <view id="past0">
  36. <!-- #ifdef APP-PLUS || MP -->
  37. <view class="" :style="'width:100%;' + 'height:' + sysHeight"></view>
  38. <!-- #endif -->
  39. <productConSwiper
  40. ref="proSwiper"
  41. :imgUrls="storeInfo.slider_image"
  42. :videoline="storeInfo.video_link"
  43. @videoPause="videoPause"
  44. @showSwiperImg="showSwiperImg"
  45. ></productConSwiper>
  46. <view class="wrapper">
  47. <view class="share acea-row row-between row-bottom">
  48. <view class="money font-color">
  49. {{ $t(`¥`) }}
  50. <text class="num" v-text="storeInfo.price || 0"></text>
  51. <text v-if="storeInfo.spec_type">{{ $t(`起`) }}</text>
  52. <text class="vip-money" v-if="storeInfo.vip_price && storeInfo.vip_price > 0 && storeInfo.is_vip == 1 && svip_price_open == 1">
  53. {{ $t(`¥`) }}{{ storeInfo.vip_price }}
  54. </text>
  55. <image v-if="storeInfo.vip_price && storeInfo.vip_price > 0 && storeInfo.is_vip == 1 && svip_price_open == 1" src="../../static/images/svip.gif"></image>
  56. </view>
  57. <view class="iconfont icon-fenxiang" @click="listenerActionSheet"></view>
  58. </view>
  59. <view class="introduce" v-text="storeInfo.store_name || ''"></view>
  60. <view class="limit_good" v-if="storeInfo.limit_type > 0">
  61. {{ storeInfo.limit_type == 1 ? $t(`单次限购`) : $t(`永久限购`) }}{{ storeInfo.limit_num }}{{ $t(storeInfo.unit_name) }}
  62. <text class="line" v-if="storeInfo.limit_type > 0 && storeInfo.min_qty > 1">|</text>
  63. <text v-if="storeInfo.min_qty > 1">{{ $t(`起购`) }}{{ storeInfo.min_qty + storeInfo.unit_name }}</text>
  64. </view>
  65. <view class="label acea-row row-between-wrapper" style="padding-bottom: 20rpx">
  66. <view class="delete-line">{{ $t(`划线价`) }} : {{ $t(`¥`) }}{{ storeInfo.ot_price || 0 }}</view>
  67. <view class="">
  68. {{ $t(`库存`) }} : {{ storeInfo.stock || 0 }}
  69. {{ $t(storeInfo.unit_name) || '' }}
  70. </view>
  71. <view class="">
  72. {{ $t(`销量`) }} : {{ storeInfo.fsales || 0 }}
  73. {{ $t(storeInfo.unit_name) || '' }}
  74. </view>
  75. </view>
  76. <view v-if="!is_money_level && storeInfo.vip_price && storeInfo.is_vip" class="svip acea-row row-between-wrapper">
  77. <view class="">{{ $t(`开通“超级会员”立省`) }}{{ diff }}{{ $t(`元`) }}</view>
  78. <navigator url="/pages/annex/vip_paid/index">
  79. {{ $t(`立即开通`) }}
  80. <text class="iconfont icon-jiantou"></text>
  81. </navigator>
  82. </view>
  83. <view class="presell_count" v-if="storeInfo.presale">
  84. <view>
  85. <view>{{ $t(`预售活动时间`) }}:</view>
  86. <view v-if="storeInfo.presale_start_time && storeInfo.presale_end_time" class="presell_time">
  87. <view class="iconfont icon-shijian1"></view>
  88. {{ storeInfo.presale_start_time }}
  89. <span class="area_line">~</span>
  90. {{ storeInfo.presale_end_time }}
  91. </view>
  92. </view>
  93. <view>{{ $t(`预售结束后`) }} {{ storeInfo.presale_day }} {{ $t(`天内发货`) }}</view>
  94. </view>
  95. <!-- <view class='coupon acea-row row-between-wrapper' v-if="storeInfo.give_integral > 0">
  96. <view class='hide line1 acea-row'>
  97. 赠积分:
  98. <view class='activity'>赠送 {{storeInfo.give_integral}} 积分</view>
  99. </view>
  100. </view> -->
  101. <view v-if="couponList.length" class="coupon acea-row row-between-wrapper" @click="couponTap" style="margin-top: 0rpx">
  102. <view class="hide line1 acea-row">
  103. {{ $t(`优惠券`) }}:
  104. <template v-for="(item, index) in couponList">
  105. <view v-if="index < 2" class="activity" :key="index">{{ $t(`满`) }} {{ item.use_min_price }} {{ $t(`减`) }} {{ item.coupon_price }}</view>
  106. </template>
  107. </view>
  108. <view class="iconfont icon-jiantou"></view>
  109. </view>
  110. <view class="coupon acea-row row-between-wrapper" v-if="activity.length">
  111. <view class="line1 acea-row">
  112. <text class="coupon-title">{{ $t(`活动`) }}:</text>
  113. <view v-for="(item, index) in activity" :key="index" @click="goActivity(item)">
  114. <view
  115. v-if="item.type === '1' && $permission('seckill')"
  116. :class="index == 0 ? 'activity_pin' : '' || index == 1 ? 'activity_miao' : '' || index == 2 ? 'activity_kan' : ''"
  117. >
  118. <text class="iconfonts iconfont icon-pintuan"></text>
  119. <text class="activity_title">{{ $t(`参与秒杀`) }}</text>
  120. </view>
  121. <view
  122. :class="index == 0 ? 'activity_pin' : '' || index == 1 ? 'activity_miao' : '' || index == 2 ? 'activity_kan' : ''"
  123. v-if="item.type === '2' && $permission('bargain')"
  124. >
  125. <text class="iconfonts iconfont icon-shenhezhong"></text>
  126. <text class="activity_title">{{ $t(`参与砍价`) }}</text>
  127. </view>
  128. <view
  129. :class="index == 0 ? 'activity_pin' : '' || index == 1 ? 'activity_miao' : '' || index == 2 ? 'activity_kan' : ''"
  130. v-if="item.type === '3' && $permission('combination')"
  131. >
  132. <text class="iconfonts iconfont icon-kanjia"></text>
  133. <text class="activity_title">{{ $t(`参与拼团`) }}</text>
  134. </view>
  135. </view>
  136. </view>
  137. </view>
  138. </view>
  139. <view class="attribute acea-row row-between-wrapper" @click="selecAttr" v-if="attr.productAttr.length">
  140. <view class="flex">
  141. <view style="display: flex; align-items: center; width: 90%">
  142. <view class="attr-txt">{{ attrTxt }}:</view>
  143. <view class="atterTxt line1" style="width: 82%">{{ attrValue }}</view>
  144. </view>
  145. <view class="iconfont icon-jiantou"></view>
  146. </view>
  147. <view class="acea-row row-between-wrapper" style="margin-top: 7px; padding-left: 60px" v-if="skuArr.length > 1">
  148. <view class="flexs">
  149. <image :src="item.image" v-for="(item, index) in skuArr.slice(0, 4)" :key="index" class="attrImg"></image>
  150. </view>
  151. <view class="switchTxt">{{ $t(`共`) }}{{ skuArr.length }} {{ $t(`种规格可选`) }}</view>
  152. </view>
  153. </view>
  154. </view>
  155. <view class="userEvaluation" id="past1" v-if="replyCount">
  156. <view class="title acea-row row-between-wrapper">
  157. <view>{{ $t(`用户评价`) }}({{ replyCount }})</view>
  158. <navigator class="praise" hover-class="none" :url="'/pages/goods/goods_comment_list/index?product_id=' + id">
  159. <text class="font-num">{{ replyChance }}%</text>
  160. {{ $t(`好评率`) }}
  161. <text class="iconfont icon-jiantou"></text>
  162. </navigator>
  163. </view>
  164. <block v-if="replyCount">
  165. <userEvaluation :reply="reply"></userEvaluation>
  166. </block>
  167. </view>
  168. <!-- 优品推荐 -->
  169. <view class="superior" v-if="good_list.length" id="past2">
  170. <view class="title acea-row row-center-wrapper">
  171. <view class="lingw acea-row row-center-wrapper">
  172. <view class="lingn"></view>
  173. </view>
  174. <view class="titleTxt">{{ $t(`优品推荐`) }}</view>
  175. <view class="lingw acea-row row-center-wrapper">
  176. <view class="lingn"></view>
  177. </view>
  178. </view>
  179. <view class="slider-banner banner">
  180. <swiper
  181. indicator-dots="true"
  182. :autoplay="autoplay"
  183. :circular="circular"
  184. :interval="interval"
  185. :duration="duration"
  186. indicator-color="#999"
  187. indicator-active-color="var(--view-theme)"
  188. :style="'height:' + clientHeight + 'px'"
  189. >
  190. <swiper-item v-for="(item, indexw) in good_list" :key="indexw">
  191. <view class="list acea-row row-middle" :id="'list' + indexw">
  192. <view class="item" v-for="(val, indexn) in item.list" :key="indexn" @click="goDetail(val)">
  193. <view class="pictrue">
  194. <image :src="val.image"></image>
  195. <span class="pictrue_log pictrue_log_class" v-if="val.activity && val.activity.type === '1' && $permission('seckill')">{{ $t(`秒杀`) }}</span>
  196. <span class="pictrue_log pictrue_log_class" v-if="val.activity && val.activity.type === '2' && $permission('bargain')">{{ $t(`砍价`) }}</span>
  197. <span class="pictrue_log pictrue_log_class" v-if="val.activity && val.activity.type === '3' && $permission('combination')">{{ $t(`拼团`) }}</span>
  198. </view>
  199. <view class="name line1">{{ val.store_name }}</view>
  200. <view class="money font-color">{{ $t(`¥`) }}{{ val.price }}</view>
  201. </view>
  202. </view>
  203. </swiper-item>
  204. <!-- <view class="swiper-pagination" slot="pagination"></view> -->
  205. </swiper>
  206. </view>
  207. </view>
  208. <view class="product-intro" id="past3">
  209. <view class="title">{{ $t(`产品介绍`) }}</view>
  210. <view class="conter">
  211. <!-- #ifndef APP-PLUS -->
  212. <parser :html="description" ref="article" :tag-style="tagStyle"></parser>
  213. <!-- #endif -->
  214. <!-- #ifdef APP-PLUS -->
  215. <view class="description" v-html="description"></view>
  216. <!-- #endif -->
  217. </view>
  218. </view>
  219. <view class="uni-p-b-98"></view>
  220. </scroll-view>
  221. </view>
  222. <view class="footer acea-row row-between-wrapper" :class="{ eject: storeInfo.id }">
  223. <!-- <button open-type="contact" hover-class='none' class='item'>
  224. <view class='iconfont icon-kefu'></view>
  225. <view>客服</view>
  226. </button> -->
  227. <navigator hover-class="none" class="item" open-type="switchTab" url="/pages/index/index">
  228. <view class="iconfont icon-shouye6"></view>
  229. <view class="p_center">{{ $t(`首页`) }}</view>
  230. </navigator>
  231. <view @click="setCollect" class="item">
  232. <view class="iconfont icon-shoucang1" v-if="storeInfo.userCollect"></view>
  233. <view class="iconfont icon-shoucang" v-else></view>
  234. <view class="p_center">{{ $t(`收藏`) }}</view>
  235. </view>
  236. <view class="animated item" :class="animated == true ? 'bounceIn' : ''" @click="goCart">
  237. <view class="iconfont icon-gouwuche1">
  238. <text class="num bg-color" v-if="parseFloat(CartCount) > 0">{{ CartCount || 0 }}</text>
  239. </view>
  240. <view class="p_center">{{ $t(`购物车`) }}</view>
  241. </view>
  242. <view v-if="noGoods" class="presale">
  243. <view class="acea-row">
  244. <form class="bnts bg-color-hui">
  245. <button class="bnts bg-color-hui" form-type="submit">{{ $t(`暂无产品`) }}</button>
  246. </form>
  247. </view>
  248. </view>
  249. <view v-else>
  250. <view v-if="!storeInfo.presale">
  251. <view class="bnt acea-row" :class="!storeInfo.cart_button ? 'virbnt' : ''" v-if="attr.productSelect.stock <= 0">
  252. <form v-if="storeInfo.cart_button" @submit="joinCart" class="joinCart bnts" :class="!storeInfo.cart_button ? 'virbnt' : ''">
  253. <button class="joinCart bnts" form-type="submit">
  254. {{ $t(`加入购物车`) }}
  255. </button>
  256. </form>
  257. <form class="buy bnts bg-color-hui">
  258. <button class="buy bnts bg-color-hui" form-type="submit" :class="!storeInfo.cart_button ? 'virbnt' : ''">
  259. {{ $t(`已售罄`) }}
  260. </button>
  261. </form>
  262. </view>
  263. <view class="bnt acea-row" v-else>
  264. <form v-if="storeInfo.cart_button" @submit="joinCart" class="joinCart bnts">
  265. <button class="joinCart bnts" form-type="submit">
  266. {{ $t(`加入购物车`) }}
  267. </button>
  268. </form>
  269. <form @submit="goBuy" class="buy bnts" :class="!storeInfo.cart_button ? 'virbnt' : ''">
  270. <button class="buy bnts" :class="!storeInfo.cart_button ? 'virbnt' : ''" form-type="submit">
  271. {{ $t(`立即购买`) }}
  272. </button>
  273. </form>
  274. </view>
  275. </view>
  276. <view class="presale" v-else>
  277. <view class="acea-row" v-if="presale_pay_status === 1 || presale_pay_status === 3">
  278. <form class="bnts bg-color-hui">
  279. <button class="bnts bg-color-hui" form-type="submit">{{ presale_pay_status === 1 ? $t(`未开始`) : $t(`已结束`) }}</button>
  280. </form>
  281. </view>
  282. <view class="acea-row" v-else-if="attr.productSelect.quota <= 0 || attr.productSelect.quota < attr.productSelect.cart_num">
  283. <form class="bnts bg-color-hui">
  284. <button class="bnts bg-color-hui" form-type="submit">{{ $t(`已售罄`) }}</button>
  285. </form>
  286. </view>
  287. <view class="bnts acea-row" v-else-if="presale_pay_status === 2">
  288. <form @submit="goBuy" class="bnts">
  289. <button class="bnts" form-type="submit">{{ $t(`立即购买`) }}</button>
  290. </form>
  291. </view>
  292. </view>
  293. </view>
  294. <!-- <view v-else>
  295. <view class="virbnt acea-row" :class="storeInfo.is_virtual?'virbnt':''" v-if="attr.productSelect.stock <= 0">
  296. <form class="buy bnts bg-color-hui"><button class="virbuy virbnts bg-color-hui"
  297. form-type="submit">已售罄</button></form>
  298. </view>
  299. <view class="virbnt acea-row" v-else>
  300. <form @submit="goBuy" class="buy bnts"><button class="virbuy virbnts" form-type="submit">立即购买</button>
  301. </form>
  302. </view>
  303. </view> -->
  304. </view>
  305. <shareRedPackets
  306. :sharePacket="sharePacket"
  307. @listenerActionSheet="listenerActionSheet"
  308. @closeChange="closeChange"
  309. :showAnimate="showAnimate"
  310. @boxStatus="boxStatus"
  311. ></shareRedPackets>
  312. <!-- 组件 -->
  313. <productWindow
  314. :attr="attr"
  315. :isShow="1"
  316. :iSplus="1"
  317. :limitNum="storeInfo.limit_num"
  318. :minQty="storeInfo.min_qty"
  319. :unitName="storeInfo.unit_name"
  320. @myevent="onMyEvent"
  321. @ChangeAttr="ChangeAttr"
  322. @ChangeCartNum="ChangeCartNum"
  323. @attrVal="attrVal"
  324. @iptCartNum="iptCartNum"
  325. id="product-window"
  326. :is_vip="is_vip"
  327. @getImg="showImg"
  328. :is_virtual="storeInfo.is_virtual"
  329. ></productWindow>
  330. <cus-previewImg ref="cusPreviewImg" :list="skuArr" @changeSwitch="changeSwitch" @shareFriend="listenerActionSheet" />
  331. <swiperPrevie ref="cusSwiperImg" :list="storeInfo.slider_image"></swiperPrevie>
  332. <couponListWindow
  333. :coupon="coupon"
  334. v-if="coupon"
  335. @ChangCouponsClone="ChangCouponsClone"
  336. @ChangCoupons="ChangCoupons"
  337. @ChangCouponsUseState="ChangCouponsUseState"
  338. @tabCouponType="tabCouponType"
  339. ></couponListWindow>
  340. <!-- 分享按钮 -->
  341. <view class="generate-posters acea-row row-middle" :class="posters ? 'on' : ''">
  342. <!-- #ifndef MP -->
  343. <button class="item" hover-class="none" v-if="weixinStatus === true" @click="H5ShareBox = true">
  344. <view class="iconfont icon-weixin3"></view>
  345. <view class="">{{ $t(`发送给朋友`) }}</view>
  346. </button>
  347. <!-- #endif -->
  348. <!-- #ifdef MP -->
  349. <button class="item" open-type="share" hover-class="none" @click="goFriend">
  350. <view class="iconfont icon-weixin3"></view>
  351. <view class="">{{ $t(`发送给朋友`) }}</view>
  352. </button>
  353. <!-- #endif -->
  354. <!-- #ifdef H5 -->
  355. <div class="item copy-data" v-if="storeInfo.command_word != ''" :data-clipboard-text="storeInfo.command_word">
  356. <view class="iconfont icon-fuzhikouling"></view>
  357. <text>{{ $t(`复制口令`) }}</text>
  358. </div>
  359. <!-- #endif -->
  360. <!-- #ifdef APP-PLUS -->
  361. <view class="item" @click="appShare('WXSceneSession')">
  362. <view class="iconfont icon-weixin3"></view>
  363. <view class="">{{ $t(`微信好友`) }}</view>
  364. </view>
  365. <view class="item" @click="appShare('WXSenceTimeline')">
  366. <view class="iconfont icon-pengyouquan"></view>
  367. <view class="">{{ $t(`微信朋友圈`) }}</view>
  368. </view>
  369. <!-- #endif -->
  370. <button class="item" hover-class="none" @click="goPoster">
  371. <view class="iconfont icon-haibao"></view>
  372. <view class="">{{ $t(`生成海报`) }}</view>
  373. </button>
  374. </view>
  375. <view class="mask" v-if="posters" @click="listenerActionClose"></view>
  376. <!-- #ifdef MP -->
  377. <!-- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
  378. <!-- #endif -->
  379. <!-- 海报展示 -->
  380. <view class="poster-pop" v-if="posterImageStatus">
  381. <image src="../../static/images/poster-close.png" class="close" @click="posterImageClose"></image>
  382. <image class="poster-img" :src="posterImage"></image>
  383. <!-- #ifndef H5 -->
  384. <view class="save-poster" @click="savePosterPath">{{ $t(`保存到手机`) }}</view>
  385. <!-- #endif -->
  386. <!-- #ifdef H5 -->
  387. <view class="keep">{{ $t(`长按图片可以保存到手机`) }}</view>
  388. <!-- #endif -->
  389. </view>
  390. <view class="mask" v-if="posterImageStatus"></view>
  391. <canvas class="canvas" canvas-id="myCanvas" v-if="canvasStatus"></canvas>
  392. <!-- 发送给朋友图片 -->
  393. <view class="share-box" v-if="H5ShareBox">
  394. <image :src="imgHost + '/statics/images/share-info.png'" @click="H5ShareBox = false"></image>
  395. </view>
  396. <kefuIcon :ids="parseInt(id)" :routineContact="routineContact" :storeInfo="storeInfo" :goodsCon="1"></kefuIcon>
  397. <!-- #ifdef H5 || APP-PLUS -->
  398. <zb-code
  399. ref="qrcode"
  400. :show="codeShow"
  401. :cid="cid"
  402. :val="codeVal"
  403. :size="size"
  404. :unit="unit"
  405. :background="background"
  406. :foreground="foreground"
  407. :pdground="pdground"
  408. :icon="codeIcon"
  409. :iconSize="iconsize"
  410. :onval="onval"
  411. :loadMake="loadMake"
  412. @result="qrR"
  413. />
  414. <!-- #endif -->
  415. </view>
  416. </view>
  417. </template>
  418. <script>
  419. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  420. import { getProductDetail, getProductCode, collectAdd, collectDel, postCartAdd } from '@/api/store.js';
  421. import { getUserInfo, userShare } from '@/api/user.js';
  422. import { getCoupons } from '@/api/api.js';
  423. import { getCartCounts } from '@/api/order.js';
  424. import { toLogin } from '@/libs/login.js';
  425. import { mapGetters } from 'vuex';
  426. import cusPreviewImg from '@/components/cusPreviewImg/index.vue';
  427. import swiperPrevie from '@/components/cusPreviewImg/swiperPrevie.vue';
  428. import productConSwiper from '@/components/productConSwiper';
  429. import couponListWindow from '@/components/couponListWindow';
  430. import productWindow from '@/components/productWindow';
  431. import userEvaluation from '@/components/userEvaluation';
  432. import shareRedPackets from '@/components/shareRedPackets';
  433. import kefuIcon from '@/components/kefuIcon';
  434. import menuIcon from '@/components/menuIcon.vue';
  435. import { updateURLParameter } from '@/utils';
  436. import ClipboardJS from '@/plugin/clipboard/clipboard.js';
  437. // #ifdef MP
  438. import authorize from '@/components/Authorize';
  439. // #endif
  440. // #ifdef APP-PLUS
  441. import { TOKENNAME } from '@/config/app.js';
  442. // #endif
  443. import { HTTP_REQUEST_URL } from '@/config/app';
  444. let app = getApp();
  445. import colors from '@/mixins/color';
  446. import { sharePoster } from '@/mixins/sharePoster';
  447. import parser from '@/components/jyf-parser/jyf-parser';
  448. import homeList from '@/components/homeList';
  449. export default {
  450. components: {
  451. productConSwiper,
  452. couponListWindow,
  453. productWindow,
  454. userEvaluation,
  455. shareRedPackets,
  456. kefuIcon,
  457. menuIcon,
  458. cusPreviewImg,
  459. swiperPrevie,
  460. // #ifdef MP
  461. authorize,
  462. // #endif
  463. parser,
  464. homeList
  465. },
  466. directives: {
  467. trigger: {
  468. inserted(el, binging) {
  469. el.click();
  470. }
  471. }
  472. },
  473. mixins: [colors, sharePoster],
  474. data() {
  475. let that = this;
  476. return {
  477. imgHost: HTTP_REQUEST_URL,
  478. sysHeight: sysHeight,
  479. noGoods: false,
  480. showSkeleton: true, //骨架屏显示隐藏
  481. isNodes: 0, //控制什么时候开始抓取元素节点,只要数值改变就重新抓取
  482. Active: false,
  483. presale_pay_status: 1,
  484. //属性是否打开
  485. coupon: {
  486. coupon: false,
  487. type: -1,
  488. list: [],
  489. count: []
  490. },
  491. showAnimate: false,
  492. showMenuIcon: false,
  493. attrTxt: this.$t(`请选择`), //属性页面提示
  494. attrValue: '', //已选属性
  495. animated: false, //购物车动画
  496. id: 0, //商品id
  497. replyCount: 0, //总评论数量
  498. reply: [], //评论列表
  499. storeInfo: {}, //商品详情
  500. productValue: [], //系统属性
  501. couponList: [], //优惠券
  502. cart_num: 1, //购买数量
  503. isAuto: false, //没有授权的不会自动授权
  504. isShowAuth: false, //是否隐藏授权
  505. isOpen: false, //是否打开属性组件
  506. actionSheetHidden: true,
  507. posterImageStatus: false,
  508. storeImage: '', //海报产品图
  509. PromotionCode: '', //二维码图片
  510. canvasStatus: false, //海报绘图标签
  511. posterImage: '', //海报路径
  512. posterbackgd: '/static/images/posterbackgd.png',
  513. sharePacket: {
  514. isState: true //默认不显示
  515. }, //分销商详细
  516. uid: 0, //用户uid
  517. circular: false,
  518. autoplay: false,
  519. interval: 3000,
  520. duration: 500,
  521. clientHeight: '',
  522. systemStore: {}, //门店信息
  523. good_list: [],
  524. replyChance: 0,
  525. CartCount: 0,
  526. isDown: true,
  527. storeSelfMention: true,
  528. posters: false,
  529. weixinStatus: false,
  530. attr: {
  531. cartAttr: false,
  532. productAttr: [],
  533. productSelect: {}
  534. },
  535. description: '',
  536. navActive: 0,
  537. H5ShareBox: false, //公众号分享图片
  538. activity: [],
  539. navH: '',
  540. navList: [],
  541. opacity: 0,
  542. scrollY: 0,
  543. topArr: [],
  544. toView: '',
  545. height: 0,
  546. heightArr: [],
  547. lock: false,
  548. scrollTop: 0,
  549. old: {
  550. scrollTop: 0
  551. },
  552. tagStyle: {
  553. img: 'width:100%;display:block;',
  554. table: 'width:100%',
  555. video: 'width:100%;height:100%;'
  556. },
  557. returnShow: true, //判断顶部返回是否出现
  558. diff: '',
  559. is_money_level: 1,
  560. is_vip: 0, //是否是会员
  561. navbarRight: 0,
  562. homeTop: 20,
  563. routineContact: 0,
  564. skuArr: [],
  565. selectSku: {},
  566. currentPage: false,
  567. svip_price_open: 1
  568. };
  569. },
  570. computed: mapGetters(['isLogin']),
  571. watch: {
  572. isLogin: {
  573. handler: function (newV, oldV) {
  574. if (newV == true) {
  575. this.getCouponList();
  576. this.getCartCount();
  577. this.downloadFilePromotionCode();
  578. // this.ShareInfo();
  579. }
  580. },
  581. deep: true
  582. },
  583. storeInfo: {
  584. handler: function () {
  585. this.$nextTick(() => {});
  586. },
  587. immediate: true
  588. }
  589. },
  590. onLoad(options) {
  591. let that = this;
  592. var pages = getCurrentPages();
  593. that.returnShow = pages.length === 1 ? false : true;
  594. // #ifdef MP
  595. that.navH = app.globalData.navHeight;
  596. // #endif
  597. // #ifdef H5
  598. that.navH = 96;
  599. // #endif
  600. // #ifdef APP-PLUS
  601. that.navH = 30;
  602. // #endif
  603. that.id = options.id;
  604. uni.getSystemInfo({
  605. success: function (res) {
  606. that.height = res.windowHeight;
  607. //res.windowHeight:获取整个窗口高度为px,*2为rpx;98为头部占据的高度;
  608. // #ifndef APP-PLUS || H5 || MP-ALIPAY
  609. that.navbarRight = res.windowWidth - uni.getMenuButtonBoundingClientRect().left;
  610. // #endif
  611. }
  612. });
  613. //扫码携带参数处理
  614. // #ifdef MP
  615. if (options.scene) {
  616. let value = that.$util.getUrlParams(decodeURIComponent(options.scene));
  617. if (value.id) options.id = value.id;
  618. //记录推广人uid
  619. if (value.pid) app.globalData.spid = value.pid;
  620. }
  621. if (!options.id) {
  622. this.showSkeleton = false;
  623. return that.$util.Tips(
  624. {
  625. title: that.$t(`缺少参数无法查看商品`)
  626. },
  627. {
  628. tab: 3,
  629. url: 1
  630. }
  631. );
  632. } else {
  633. that.id = options.id;
  634. }
  635. // #endif
  636. that.getGoodsDetails();
  637. },
  638. onReady: function () {
  639. this.isNodes++;
  640. this.$nextTick(function () {
  641. // #ifdef MP
  642. const menuButton = uni.getMenuButtonBoundingClientRect();
  643. const query = uni.createSelectorQuery().in(this);
  644. query
  645. .select('#home')
  646. .boundingClientRect((data) => {
  647. this.homeTop = menuButton.top * 2 + menuButton.height - data.height || 0;
  648. })
  649. .exec();
  650. // #endif
  651. // #ifdef H5
  652. const clipboard = new ClipboardJS('.copy-data');
  653. clipboard.on('success', () => {
  654. this.$util.Tips({
  655. title: this.$t(`复制成功`)
  656. });
  657. });
  658. // #endif
  659. });
  660. },
  661. /**
  662. * 用户点击右上角分享
  663. */
  664. // #ifdef MP
  665. onShareAppMessage: function () {
  666. let that = this;
  667. that.$set(that, 'actionSheetHidden', !that.actionSheetHidden);
  668. userShare();
  669. return {
  670. title: that.storeInfo.store_name || '',
  671. imageUrl: that.storeInfo.image || '',
  672. path: '/pages/goods_details/index?id=' + that.id + '&spid=' + that.uid
  673. };
  674. },
  675. onShareTimeline() {
  676. let that = this;
  677. userShare();
  678. return {
  679. title: that.storeInfo.store_name,
  680. query: {
  681. id: that.id,
  682. spid: that.uid || 0
  683. },
  684. imageUrl: that.storeInfo.image
  685. };
  686. },
  687. // #endif
  688. onNavigationBarButtonTap(e) {
  689. this.currentPage = !this.currentPage;
  690. },
  691. methods: {
  692. // 操作菜单
  693. moreNav() {
  694. this.currentPage = !this.currentPage;
  695. },
  696. jumpUrl(url) {
  697. uni.switchTab({
  698. url
  699. });
  700. },
  701. videoPause() {
  702. this.$nextTick(() => {
  703. that.infoScroll();
  704. });
  705. },
  706. qrR(res) {
  707. // #ifdef H5
  708. if (!this.$wechat.isWeixin() || this.shareQrcode != '1') {
  709. this.PromotionCode = res;
  710. this.followCode = '';
  711. }
  712. // #endif
  713. // #ifdef APP-PLUS
  714. this.PromotionCode = res;
  715. // #endif
  716. },
  717. // app分享
  718. // #ifdef APP-PLUS
  719. appShare(scene) {
  720. let that = this;
  721. let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
  722. let curRoute = routes[routes.length - 1].$page.fullPath; // 获取当前页面路由,也就是最后一个打开的页面路由
  723. uni.share({
  724. provider: 'weixin',
  725. scene: scene,
  726. type: 0,
  727. href: `${HTTP_REQUEST_URL}${curRoute}&spread=${that.uid}`,
  728. title: that.storeInfo.store_name,
  729. summary: that.storeInfo.store_info,
  730. imageUrl: that.storeInfo.small_image,
  731. success: function (res) {
  732. // uni.showToast({
  733. // title: that.$t(`分享成功`),
  734. // icon: "success",
  735. // });
  736. that.posters = false;
  737. },
  738. fail: function (err) {
  739. uni.showToast({
  740. title: that.$t(`分享失败`),
  741. icon: 'none',
  742. duration: 2000
  743. });
  744. that.posters = false;
  745. }
  746. });
  747. },
  748. // #endif
  749. closeChange: function () {
  750. this.$set(this.sharePacket, 'isState', true);
  751. },
  752. boxStatus(data) {
  753. this.showAnimate = data;
  754. },
  755. goActivity: function (e) {
  756. let item = e;
  757. if (item.type === '1') {
  758. uni.navigateTo({
  759. url: `/pages/activity/goods_seckill_details/index?id=${item.id}&time=${item.time}&status=1`
  760. });
  761. } else if (item.type === '2') {
  762. uni.navigateTo({
  763. url: `/pages/activity/goods_bargain_details/index?id=${item.id}&bargain=${this.uid}`
  764. });
  765. } else {
  766. uni.navigateTo({
  767. url: `/pages/activity/goods_combination_details/index?id=${item.id}`
  768. });
  769. }
  770. },
  771. /**
  772. * 购物车手动填写
  773. *
  774. */
  775. iptCartNum: function (e) {
  776. if (e) {
  777. let number = this.storeInfo.min_qty;
  778. if (Number.isInteger(parseInt(e)) && parseInt(e) >= this.storeInfo.min_qty) {
  779. number = parseInt(e);
  780. }
  781. this.$nextTick((e) => {
  782. this.$set(this.attr.productSelect, 'cart_num', e < 0 ? this.storeInfo.min_qty : number);
  783. });
  784. }
  785. },
  786. // 后退
  787. returns() {
  788. // #ifdef H5
  789. return history.back();
  790. // #endif
  791. // #ifndef H5
  792. return uni.navigateBack({
  793. delta: 1
  794. });
  795. // #endif
  796. },
  797. tap(index) {
  798. var id = 'past' + index;
  799. var index = index;
  800. var that = this;
  801. // if (!this.data.good_list.length && id == "past2") {
  802. // id = "past3"
  803. // }
  804. this.$set(this, 'toView', id);
  805. this.$set(this, 'navActive', index);
  806. this.$set(this, 'lock', true);
  807. // this.$set(this, 'scrollTop', index > 0 ? that.topArr[index] - app.globalData.navHeight / 2 : that.topArr[index]);
  808. this.scrollTop = this.old.scrollTop;
  809. this.$nextTick(() => {
  810. this.scrollTop = index > 0 ? that.topArr[index] - app.globalData.navHeight / 2 : that.topArr[index];
  811. });
  812. },
  813. scroll(e) {
  814. var that = this,
  815. scrollY = e.detail.scrollTop;
  816. var opacity = scrollY / 200;
  817. this.old.scrollTop = e.detail.scrollTop;
  818. opacity = opacity > 1 ? 1 : opacity;
  819. that.$set(that, 'opacity', opacity);
  820. that.$set(that, 'scrollY', scrollY);
  821. that.$set(that, 'showAnimate', false);
  822. that.$set(that, 'showMenuIcon', false);
  823. that.$set(that, 'currentPage', false);
  824. this.$refs.proSwiper.videoIsPause();
  825. if (that.lock) {
  826. that.$set(that, 'lock', false);
  827. return;
  828. }
  829. for (var i = 0; i < that.topArr.length; i++) {
  830. if (scrollY < that.topArr[i] - app.globalData.navHeight / 2 + that.heightArr[i]) {
  831. that.$set(that, 'navActive', i);
  832. break;
  833. }
  834. }
  835. },
  836. /*
  837. *去商品详情页
  838. */
  839. goDetail(item) {
  840. if (item.activity.length == 0) {
  841. uni.redirectTo({
  842. url: '/pages/goods_details/index?id=' + item.id
  843. });
  844. return;
  845. }
  846. // 砍价
  847. if (item.activity && item.activity.type == 2) {
  848. uni.redirectTo({
  849. url: `/pages/activity/goods_bargain_details/index?id=${item.activity.id}&bargain=${this.uid}`
  850. });
  851. return;
  852. }
  853. // 拼团
  854. if (item.activity && item.activity.type == 3) {
  855. uni.redirectTo({
  856. url: `/pages/activity/goods_combination_details/index?id=${item.activity.id}`
  857. });
  858. return;
  859. }
  860. // 秒杀
  861. if (item.activity && item.activity.type == 1) {
  862. uni.redirectTo({
  863. url: `/pages/activity/goods_seckill_details/index?id=${item.activity.id}&time=${item.activity.time}&status=1`
  864. });
  865. return;
  866. }
  867. },
  868. // 微信登录回调
  869. onLoadFun: function (e) {
  870. // this.getUserInfo();
  871. // this.get_product_collect();
  872. },
  873. ChangCouponsClone: function () {
  874. this.$set(this.coupon, 'coupon', false);
  875. },
  876. /*
  877. * 获取用户信息
  878. */
  879. getUserInfo: function () {
  880. let that = this;
  881. getUserInfo().then((res) => {
  882. that.$set(that, 'uid', res.data.uid);
  883. that.$set(that, 'is_money_level', res.data.is_money_level);
  884. });
  885. },
  886. /**
  887. * 购物车数量加和数量减
  888. *
  889. */
  890. ChangeCartNum: function (changeValue) {
  891. //changeValue:是否 加|减
  892. //获取当前变动属性
  893. let productSelect = this.productValue[this.attrValue];
  894. //如果没有属性,赋值给商品默认库存
  895. if (productSelect === undefined && !this.attr.productAttr.length) productSelect = this.attr.productSelect;
  896. //无属性值即库存为0;不存在加减;
  897. let stock = productSelect.stock || 0;
  898. let num = this.attr.productSelect;
  899. if (productSelect === undefined || (this.storeInfo.limit_num && num.cart_num >= this.storeInfo.limit_num && changeValue)) return;
  900. if (changeValue) {
  901. num.cart_num++;
  902. if (num.cart_num > stock) {
  903. this.$set(this.attr.productSelect, 'cart_num', stock ? stock : this.storeInfo.min_qty);
  904. this.$set(this, 'cart_num', stock ? stock : 1);
  905. }
  906. } else {
  907. num.cart_num--;
  908. if (num.cart_num < 1) {
  909. this.$set(this.attr.productSelect, 'cart_num', this.storeInfo.min_qty);
  910. this.$set(this, 'cart_num', 1);
  911. }
  912. }
  913. },
  914. attrVal(val) {
  915. this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val.indexn]);
  916. },
  917. /**
  918. * 属性变动赋值
  919. *
  920. */
  921. ChangeAttr: function (res) {
  922. let productSelect = this.productValue[res];
  923. if (!productSelect) {
  924. this.$util.Tips({
  925. title: this.$t(`重新选择`),
  926. success: () => {
  927. this.noGoods = true;
  928. this.attr.productSelect.stock = 0;
  929. this.attr.productSelect.quota = 0;
  930. this.attr.productSelect.cart_num = 0;
  931. }
  932. });
  933. } else {
  934. this.noGoods = false;
  935. }
  936. this.$set(this, 'selectSku', productSelect);
  937. if (productSelect && productSelect.stock > 0) {
  938. this.$set(this.attr.productSelect, 'image', productSelect.image);
  939. this.$set(this.attr.productSelect, 'price', productSelect.price);
  940. this.$set(this.attr.productSelect, 'stock', productSelect.stock);
  941. this.$set(this.attr.productSelect, 'unique', productSelect.unique);
  942. this.$set(this.attr.productSelect, 'cart_num', this.storeInfo.min_qty);
  943. this.$set(this.attr.productSelect, 'vip_price', productSelect.vip_price);
  944. this.$set(this, 'attrValue', res);
  945. this.$set(this, 'attrTxt', this.$t(`已选择`));
  946. } else {
  947. this.$set(this.attr.productSelect, 'image', productSelect.image);
  948. this.$set(this.attr.productSelect, 'price', productSelect.price);
  949. this.$set(this.attr.productSelect, 'stock', 0);
  950. this.$set(this.attr.productSelect, 'unique', '');
  951. this.$set(this.attr.productSelect, 'cart_num', 0);
  952. this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
  953. this.$set(this, 'attrValue', '');
  954. this.$set(this, 'attrTxt', this.$t(`请选择`));
  955. }
  956. },
  957. /**
  958. * 领取完毕移除当前页面领取过的优惠券展示
  959. */
  960. ChangCoupons: function (e) {
  961. let coupon = e;
  962. let couponList = this.$util.ArrayRemove(this.couponList, 'id', coupon.id);
  963. this.$set(this, 'couponList', couponList);
  964. this.getCouponList();
  965. },
  966. setClientHeight: function () {
  967. let that = this;
  968. if (!that.good_list.length) return;
  969. let view = uni.createSelectorQuery().in(this).select('#list0');
  970. view
  971. .fields(
  972. {
  973. size: true
  974. },
  975. (data) => {
  976. that.$set(that, 'clientHeight', data.height + 20);
  977. }
  978. )
  979. .exec();
  980. },
  981. /**
  982. * 获取产品详情
  983. *
  984. */
  985. getGoodsDetails: function () {
  986. let that = this;
  987. uni.showLoading({
  988. title: '加载中',
  989. mask: true
  990. });
  991. getProductDetail(that.id)
  992. .then((res) => {
  993. uni.hideLoading();
  994. let storeInfo = res.data.storeInfo;
  995. let good_list = res.data.good_list || [];
  996. let count = Math.ceil(good_list.length / 6);
  997. let goodArray = new Array();
  998. for (let i = 0; i < count; i++) {
  999. let list = good_list.slice(i * 6, i * 6 + 6);
  1000. if (list.length)
  1001. goodArray.push({
  1002. list: list
  1003. });
  1004. }
  1005. that.$set(that, 'storeInfo', storeInfo);
  1006. that.$set(that, 'description', storeInfo.description);
  1007. if (this.description) {
  1008. this.description = this.description.replace(/<img/gi, '<img style="max-width:100%;height:auto;float:left;display:block" ');
  1009. this.description = this.description.replace(/<video/gi, '<video style="width:100%;height:300px;display:block" ');
  1010. }
  1011. that.$set(that, 'presale_pay_status', res.data.storeInfo.presale_pay_status); // 1未开始; 2进行中; 3已结束
  1012. that.$set(that, 'reply', res.data.reply ? [res.data.reply] : []);
  1013. that.$set(that, 'replyCount', res.data.replyCount);
  1014. that.$set(that, 'replyChance', res.data.replyChance);
  1015. that.$set(that.attr, 'productAttr', res.data.productAttr);
  1016. that.$set(that, 'productValue', res.data.productValue);
  1017. that.$set(that, 'is_vip', res.data.storeInfo.is_vip);
  1018. that.$set(that.sharePacket, 'priceName', res.data.priceName);
  1019. that.$set(that.sharePacket, 'isState', res.data.priceName != 0 ? true : false);
  1020. that.$set(that, 'systemStore', res.data.system_store);
  1021. that.$set(that, 'storeSelfMention', res.data.store_self_mention);
  1022. that.$set(that, 'good_list', goodArray);
  1023. if (!storeInfo.wechat_code) {
  1024. // #ifdef H5
  1025. this.codeVal = window.location.origin + '/pages/goods_details/index?id=' + this.id + '&spid=' + this.$store.state.app.uid;
  1026. // #endif
  1027. // #ifdef APP-PLUS
  1028. this.codeVal = HTTP_REQUEST_URL + '/pages/goods_details/index?id=' + this.id + '&spid=' + this.$store.state.app.uid;
  1029. // #endif
  1030. } else {
  1031. that.$set(that, 'PromotionCode', storeInfo.wechat_code);
  1032. }
  1033. that.$set(that, 'activity', res.data.activity ? res.data.activity : []);
  1034. that.$set(that, 'couponList', res.data.coupons);
  1035. that.$set(that, 'routineContact', Number(res.data.routine_contact_type));
  1036. uni.setNavigationBarTitle({
  1037. title: storeInfo.store_name.substring(0, 7) + '...'
  1038. });
  1039. for (let key in res.data.productValue) {
  1040. let obj = res.data.productValue[key];
  1041. that.skuArr.push(obj);
  1042. }
  1043. this.$set(this, 'selectSku', that.skuArr[0]);
  1044. that.$set(that, 'diff', that.$util.$h.Sub(storeInfo.price, storeInfo.vip_price));
  1045. var navList = [that.$t(`商品`), that.$t(`详情`)];
  1046. if (res.data.replyCount) {
  1047. navList.splice(1, 0, that.$t(`评价`));
  1048. }
  1049. // if (goodArray.length) {
  1050. // navList.splice(-1, 0, '推荐');
  1051. // }
  1052. that.$set(that, 'navList', navList);
  1053. that.$set(that, 'storeImage', that.storeInfo.image);
  1054. that.$set(that, 'svip_price_open', res.data.svip_price_open);
  1055. if (that.isLogin) {
  1056. that.getUserInfo();
  1057. }
  1058. // #ifdef H5 || APP-PLUS
  1059. this.getImageBase64();
  1060. // #endif
  1061. // #ifdef H5
  1062. if (that.isLogin) {
  1063. that.ShareInfo();
  1064. }
  1065. // #endif
  1066. this.$nextTick(() => {
  1067. if (good_list.length) {
  1068. // #ifndef APP-PLUS
  1069. that.setClientHeight();
  1070. // #endif
  1071. // #ifdef APP-PLUS
  1072. setTimeout(() => {
  1073. that.setClientHeight();
  1074. }, 1000);
  1075. // #endif
  1076. }
  1077. });
  1078. setTimeout(function () {
  1079. that.infoScroll();
  1080. }, 500);
  1081. // #ifndef H5
  1082. that.downloadFilestoreImage();
  1083. // #endif
  1084. that.DefaultSelect();
  1085. that.getCartCount();
  1086. this.showAnimate = true;
  1087. })
  1088. .catch((err) => {
  1089. uni.hideLoading();
  1090. //状态异常返回上级页面
  1091. return that.$util.Tips(
  1092. {
  1093. title: err.toString()
  1094. },
  1095. {
  1096. tab: 3,
  1097. url: 1
  1098. }
  1099. );
  1100. });
  1101. },
  1102. infoScroll: function () {
  1103. var that = this,
  1104. topArr = [],
  1105. heightArr = [];
  1106. for (var i = 0; i < that.navList.length; i++) {
  1107. //productList
  1108. //获取元素所在位置
  1109. var query = uni.createSelectorQuery().in(this);
  1110. var idView = '#past' + i;
  1111. if (
  1112. (!this.replyCount && !that.good_list.length && i == 1) ||
  1113. (this.replyCount && !that.good_list.length && i == 2) ||
  1114. (!this.replyCount && that.good_list.length && i == 2)
  1115. ) {
  1116. idView = '#past' + 3;
  1117. }
  1118. if (!this.replyCount && that.good_list.length && i == 1) {
  1119. idView = '#past' + 2;
  1120. }
  1121. query.select(idView).boundingClientRect();
  1122. query.exec(function (res) {
  1123. var top = res[0].top;
  1124. var height = res[0].height;
  1125. topArr.push(top);
  1126. heightArr.push(height);
  1127. that.$set(that, 'topArr', topArr);
  1128. that.$set(that, 'heightArr', heightArr);
  1129. });
  1130. }
  1131. },
  1132. /**
  1133. * 拨打电话
  1134. */
  1135. makePhone: function () {
  1136. uni.makePhoneCall({
  1137. phoneNumber: this.systemStore.phone
  1138. });
  1139. },
  1140. /**
  1141. * 打开地图
  1142. *
  1143. */
  1144. showMaoLocation: function () {
  1145. if (!this.systemStore.latitude || !this.systemStore.longitude)
  1146. return this.$util.Tips({
  1147. title: this.$t(`缺少经纬度信息无法查看地图`)
  1148. });
  1149. uni.openLocation({
  1150. latitude: parseFloat(this.systemStore.latitude),
  1151. longitude: parseFloat(this.systemStore.longitude),
  1152. scale: 8,
  1153. name: this.systemStore.name,
  1154. address: this.systemStore.address + this.systemStore.detailed_address,
  1155. success: function () {}
  1156. });
  1157. },
  1158. /**
  1159. * 默认选中属性
  1160. *
  1161. */
  1162. DefaultSelect: function () {
  1163. let productAttr = this.attr.productAttr;
  1164. let value = [];
  1165. for (var key in this.productValue) {
  1166. if (this.productValue[key].stock > 0) {
  1167. value = this.attr.productAttr.length ? key.split(',') : [];
  1168. break;
  1169. }
  1170. }
  1171. for (let i = 0; i < productAttr.length; i++) {
  1172. this.$set(productAttr[i], 'index', value[i]);
  1173. }
  1174. //sort();排序函数:数字-英文-汉字;
  1175. let productSelect = this.productValue[value.join(',')];
  1176. if (productSelect && productAttr.length) {
  1177. this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
  1178. this.$set(this.attr.productSelect, 'image', productSelect.image);
  1179. this.$set(this.attr.productSelect, 'price', productSelect.price);
  1180. this.$set(this.attr.productSelect, 'stock', productSelect.stock);
  1181. this.$set(this.attr.productSelect, 'unique', productSelect.unique);
  1182. this.$set(this.attr.productSelect, 'cart_num', this.storeInfo.min_qty);
  1183. this.$set(this, 'attrValue', value.join(','));
  1184. this.$set(this.attr.productSelect, 'vip_price', productSelect.vip_price);
  1185. this.$set(this, 'attrTxt', this.$t(`已选择`));
  1186. } else if (!productSelect && productAttr.length) {
  1187. this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
  1188. this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
  1189. this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
  1190. this.$set(this.attr.productSelect, 'stock', 0);
  1191. this.$set(this.attr.productSelect, 'unique', '');
  1192. this.$set(this.attr.productSelect, 'cart_num', 0);
  1193. this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
  1194. this.$set(this, 'attrValue', '');
  1195. this.$set(this, 'attrTxt', this.$t(`请选择`));
  1196. } else if (!productSelect && !productAttr.length) {
  1197. this.$set(this.attr.productSelect, 'store_name', this.storeInfo.store_name);
  1198. this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
  1199. this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
  1200. this.$set(this.attr.productSelect, 'stock', this.storeInfo.stock);
  1201. this.$set(this.attr.productSelect, 'unique', this.storeInfo.unique || '');
  1202. this.$set(this.attr.productSelect, 'cart_num', this.storeInfo.min_qty);
  1203. this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
  1204. this.$set(this, 'attrValue', '');
  1205. this.$set(this, 'attrTxt', this.$t(`请选择`));
  1206. }
  1207. },
  1208. /**
  1209. * 获取优惠券
  1210. *
  1211. */
  1212. getCouponList(type) {
  1213. let that = this,
  1214. obj = {
  1215. page: 1,
  1216. limit: 20,
  1217. product_id: that.id
  1218. };
  1219. if (type !== undefined || type !== null) {
  1220. obj.type = type;
  1221. }
  1222. getCoupons(obj).then((res) => {
  1223. that.$set(that.coupon, 'count', res.data.count);
  1224. if (type === undefined || type === null) {
  1225. let count = [...that.coupon.count],
  1226. indexs = '';
  1227. let index = count.findIndex((item) => item);
  1228. let delCount = that.coupon.count,
  1229. newDelCount = [];
  1230. let countIndex = 0;
  1231. delCount.forEach((item, index) => {
  1232. if (item === 0) {
  1233. countIndex = index;
  1234. } else {
  1235. newDelCount.push(item);
  1236. }
  1237. });
  1238. if (newDelCount.length == 3) {
  1239. indexs = 2;
  1240. } else if (newDelCount.length == 2) {
  1241. if (countIndex === 2) {
  1242. indexs = 1;
  1243. } else {
  1244. indexs = 2;
  1245. }
  1246. } else {
  1247. indexs = delCount.findIndex((item) => item === count[index]);
  1248. }
  1249. that.$set(that.coupon, 'type', indexs);
  1250. that.getCouponList(indexs);
  1251. } else {
  1252. that.$set(that.coupon, 'list', res.data.list);
  1253. }
  1254. });
  1255. },
  1256. ChangCouponsUseState(index) {
  1257. let that = this;
  1258. that.coupon.list[index].is_use++;
  1259. // that.$set(that.coupon, "list", that.coupon.list);
  1260. that.$set(that.coupon, 'coupon', false);
  1261. },
  1262. /**
  1263. *
  1264. *
  1265. * 收藏商品
  1266. */
  1267. setCollect: function () {
  1268. if (this.isLogin === false) {
  1269. toLogin();
  1270. } else {
  1271. let that = this;
  1272. if (this.storeInfo.userCollect) {
  1273. collectDel([this.storeInfo.id]).then((res) => {
  1274. that.$set(that.storeInfo, 'userCollect', !that.storeInfo.userCollect);
  1275. return that.$util.Tips({
  1276. title: res.msg
  1277. });
  1278. });
  1279. } else {
  1280. collectAdd(this.storeInfo.id).then((res) => {
  1281. that.$set(that.storeInfo, 'userCollect', !that.storeInfo.userCollect);
  1282. return that.$util.Tips({
  1283. title: res.msg
  1284. });
  1285. });
  1286. }
  1287. }
  1288. },
  1289. /**
  1290. * 打开属性插件
  1291. */
  1292. selecAttr: function () {
  1293. this.$refs.proSwiper.videoIsPause();
  1294. this.$set(this.attr, 'cartAttr', true);
  1295. this.$set(this, 'isOpen', true);
  1296. },
  1297. /**
  1298. * 打开优惠券插件
  1299. */
  1300. couponTap: function () {
  1301. let that = this;
  1302. if (that.isLogin === false) {
  1303. toLogin();
  1304. } else {
  1305. this.$refs.proSwiper.videoIsPause();
  1306. that.getCouponList();
  1307. that.$set(that.coupon, 'coupon', true);
  1308. }
  1309. },
  1310. onMyEvent: function () {
  1311. this.$set(this.attr, 'cartAttr', false);
  1312. this.$set(this, 'isOpen', false);
  1313. },
  1314. /**
  1315. * 打开属性加入购物车
  1316. *
  1317. */
  1318. joinCart: function (e) {
  1319. //是否登录
  1320. if (this.isLogin === false) {
  1321. toLogin();
  1322. } else {
  1323. this.$refs.proSwiper.videoIsPause();
  1324. this.goCat();
  1325. }
  1326. },
  1327. goCart() {
  1328. uni.switchTab({
  1329. url: '/pages/order_addcart/order_addcart'
  1330. });
  1331. },
  1332. /*
  1333. * 加入购物车
  1334. */
  1335. goCat: function (news) {
  1336. let that = this,
  1337. productSelect = that.productValue[this.attrValue];
  1338. that.currentPage = false;
  1339. //打开属性
  1340. if (that.attrValue) {
  1341. //默认选中了属性,但是没有打开过属性弹窗还是自动打开让用户查看默认选中的属性
  1342. that.attr.cartAttr = !that.isOpen ? true : false;
  1343. } else {
  1344. if (that.isOpen) that.attr.cartAttr = true;
  1345. else that.attr.cartAttr = !that.attr.cartAttr;
  1346. }
  1347. //只有关闭属性弹窗时进行加入购物车
  1348. if (that.attr.cartAttr === true && that.isOpen === false) return (that.isOpen = true);
  1349. //如果有属性,没有选择,提示用户选择
  1350. if (that.attr.productAttr.length && productSelect === undefined && that.isOpen === true)
  1351. return that.$util.Tips({
  1352. title: that.$t(`产品库存不足,请选择其它属性`)
  1353. });
  1354. if (that.attr.productSelect.cart_num <= 0) {
  1355. that.attr.productSelect.cart_num = 1;
  1356. that.isOpen = false;
  1357. return that.$util.Tips({
  1358. title: that.$t(`请选择数量`)
  1359. });
  1360. }
  1361. let q = {
  1362. productId: that.id,
  1363. cartNum: that.attr.productSelect.cart_num,
  1364. new: news === undefined ? 0 : 1,
  1365. uniqueId: that.attr.productSelect !== undefined ? that.attr.productSelect.unique : '',
  1366. virtual_type: that.storeInfo.virtual_type
  1367. };
  1368. postCartAdd(q)
  1369. .then(function (res) {
  1370. that.isOpen = false;
  1371. that.attr.cartAttr = false;
  1372. if (news) {
  1373. uni.navigateTo({
  1374. url: '/pages/goods/order_confirm/index?new=1&cartId=' + res.data.cartId
  1375. });
  1376. } else {
  1377. that.$util.Tips({
  1378. title: that.$t(`添加成功`),
  1379. success: () => {
  1380. that.getCartCount(true);
  1381. }
  1382. });
  1383. }
  1384. })
  1385. .catch((err) => {
  1386. that.isOpen = false;
  1387. return that.$util.Tips({
  1388. title: err
  1389. });
  1390. });
  1391. },
  1392. /**
  1393. * 获取购物车数量
  1394. * @param boolean 是否展示购物车动画和重置属性
  1395. */
  1396. getCartCount: function (isAnima) {
  1397. let that = this;
  1398. const isLogin = that.isLogin;
  1399. if (isLogin) {
  1400. getCartCounts().then((res) => {
  1401. that.CartCount = res.data.count;
  1402. this.$store.commit('indexData/setCartNum', that.CartCount > 99 ? '...' : that.CartCount + '');
  1403. // uni.setTabBarBadge({
  1404. // index: Number(uni.getStorageSync('FOOTER_ADDCART')) || 2,
  1405. // text: that.CartCount + ''
  1406. // })
  1407. //加入购物车后重置属性
  1408. if (isAnima) {
  1409. that.animated = true;
  1410. setTimeout(function () {
  1411. that.animated = false;
  1412. }, 500);
  1413. }
  1414. });
  1415. }
  1416. },
  1417. /**
  1418. * 立即购买
  1419. */
  1420. goBuy: function (e) {
  1421. if (this.isLogin === false) {
  1422. toLogin();
  1423. } else {
  1424. this.$refs.proSwiper.videoIsPause();
  1425. this.goCat(true);
  1426. }
  1427. },
  1428. open(data) {
  1429. this.showMenuIcon = data;
  1430. },
  1431. // 授权关闭
  1432. authColse: function (e) {
  1433. this.isShowAuth = e;
  1434. },
  1435. /**
  1436. * 分享打开
  1437. *
  1438. */
  1439. listenerActionSheet() {
  1440. this.currentPage = false;
  1441. // #ifdef H5
  1442. if (this.$wechat.isWeixin()) {
  1443. this.weixinStatus = true;
  1444. }
  1445. // #endif
  1446. this.posters = true;
  1447. },
  1448. // 分享关闭
  1449. listenerActionClose: function () {
  1450. this.posters = false;
  1451. this.posterImageStatus = false;
  1452. },
  1453. //隐藏海报
  1454. posterImageClose: function () {
  1455. this.posterImageStatus = false;
  1456. },
  1457. // 小程序关闭分享弹窗;
  1458. goFriend: function () {
  1459. this.posters = false;
  1460. },
  1461. /*
  1462. * 保存到手机相册
  1463. */
  1464. // #ifdef MP
  1465. savePosterPath: function () {
  1466. let that = this;
  1467. uni.getSetting({
  1468. success(res) {
  1469. if (!res.authSetting['scope.writePhotosAlbum']) {
  1470. uni.authorize({
  1471. scope: 'scope.writePhotosAlbum',
  1472. success() {
  1473. uni.saveImageToPhotosAlbum({
  1474. filePath: that.posterImage,
  1475. success: function (res) {
  1476. that.posterImageClose();
  1477. that.$util.Tips({
  1478. title: that.$t(`保存成功`),
  1479. icon: 'success'
  1480. });
  1481. },
  1482. fail: function (res) {
  1483. that.$util.Tips({
  1484. title: that.$t(`保存失败`)
  1485. });
  1486. }
  1487. });
  1488. }
  1489. });
  1490. } else {
  1491. uni.saveImageToPhotosAlbum({
  1492. filePath: that.posterImage,
  1493. success: function (res) {
  1494. that.posterImageClose();
  1495. that.$util.Tips({
  1496. title: that.$t(`保存成功`),
  1497. icon: 'success'
  1498. });
  1499. },
  1500. fail: function (res) {
  1501. that.$util.Tips({
  1502. title: that.$t(`保存失败`)
  1503. });
  1504. }
  1505. });
  1506. }
  1507. }
  1508. });
  1509. },
  1510. // #endif
  1511. //#ifdef APP-PLUS
  1512. savePosterPath() {
  1513. let that = this;
  1514. uni.saveImageToPhotosAlbum({
  1515. filePath: that.posterImage,
  1516. success: function (res) {
  1517. that.posterImageClose();
  1518. that.$util.Tips({
  1519. title: that.$t(`保存成功`),
  1520. icon: 'success'
  1521. });
  1522. },
  1523. fail: function (res) {
  1524. that.$util.Tips({
  1525. title: that.$t(`保存失败`)
  1526. });
  1527. }
  1528. });
  1529. },
  1530. // #endif
  1531. //#ifdef H5
  1532. ShareInfo() {
  1533. let data = this.storeInfo;
  1534. let href = location.href;
  1535. if (this.$wechat.isWeixin()) {
  1536. getUserInfo().then((res) => {
  1537. href = href.indexOf('?') === -1 ? href + '?spread=' + res.data.uid : updateURLParameter(href, 'spread', res.data.uid);
  1538. let configAppMessage = {
  1539. desc: data.store_info,
  1540. title: data.store_name,
  1541. link: href,
  1542. imgUrl: data.image
  1543. };
  1544. this.$wechat
  1545. .wechatEvevt(['updateAppMessageShareData', 'updateTimelineShareData', 'onMenuShareAppMessage', 'onMenuShareTimeline'], configAppMessage)
  1546. .then((res) => {})
  1547. .catch((err) => {});
  1548. });
  1549. }
  1550. },
  1551. //#endif
  1552. tabCouponType: function (type) {
  1553. this.$set(this.coupon, 'type', type);
  1554. this.getCouponList(type);
  1555. },
  1556. //点击sku图片打开轮播图
  1557. showImg(index) {
  1558. this.$refs.cusPreviewImg.open(this.selectSku.suk);
  1559. },
  1560. showSwiperImg(index) {
  1561. this.$refs.cusSwiperImg.open(index);
  1562. },
  1563. //滑动轮播图选择商品
  1564. changeSwitch(e) {
  1565. let productSelect = this.skuArr[e];
  1566. this.$set(this, 'selectSku', productSelect);
  1567. var skuList = productSelect.suk.split(',');
  1568. this.$set(this.attr.productAttr[0], 'index', skuList[0]);
  1569. if (skuList.length == 2) {
  1570. this.$set(this.attr.productAttr[0], 'index', skuList[0]);
  1571. this.$set(this.attr.productAttr[1], 'index', skuList[1]);
  1572. } else if (skuList.length == 3) {
  1573. this.$set(this.attr.productAttr[0], 'index', skuList[0]);
  1574. this.$set(this.attr.productAttr[1], 'index', skuList[1]);
  1575. this.$set(this.attr.productAttr[2], 'index', skuList[2]);
  1576. } else if (skuList.length == 4) {
  1577. this.$set(this.attr.productAttr[0], 'index', skuList[0]);
  1578. this.$set(this.attr.productAttr[1], 'index', skuList[1]);
  1579. this.$set(this.attr.productAttr[2], 'index', skuList[2]);
  1580. this.$set(this.attr.productAttr[3], 'index', skuList[3]);
  1581. }
  1582. if (productSelect) {
  1583. this.$set(this.attr.productSelect, 'image', productSelect.image);
  1584. this.$set(this.attr.productSelect, 'price', productSelect.price);
  1585. this.$set(this.attr.productSelect, 'stock', productSelect.stock);
  1586. this.$set(this.attr.productSelect, 'unique', productSelect.unique);
  1587. this.$set(this.attr.productSelect, 'vipPrice', productSelect.vipPrice);
  1588. this.$set(this, 'attrTxt', this.$t(`已选择`));
  1589. this.$set(this, 'attrValue', productSelect.suk);
  1590. }
  1591. }
  1592. }
  1593. };
  1594. </script>
  1595. <style scoped lang="scss">
  1596. .activity_pin {
  1597. width: auto;
  1598. height: 44rpx;
  1599. line-height: 44rpx;
  1600. // background: linear-gradient(90deg, rgba(233, 51, 35, 1) 0%, rgba(250, 101, 20, 1) 100%);
  1601. background-color: var(--view-theme);
  1602. opacity: 1;
  1603. border-radius: 22rpx;
  1604. padding: 0 15rpx;
  1605. margin-left: 19rpx;
  1606. }
  1607. .activity_miao {
  1608. width: auto;
  1609. height: 44rpx;
  1610. line-height: 44rpx;
  1611. padding: 0 15rpx;
  1612. // background: linear-gradient(90deg, rgba(250, 102, 24, 1) 0%, rgba(254, 161, 15, 1) 100%);
  1613. background-color: var(--view-theme);
  1614. opacity: 1;
  1615. border-radius: 22rpx;
  1616. margin-left: 19rpx;
  1617. }
  1618. .iconfonts {
  1619. color: #fff !important;
  1620. font-size: 28rpx;
  1621. }
  1622. .activity_title {
  1623. font-size: 24rpx;
  1624. color: #fff;
  1625. }
  1626. .activity_kan {
  1627. width: auto;
  1628. height: 44rpx;
  1629. line-height: 44rpx;
  1630. padding: 0 15rpx;
  1631. // background: linear-gradient(90deg, rgba(254, 159, 15, 1) 0%, rgba(254, 178, 15, 1) 100%);
  1632. background-color: var(--view-theme);
  1633. opacity: 1;
  1634. border-radius: 22rpx;
  1635. margin-left: 19rpx;
  1636. }
  1637. .mask {
  1638. z-index: 300 !important;
  1639. }
  1640. .head-bar {
  1641. background: #fff;
  1642. }
  1643. .generate-posters {
  1644. width: 100%;
  1645. height: 170rpx;
  1646. background-color: #fff;
  1647. position: fixed;
  1648. left: 0;
  1649. bottom: 0;
  1650. z-index: 388;
  1651. transform: translate3d(0, 100%, 0);
  1652. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  1653. border-top: 1rpx solid #eee;
  1654. }
  1655. .generate-posters.on {
  1656. transform: translate3d(0, 0, 0);
  1657. }
  1658. .generate-posters .item {
  1659. flex: 1;
  1660. text-align: center;
  1661. font-size: 30rpx;
  1662. }
  1663. .generate-posters .item .iconfont {
  1664. font-size: 80rpx;
  1665. color: #5eae72;
  1666. }
  1667. .generate-posters .item .iconfont.icon-haibao {
  1668. color: #5391f1;
  1669. }
  1670. .generate-posters .item .iconfont.icon-haowuquan1 {
  1671. color: #ff954d;
  1672. }
  1673. .product-con .footer {
  1674. padding: 0 20rpx 0 30rpx;
  1675. position: fixed;
  1676. bottom: 0;
  1677. width: 100%;
  1678. box-sizing: border-box;
  1679. background-color: rgba(255, 255, 255, 0.85);
  1680. backdrop-filter: blur(10px);
  1681. z-index: 277;
  1682. border-top: 1rpx solid #f0f0f0;
  1683. height: 100rpx;
  1684. height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  1685. height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  1686. transform: translate3d(0, 100%, 0);
  1687. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  1688. }
  1689. .product-con .footer .item {
  1690. font-size: 18rpx;
  1691. color: #666;
  1692. }
  1693. .product-con .footer .item .iconfont {
  1694. text-align: center;
  1695. font-size: 40rpx;
  1696. }
  1697. .product-con .footer .item .iconfont.icon-shoucang1 {
  1698. color: var(--view-theme);
  1699. }
  1700. .product-con .footer .item .iconfont.icon-gouwuche1 {
  1701. font-size: 40rpx;
  1702. position: relative;
  1703. }
  1704. .product-con .footer .item .iconfont.icon-gouwuche1 .num {
  1705. color: #fff;
  1706. position: absolute;
  1707. font-size: 18rpx;
  1708. padding: 2rpx 10rpx 3rpx;
  1709. border-radius: 200rpx;
  1710. top: -10rpx;
  1711. right: -10rpx;
  1712. }
  1713. .virbnt {
  1714. width: 444rpx !important;
  1715. height: 76rpx !important;
  1716. border-radius: 50rpx !important;
  1717. overflow: hidden;
  1718. }
  1719. .virbnts {
  1720. width: 444rpx !important;
  1721. text-align: center;
  1722. line-height: 76rpx;
  1723. color: #fff;
  1724. font-size: 28rpx;
  1725. background-color: var(--view-bntColor);
  1726. border-radius: 50rpx !important;
  1727. }
  1728. .product-con .footer .bnt {
  1729. width: 444rpx;
  1730. height: 76rpx;
  1731. }
  1732. .product-con .footer .bnt .bnts {
  1733. width: 222rpx;
  1734. text-align: center;
  1735. line-height: 76rpx;
  1736. color: #fff;
  1737. font-size: 28rpx;
  1738. }
  1739. .product-con .footer .bnt .joinCart {
  1740. border-radius: 50rpx 0 0 50rpx;
  1741. background-color: var(--view-bntColor);
  1742. // background-image: linear-gradient(to right, #fea10f 0%, #fa8013 100%);
  1743. }
  1744. .product-con .footer .bnt .buy {
  1745. border-radius: 0 50rpx 50rpx 0;
  1746. background-color: var(--view-theme);
  1747. // background-image: linear-gradient(to right, #fa6514 0%, #e93323 100%);
  1748. }
  1749. .product-con .store-info {
  1750. margin-top: 20rpx;
  1751. background-color: #fff;
  1752. }
  1753. .product-con .store-info .title {
  1754. padding: 0 30rpx;
  1755. font-size: 28rpx;
  1756. color: #282828;
  1757. height: 80rpx;
  1758. line-height: 80rpx;
  1759. border-bottom: 1px solid #f5f5f5;
  1760. }
  1761. .product-con .store-info .info {
  1762. padding: 0 30rpx;
  1763. height: 126rpx;
  1764. }
  1765. .product-con .store-info .info .picTxt {
  1766. width: 615rpx;
  1767. }
  1768. .product-con .store-info .info .picTxt .pictrue {
  1769. width: 76rpx;
  1770. height: 76rpx;
  1771. }
  1772. .product-con .store-info .info .picTxt .pictrue image {
  1773. width: 100%;
  1774. height: 100%;
  1775. border-radius: 6rpx;
  1776. }
  1777. .product-con .store-info .info .picTxt .text {
  1778. width: 522rpx;
  1779. }
  1780. .product-con .store-info .info .picTxt .text .name {
  1781. font-size: 30rpx;
  1782. color: #282828;
  1783. }
  1784. .product-con .store-info .info .picTxt .text .address {
  1785. font-size: 24rpx;
  1786. color: #666;
  1787. margin-top: 3rpx;
  1788. }
  1789. .product-con .store-info .info .picTxt .text .address .iconfont {
  1790. color: #707070;
  1791. font-size: 18rpx;
  1792. margin-left: 10rpx;
  1793. }
  1794. .product-con .store-info .info .picTxt .text .address .addressTxt {
  1795. max-width: 480rpx;
  1796. }
  1797. .product-con .store-info .info .iconfont {
  1798. font-size: 40rpx;
  1799. }
  1800. .product-con .superior {
  1801. background-color: #fff;
  1802. margin-top: 20rpx;
  1803. padding-bottom: 10rpx;
  1804. }
  1805. .product-con .superior .title {
  1806. height: 98rpx;
  1807. }
  1808. .product-con .superior .title .lingw {
  1809. width: 23rpx;
  1810. height: 23rpx;
  1811. background-color: var(--view-minorColorT);
  1812. transform: rotate(45deg);
  1813. }
  1814. .product-con .superior .title .lingn {
  1815. width: 11rpx;
  1816. height: 11rpx;
  1817. background-color: var(--view-theme);
  1818. }
  1819. .product-con .superior .title image {
  1820. width: 30rpx;
  1821. height: 30rpx;
  1822. }
  1823. .product-con .superior .title .titleTxt {
  1824. margin: 0 20rpx;
  1825. font-size: 30rpx;
  1826. color: var(--view-theme);
  1827. // background-image: linear-gradient(to right, #f57a37 0%, #f21b07 100%);
  1828. // -webkit-background-clip: text;
  1829. // -webkit-text-fill-color: transparent;
  1830. }
  1831. .product-con .superior .slider-banner {
  1832. width: 690rpx;
  1833. margin: 0 auto;
  1834. position: relative;
  1835. }
  1836. .product-con .superior .slider-banner swiper {
  1837. height: 100%;
  1838. width: 100%;
  1839. }
  1840. .product-con .superior .slider-banner swiper-item {
  1841. height: 100%;
  1842. }
  1843. .product-con .superior .slider-banner .list {
  1844. width: 100%;
  1845. }
  1846. .product-con .superior .slider-banner .list .item {
  1847. width: 215rpx;
  1848. margin: 0 22rpx 30rpx 0;
  1849. font-size: 26rpx;
  1850. }
  1851. .product-con .superior .slider-banner .list .item:nth-of-type(3n) {
  1852. margin-right: 0;
  1853. }
  1854. .product-con .superior .slider-banner .list .item .pictrue {
  1855. position: relative;
  1856. width: 100%;
  1857. height: 215rpx;
  1858. border-radius: 20rpx;
  1859. }
  1860. .product-con .superior .slider-banner .list .item .pictrue image {
  1861. width: 100%;
  1862. height: 100%;
  1863. border-radius: 20rpx;
  1864. }
  1865. .product-con .superior .slider-banner .list .item .name {
  1866. color: #282828;
  1867. margin-top: 12rpx;
  1868. }
  1869. .product-con .superior .slider-banner .swiper-pagination-bullet {
  1870. background-color: #999;
  1871. }
  1872. .product-con .superior .slider-banner .swiper-pagination-bullet-active {
  1873. background-color: #e93323;
  1874. }
  1875. button {
  1876. padding: 0;
  1877. margin: 0;
  1878. line-height: normal;
  1879. background-color: #fff;
  1880. }
  1881. button::after {
  1882. border: 0;
  1883. }
  1884. action-sheet-item {
  1885. padding: 0;
  1886. height: 240rpx;
  1887. align-items: center;
  1888. display: flex;
  1889. }
  1890. .contact {
  1891. font-size: 16px;
  1892. width: 50%;
  1893. background-color: #fff;
  1894. padding: 8rpx 0;
  1895. border-radius: 0;
  1896. margin: 0;
  1897. line-height: 2;
  1898. }
  1899. .contact::after {
  1900. border: none;
  1901. }
  1902. .action-sheet {
  1903. font-size: 17px;
  1904. line-height: 1.8;
  1905. width: 50%;
  1906. position: absolute;
  1907. top: 0;
  1908. right: 0;
  1909. padding: 25rpx 0;
  1910. }
  1911. .canvas {
  1912. z-index: 300;
  1913. width: 750px;
  1914. height: 1190px;
  1915. }
  1916. .poster-pop {
  1917. width: 450rpx;
  1918. height: 714rpx;
  1919. position: fixed;
  1920. left: 50%;
  1921. transform: translateX(-50%);
  1922. z-index: 399;
  1923. top: 50%;
  1924. margin-top: -377rpx;
  1925. .poster-img{
  1926. border-radius: 6px;
  1927. }
  1928. }
  1929. .poster-pop image {
  1930. width: 100%;
  1931. height: 100%;
  1932. display: block;
  1933. }
  1934. .poster-pop .close {
  1935. width: 46rpx;
  1936. height: 75rpx;
  1937. position: fixed;
  1938. right: 0;
  1939. top: -73rpx;
  1940. display: block;
  1941. }
  1942. .poster-pop .save-poster {
  1943. background-color: #df2d0a;
  1944. font-size: :22rpx;
  1945. color: #fff;
  1946. text-align: center;
  1947. height: 76rpx;
  1948. line-height: 76rpx;
  1949. width: 100%;
  1950. }
  1951. .poster-pop .keep {
  1952. color: #fff;
  1953. text-align: center;
  1954. font-size: 25rpx;
  1955. margin-top: 10rpx;
  1956. }
  1957. .mask {
  1958. position: fixed;
  1959. top: 0;
  1960. left: 0;
  1961. right: 0;
  1962. bottom: 0;
  1963. background-color: rgba(0, 0, 0, 0.6);
  1964. z-index: 9;
  1965. }
  1966. .wrapper .coupon-title {
  1967. line-height: 44rpx;
  1968. }
  1969. .navbar .header {
  1970. height: 96rpx;
  1971. font-size: 30rpx;
  1972. color: #050505;
  1973. background-color: #fff;
  1974. /* #ifdef APP-PLUS */
  1975. width: 100%;
  1976. /* #endif */
  1977. }
  1978. .home {
  1979. /* #ifdef H5 */
  1980. top: 20rpx !important;
  1981. /* #endif */
  1982. }
  1983. .navbar .header .item {
  1984. position: relative;
  1985. margin: 0 25rpx;
  1986. }
  1987. .navbar .header .item.on:before {
  1988. position: absolute;
  1989. width: 60rpx;
  1990. height: 5rpx;
  1991. background-repeat: no-repeat;
  1992. content: '';
  1993. // background-image: linear-gradient(to right, #ff3366 0%, #ff6533 100%);
  1994. background-color: var(--view-theme);
  1995. bottom: -10rpx;
  1996. left: 50%;
  1997. margin-left: -28rpx;
  1998. }
  1999. .navbar {
  2000. position: fixed;
  2001. background-color: #fff;
  2002. top: 0;
  2003. left: 0;
  2004. z-index: 99;
  2005. width: 100%;
  2006. }
  2007. .navbar .navbarH {
  2008. position: relative;
  2009. }
  2010. .navbar .navbarH .navbarCon {
  2011. position: absolute;
  2012. bottom: 0;
  2013. height: 100rpx;
  2014. width: 100%;
  2015. /* #ifndef APP-PLUS || H5 || MP-ALIPAY */
  2016. // justify-content: flex-end;
  2017. padding-left: 48px;
  2018. /* #endif */
  2019. }
  2020. .home {
  2021. color: #333;
  2022. position: fixed;
  2023. /* #ifdef MP */
  2024. width: 126rpx;
  2025. left: 15rpx;
  2026. /* #endif */
  2027. /* #ifndef MP */
  2028. width: 56rpx;
  2029. left: 33rpx;
  2030. /* #endif */
  2031. height: 56rpx;
  2032. z-index: 99;
  2033. background: rgba(255, 255, 255, 0.3);
  2034. border: 1px solid rgba(0, 0, 0, 0.1);
  2035. border-radius: 40rpx;
  2036. font-size: 33rpx;
  2037. &.right {
  2038. right: 33rpx;
  2039. left: unset;
  2040. }
  2041. &.on {
  2042. background: unset;
  2043. color: #333;
  2044. }
  2045. &.homeIndex {
  2046. /* #ifdef MP */
  2047. width: 98rpx;
  2048. /* #endif */
  2049. /* #ifndef MP */
  2050. border-color: rgba(255, 255, 255, 0);
  2051. /* #endif */
  2052. }
  2053. }
  2054. .home .iconfont {
  2055. width: 58rpx;
  2056. text-align: center;
  2057. }
  2058. .home .line {
  2059. width: 1rpx;
  2060. height: 34rpx;
  2061. background: #b3b3b3;
  2062. }
  2063. .home .icon-xiangzuo {
  2064. font-size: 28rpx;
  2065. }
  2066. .share-box {
  2067. z-index: 1000;
  2068. position: fixed;
  2069. left: 0;
  2070. top: 0;
  2071. width: 100%;
  2072. height: 100%;
  2073. image {
  2074. width: 100%;
  2075. height: 100%;
  2076. }
  2077. }
  2078. .product-con .conter {
  2079. display: block;
  2080. }
  2081. .product-con .conter img {
  2082. display: block;
  2083. }
  2084. .svip {
  2085. height: 64rpx;
  2086. padding: 0 26rpx 0 60rpx;
  2087. margin: 24rpx 30rpx 0;
  2088. background: url('data:image/png;base64,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')
  2089. center/100% 100% no-repeat;
  2090. font-size: 24rpx;
  2091. color: #ae5a2a;
  2092. }
  2093. .svip .iconfont {
  2094. margin-left: 12rpx;
  2095. font-size: 24rpx;
  2096. }
  2097. .product-con .wrapper .share .money image {
  2098. width: 66rpx;
  2099. height: 26rpx;
  2100. }
  2101. .introduce {
  2102. min-height: 44rpx;
  2103. }
  2104. .limit_good {
  2105. font-size: 16rpx;
  2106. margin: 10rpx 30rpx;
  2107. color: red;
  2108. .line {
  2109. padding: 0 6rpx;
  2110. }
  2111. }
  2112. .attrImg {
  2113. width: 66rpx;
  2114. height: 66rpx;
  2115. border-radius: 6rpx;
  2116. display: block;
  2117. margin-right: 14rpx;
  2118. }
  2119. .switchTxt {
  2120. height: 60rpx;
  2121. // flex: 1;
  2122. line-height: 60rpx;
  2123. box-sizing: border-box;
  2124. background: #eeeeee;
  2125. padding: 0 10rpx;
  2126. border-radius: 8rpx;
  2127. text-align: center;
  2128. }
  2129. .attribute {
  2130. padding: 10rpx 30rpx;
  2131. .line1 {
  2132. width: 600rpx;
  2133. }
  2134. }
  2135. .flex {
  2136. display: flex;
  2137. justify-content: space-between;
  2138. width: 100%;
  2139. }
  2140. .flexs {
  2141. display: flex;
  2142. }
  2143. .attr-txt {
  2144. display: flex;
  2145. flex-wrap: nowrap;
  2146. width: 130rpx;
  2147. }
  2148. .presell_count {
  2149. margin-top: 20rpx;
  2150. font-size: 26rpx;
  2151. color: #999999;
  2152. padding: 20rpx 30rpx;
  2153. .presell_time {
  2154. margin: 8rpx 0 4rpx;
  2155. .area_line {
  2156. display: inline-block;
  2157. margin: 0 6rpx;
  2158. }
  2159. }
  2160. .icon-shijian1 {
  2161. display: inline-block;
  2162. margin-right: 4rpx;
  2163. }
  2164. }
  2165. .presale .bnts {
  2166. width: 444rpx;
  2167. height: 76rpx;
  2168. border-radius: 50rpx 50rpx;
  2169. background-color: var(--view-theme);
  2170. text-align: center;
  2171. line-height: 76rpx;
  2172. color: #fff;
  2173. font-size: 28rpx;
  2174. }
  2175. .delete-line {
  2176. text-decoration: line-through;
  2177. }
  2178. </style>