index.vue 77 KB

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