123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828 |
- <template>
- <view :data-theme="theme">
- <tui-skeleton v-if="showSkeleton"></tui-skeleton>
- <view class="product-con tui-skeleton" :style="{ visibility: showSkeleton ? 'hidden' : 'visible' }">
- <view class="navbar" :class="opacity > 0.6 ? 'bgwhite' : ''">
- <view class="navbarH" :style="'height:' + navH + 'rpx;'">
- <view class="navbarCon acea-row" :style="{ paddingRight: navbarRight + 'px' }">
- <nav-bar iconColor='#fff' :isBackgroundColor="false" ref="navBarRef" :isHeight="false">
- </nav-bar>
- <!-- 头部tab标题 -->
- <!-- #ifdef H5 || APP-PLUS-->
- <view class="tab_nav" v-show="opacity > 0.6">
- <view class="header flex align-center">
- <view class="item" :class="
- navActive === index &&
- (marketingType === ProductMarketingTypeEnum.Groupbuying||productType === ProductTypeEnum.Integral)
- ? 'groupTabOn'
- : navActive === index
- ? 'on'
- : ''
- "
- v-for="(item, index) in navList" :key="index" @tap="tap(index)">
- {{ item }}
- </view>
- <view style="width: 10rpx;height: 2px;" @click="listenerActionSheet"></view>
- </view>
- </view>
- <!-- #endif -->
- <!-- 分享 -->
- <view class="iconfont icon-ic_share1" :style="[shareStyle]" @click="listenerActionSheet"> </view>
- </view>
- </view>
- </view>
- <!-- 导航小图标 -->
- <view class="dialog_nav" v-show="currentPage" :style="{ top: navH + 'rpx' }">
- <view class="dialog_nav_item" :class="item.after" v-for="(item, index) in selectNavList" :key="index" @click="linkPage(item.url)">
- <text class="iconfont" :class="item.icon"></text>
- <text class="pl-20">{{ item.name }}</text>
- </view>
- </view>
- <!-- 商品详情 -->
- <view class="detail_container" @touchstart="touchStart">
- <scroll-view :scroll-top="scrollTop" scroll-y="true" scroll-with-animation="true" :style="'height:' + height + 'px;'"
- @scroll="scroll">
- <view id="past0">
- <!-- #ifdef MP || APP-PLUS -->
- <view class="" :style="'width:100%;' + 'height:' + sysHeight + 'px'"></view>
- <!-- #endif -->
- <productConSwiper v-if="!dataItem" class="tui-skeleton-rect" :isGroup="marketingType" :imgUrls="sliderImage"
- :videoline="videoLink" :productType="productType" @videoPause="videoPause">
- </productConSwiper>
- <view v-if="dataItem">
- <!-- 0-待审核,1-审核通过,2-审核失败,3-平台关闭 -->
- <view v-if="dataItem.auditStatus == 0 || dataItem.auditStatus == 2 || dataItem.auditStatus == 3" class="approval_status">
- <view class="status_count" :class="dataItem.auditStatus == 0 ? 'status1' : 'status0'">
- <view class="status_title">
- <text class="iconfont" :class="(dataItem.auditStatus == 2 || dataItem.auditStatus == 3) ? 'icon-tishi' : 'icon-shijian'"></text>
- <text v-if="dataItem.auditStatus == 2" class="title">审核未通过,内容仅自己可见</text>
- <text v-if="dataItem.auditStatus == 3" class="title">平台关闭,内容仅自己可见</text>
- <text v-if="dataItem.auditStatus == 0" class="title">正在审核,内容仅自己可见</text>
- </view>
- <view v-if="dataItem.auditStatus == 2 || dataItem.auditStatus == 3" class="status_info">
- {{dataItem.refusal}}
- </view>
- <view v-if="dataItem.auditStatus == 0" class="status_info">
- 发布的内容审核通过后,将展示在首页!
- </view>
- </view>
- </view>
- <view class="imageBox">
- <swiper v-if="dataItem.type ===1 && dataItem.image && dataItem.image.split(',').length>1" :indicator-dots="true"
- indicator-active-color="#e93323" :circular="true" :interval="interval" :duration="duration" style="height:430px">
- <block v-for="(item,index) in dataItem.image.split(',')" :key='index'>
- <swiper-item class="cover">
- <easy-loadimage mode="heightFix" :image-src="item" style="height:430px"></easy-loadimage>
- </swiper-item>
- </block>
- </swiper>
- <view v-if="dataItem.type ===2 || (dataItem.type ===1 &&dataItem.image && dataItem.image.split(',').length===1)">
- <view class="cover" @click="goVideoDetail(dataItem)" style="height:430px">
- <easy-loadimage mode="heightFix" :image-src="dataItem.cover" style="height:430px"></easy-loadimage>
- <view v-if="dataItem.type ===2" class="circle">
- <text class="iconfont icon-24gf-play"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 秒杀card -->
- <seckill-card v-if="marketingType === ProductMarketingTypeEnum.Seckill" :seckillStatus="seckillStatus"
- :seckillTime="seckillTime" :productInfo="productInfo" :productPrice="productPrice"></seckill-card>
- <!-- 拼团card -->
- <group-card :productInfo="attr.productSelect" :groupBuyActivityResponse="groupBuyActivityResponse" v-if="marketingType === ProductMarketingTypeEnum.Groupbuying"></group-card>
- <!-- 氛围图card -->
- <activity-style v-if="productInfo.activityStyle" :productPrice="productPrice" :productInfo="productInfo"></activity-style>
- <view class="borderPad" :class="
- marketingType === ProductMarketingTypeEnum.Seckill ||
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ? 'mtop'
- : ''
- ">
- <view class="wrapper mb20 borRadius14">
- <view v-if="
- marketingType === ProductMarketingTypeEnum.Normal &&
- !productInfo.activityStyle
- ">
- <view class="share acea-row row-between mb10">
- <!-- 积分商品价格 -->
- <view v-if="productType === ProductTypeEnum.Integral" class="flex-y-center font-color-red">
- <span class="semiBold font-color-red fs-40">{{
- productPrice.redeemIntegral
- }}</span><span class="f-s-36 font-color-red ml-4">积分</span>
- <view v-show="productPrice.price > 0" class="ml-4">
- +
- <span class="semiBold ml-4 fs-40">{{
- productPrice.price
- }}</span><span class="f-s-36 font-color-red ml-4">元</span>
- </view>
- </view>
- <!-- 其他商品价格 -->
- <svip-price v-else :svipIconStyle="svipIconStyle" :productPrice="productPrice" :svipPriceStyle="svipPriceStyle"></svip-price>
- <!-- 收藏 -->
- <view v-show="productType !== ProductTypeEnum.Integral" @click="setCollect" class="item tui-skeleton-rect flex-y-center">
- <view class="iconfont icon-shoucang1 " :class="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ? 'color-normal'
- : 'color-change'
- "
- v-if="userCollect || dataItem.userIsLike"></view>
- <view class="iconfont icon-shoucang" v-else></view>
- <text v-if="dataItem">{{dataItem.likeNum || 0}}</text>
- </view>
- <!-- <view class="iconfont icon-fenxiang" @click="listenerActionSheet"></view> -->
- </view>
- <view v-if="couponList.length > 0" class="acea-row row-between-wrapper">
- <view class="flex-1 acea-row row-middle">
- <span v-for="(item, index) in couponList" class="coupon_label">{{
- item.minPrice === 0
- ? "无门槛减" + item.money
- : "满" + item.minPrice + "减" + item.money
- }}</span>
- </view>
- <view class="coupon_more" @click="couponTap">领券<text class="iconfont icon-you"></text>
- </view>
- </view>
- <view class="introduce tui-skeleton-rect line2 mt30" v-if="!dataItem">{{productInfo.name}}</view>
- <view class="introduce tui-skeleton-rect line2 mt30" v-else>
- <view class="flex-between-center">
- <view>
- <view>{{dataItem.title}}</view>
- <view style="font-size: 28rpx;font-weight: 400;color: #333333;">{{dataItem.content}}</view>
- </view>
- <view v-if="dataItem.saleStatus !== 0 && dataItem.authorId == uid">
- <navigator :url="`/pages/goods/order_details/index?orderNo=${dataItem.orderNo}&orderType=secondHand`">
- <button class="bg-color order-btn">
- 订单详情
- </button>
- </navigator>
- </view>
- </view>
- </view>
- </view>
- <view v-if="marketingType !== ProductMarketingTypeEnum.Normal" class="share acea-row row-between row-middle">
- <view class="introduce tui-skeleton-rect line2 lineWidth">{{ productInfo.name }}
- </view>
- <!-- 收藏 -->
- <view v-show="productType !== ProductTypeEnum.Integral" @click="setCollect" class="item tui-skeleton-rect">
- <view class="iconfont icon-shoucang1 " :class="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ? 'color-normal'
- : 'color-change'
- "
- v-if="userCollect"></view>
- <view class="iconfont icon-shoucang" v-else></view>
- </view>
- <!-- <view class="iconfont icon-fenxiang" @click="listenerActionSheet"></view> -->
- </view>
- <view v-if="
- marketingType === ProductMarketingTypeEnum.Normal &&
- productInfo.activityStyle
- ">
- <view v-if="couponList.length > 0" class="acea-row row-between-wrapper mb30">
- <view class="flex-1 acea-row row-middle">
- <span v-for="(item, index) in couponList" class="coupon_label">{{
- item.minPrice === 0
- ? "无门槛减" + item.money
- : "满" + item.minPrice + "减" + item.money
- }}</span>
- </view>
- <view class="coupon_more" @click="couponTap">领券<text class="iconfont icon-you"></text>
- </view>
- </view>
- <view class="share acea-row row-between row-middle">
- <view class="introduce tui-skeleton-rect line2 lineWidth">{{ productInfo.name }}
- </view>
- <!-- 收藏 -->
- <view v-show="productType !== ProductTypeEnum.Integral" @click="setCollect" class="item tui-skeleton-rect">
- <view class="iconfont icon-shoucang1 " :class="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ? 'color-normal'
- : 'color-change'
- "
- v-if="userCollect"></view>
- <view class="iconfont icon-shoucang" v-else></view>
- </view>
- <!-- <view class="iconfont icon-fenxiang" @click="listenerActionSheet"></view> -->
- </view>
- </view>
- <view class="label acea-row row-between-wrapper" v-if="!dataItem">
- <view class="tui-skeleton-rect" v-if="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ">
- 价格¥{{ attr.productSelect.otPrice || 0 }}</view>
- <view class="tui-skeleton-rect" v-else>
- {{
- productType === ProductTypeEnum.Integral
- ? "价格:"
- : "价格:"
- }}¥{{
- productType === ProductTypeEnum.Integral
- ? attr.productSelect.cost
- : attr.productSelect.otPrice || 0
- }}
- </view>
- <!-- 拼团库存 -->
- <view class="tui-skeleton-rect" v-if="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ">
- 库存:{{ attr.productSelect.stock>0?attr.productSelect.groupStock:0}}{{ productInfo.unitName || "" }}
- </view>
- <!-- 普通库存 -->
- <view class="tui-skeleton-rect" v-else>
- 库存:{{ attr.productSelect.stock || 0}}{{ productInfo.unitName || "" }}
- </view>
- <!-- 拼团销量 -->
- <view class="tui-skeleton-rect" v-if="
- marketingType === ProductMarketingTypeEnum.Groupbuying
- ">
- {{`销量:${groupBuyActivityResponse.sales}`}}{{ productInfo.unitName || "" }}
- </view>
- <!-- 其他销量 -->
- <view class="tui-skeleton-rect" v-if="
- marketingType !== ProductMarketingTypeEnum.Groupbuying
- ">
- {{
- productType === ProductTypeEnum.Integral
- ? "已兑换:"
- : "销量:"
- }}{{
- Math.floor(productInfo.sales) +
- Math.floor(productInfo.ficti) || 0
- }}{{ productInfo.unitName || "" }}
- </view>
- </view>
- <view class="coupon acea-row row-between-wrapper" v-if="activityH5.length">
- <view class="line1 acea-row">
- <text class="activityName tui-skeleton-rect">活 动:</text>
- <view v-for="(item, index) in activityH5" :key="index" @click="goActivity(item)" class="activityBox">
- <view v-if="item.type === '1'" class="tui-skeleton-rect" :class="
- index == 0
- ? 'activity_pin'
- : '' || index == 1
- ? 'activity_miao'
- : '' || index == 2
- ? 'activity_kan'
- : ''
- ">
- <text class="iconfonts iconfont icon-miaosha1"></text>
- <text class="activity_title"> 参与秒杀</text>
- </view>
- <view class="tui-skeleton-rect" :class="
- index == 0
- ? 'activity_pin'
- : '' || index == 1
- ? 'activity_miao'
- : '' || index == 2
- ? 'activity_kan'
- : ''
- "
- v-if="item.type === '2'">
- <text class="iconfonts iconfont icon-kanjia"></text>
- <text class="activity_title"> 参与砍价</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 规格、保障服务 -->
- <view class="attribute mb20 borRadius14 tui-skeleton-rect" v-if="!dataItem">
- <view class="acea-row row-between-wrapper" @click="selecAttr">
- <view class="line1 text-666">{{ attrTxt }}:
- <text class="atterTxt text-333">{{ attrValue }}</text>
- </view>
- <view class="iconfont icon-jiantou"></view>
- </view>
- <view class="acea-row row-between-wrapper" style="margin-top: 7px; padding-left: 55px" v-if="skuImage.length > 1">
- <view class="flex">
- <image :src="item" v-for="(item, index) in skuImage" :key="index" class="attrImg"></image>
- </view>
- <view class="switchTxt">共{{ skuArr.length }}种规格可选</view>
- </view>
- <view v-if="guaranteeList.length > 0" class="acea-row row-between-wrapper" @click="assureDrawer = true" style="margin-top: 45rpx">
- <view class="line1 tui-skeleton-fillet">
- <text class="text-666 fw-bold">保 障:</text>
- <text class="text-333 tui-skeleton-fillet" v-for="(item, index) in guaranteeList" :key="index">{{ item.name }}
- ·
- </text>
- </view>
- <view class="iconfont icon-jiantou"></view>
- </view>
- </view>
- </view>
- </view>
- <!-- 正在拼团 -->
- <group-doing :processItem="groupBuyActivityResponse.processItem" :groupBuyActivityResponse="groupBuyActivityResponse"
- @toGroup="toGroup" v-if="
- marketingType === ProductMarketingTypeEnum.Groupbuying &&
- groupBuyActivityResponse.showGroup
- "></group-doing>
- <!-- 拼团玩法 -->
- <group-playing v-if="marketingType === ProductMarketingTypeEnum.Groupbuying"></group-playing>
- <!-- 评价 -->
- <view v-show="productType !== ProductTypeEnum.Integral && replyCount > 0" id="past1" class="borderPad">
- <view class="userEvaluation tui-skeleton-rect">
- <view class="title acea-row row-between-wrapper" :style="
- replyCount == 0
- ? 'border-bottom-left-radius:14rpx;border-bottom-right-radius:14rpx;'
- : ''
- ">
- <view>用户评价<i>({{ replyCount }})</i></view>
- <navigator class="praise" hover-class="none" :url="
- '/pages/goods/goods_comment_list/index?productId=' +
- (Number(masterProductId) > 0 ? masterProductId : id)
- ">
- <i>好评</i> <text :class="
- (marketingType === ProductMarketingTypeEnum.Groupbuying||productType === ProductTypeEnum.Integral)
- ? 'groupColor'
- : 'font_color'
- "
- class=" px-12">{{ $util.$h.Mul(replyChance, 100) || 0 }}%</text>
- <text class="iconfont icon-jiantou"></text>
- </navigator>
- </view>
- <block v-if="replyCount">
- <userEvaluation :reply="reply"></userEvaluation>
- </block>
- </view>
- </view>
- <!-- 店铺 判断一下是首页进来就显示店铺 详情进来不显示 0不显示 -->
- <block v-if="iSshop==1">
- <view class="borderPad" v-if="
- productType !== ProductTypeEnum.Integral &&
- marketingType !== ProductMarketingTypeEnum.Groupbuying
- ">
- <view class="superior borRadius14" v-if="merchantInfo">
- <merHome :merchantInfo="merchantInfo" :merId="productInfo.merId" type="home" :isShowTypeId="isShowTypeId" v-if="merchantInfo"></merHome>
- <view class="slider-banner banner">
- <view class="list acea-row row-middle">
- <view class="item" v-for="(val, indexw) in merchantInfo.proList" :key="indexw" @click="goDetail(val.id)">
- <view class="pictrue relative">
- <view v-show="val.stock===0" class="sellOut">已售罄</view>
- <easy-loadimage mode="widthFix" :image-src="val.image"></easy-loadimage>
- </view>
- <view class="name line1">{{ val.name }}</view>
- <view class="money theme_price">¥{{ val.price }}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
- <!-- 产品详情 -->
- <view class="product-intro detailText" id="past2" v-if="!dataItem">
- <view class="title">
- <image src="../static/images/xzuo.png"></image>
- <span class="sp">产品详情</span>
- <image src="../static/images/xyou.png"></image>
- </view>
- <view class="conter borRadius14">
- <view class="borRadius14">
- <!-- #ifdef MP || APP-PLUS -->
- <mp-html :content="description" :tag-style="tagStyle" />
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <view v-html="description" class="w-100-p111-"></view>
- <!-- #endif -->
- </view>
- </view>
- </view>
- <view style="height: 120rpx"></view>
- </scroll-view>
- </view>
- <!-- 脚部按钮 -->
- <!-- 管理 -->
- <view class="footer acea-row row-between-wrapper" :class="dataItem ? 'flex-between-center-sc' : ''">
- <view class="manageCount" v-if="isManage && (dataItem.saleStatus == 0 || dataItem.saleStatus == 4)">
- <view class="follow_btn author-focused flex-around-center" @click.stop="handleManage">
- <view class="line-heightOne">管理</view>
- </view>
- </view>
- <button hover-class="none" class="item tui-skeleton-rect flex-col flex-center" @click="shoucangClick" v-if="isManage == 0 && dataItem">
- <text v-if="!dataItem.isConcerned" class="iconfont icon-shoucangbenzhan mb-10"></text>
- <text v-else class="iconfont icon-wodeshoucang mb-10"></text>
- {{ dataItem.isConcerned ? '已收藏' : '收藏' }}
- </button>
- <!-- #ifdef MP -->
- <button hover-class="none" class="item tui-skeleton-rect" @click="kefuClick" v-if="chatConfig.telephone_service_switch === 'true'">
- <view class="iconfont icon-kefu"></view>
- <view>客服</view>
- </button>
- <!-- <button open-type="contact" hover-class="none" class="item tui-skeleton-rect" v-else>
- <view class="iconfont icon-kefu"></view>
- <view>客服</view>
- </button> -->
- <!-- #endif -->
- <!-- #ifndef MP -->
- <view class="item tui-skeleton-rect" @click="kefuClick">
- <view class="iconfont icon-kefu"></view>
- <view>客服</view>
- </view>
- <!-- #endif -->
- <!-- <navigator v-show="productType !== ProductTypeEnum.Integral"
- :url="`/pages/merchant/home/index?merId=${productInfo.merId}`" hover-class="none">
- <view class="item tui-skeleton-rect">
- <view class="iconfont icon-dianpu1"></view>
- <view>店铺</view>
- </view>
- </navigator> -->
- <!-- <navigator v-show="productType !== ProductTypeEnum.Integral" open-type="switchTab"
- class="animated item tui-skeleton-rect" :class="animated == true ? 'bounceIn' : ''"
- url="/pages/order_addcart/order_addcart" hover-class="none">
- <view class="iconfont icon-gouwuche1">
- <text v-if="Math.floor(CartCount) > 0" class="num bg_color">{{
- CartCount
- }}</text>
- </view>
- <view>购物车</view>
- </navigator> -->
- <!-- 普通商品 -->
- <block v-if="marketingType === ProductMarketingTypeEnum.Normal">
- <view class="bnt acea-row" v-if="attr.productSelect.stock <= 0">
- <form report-submit="true">
- <button class="longBnts bg-color-hui" form-type="submit" :class="
- productType == ProductTypeEnum.Integral ? 'w-640rpx' : ''
- ">
- 已售罄
- </button>
- </form>
- </view>
- <view class="bnt acea-row tui-skeleton-rect" v-else>
- <!-- 正常商品 -->
- <block v-if="productType === ProductTypeEnum.Normal">
- <form v-show="productInfo.systemFormId == 0" @submit="joinCart" report-submit="true">
- <!-- <button class="joinCart bnts" form-type="submit">
- 加入购物车
- </button> -->
- </form>
- <form @submit="goBuy" report-submit="true" v-if="!dataItem">
- <button style="border-radius: 0;" :class="productInfo.systemFormId == 0 ? 'bnts' : 'longBnts'" class="buy"
- form-type="submit">
- 立即购买
- </button>
- </form>
- <form @submit="goSecondHand" report-submit="true" v-if="dataItem && dataItem.authorId !== uid && dataItem.saleStatus == 0">
- <button style="border-radius: 0;" :class="productInfo.systemFormId == 0 ? 'bnts' : 'longBnts'" class="buy"
- form-type="submit">
- 立即购买
- </button>
- </form>
- </block>
- <!-- 积分商品 -->
- <block v-else-if="productType === ProductTypeEnum.Integral">
- <form @submit="goBuy" report-submit="true">
- <button class="longBnts w-640rpx" :class="
- productPrice.redeemIntegral > integral
- ? 'bg-color-hui'
- : 'bg-red'
- "
- :disabled="productPrice.redeemIntegral > integral" form-type="submit">
- 立即兑换
- </button>
- </form>
- </block>
- <!-- 虚拟商品 -->
- <view v-else class="bnt bntVideo acea-row">
- <form @submit="goBuy" report-submit="true">
- <button class="buy bg-color longBnts" form-type="submit">
- 立即购买
- </button>
- </form>
- </view>
- </view>
- </block>
- <!-- 除去二级类型是普通商品的售罄按钮 -->
- <view v-if="
- (attr.productSelect.stock <= 0 ||
- (attr.productSelect.groupStock <= 0 &&
- marketingType === ProductMarketingTypeEnum.Groupbuying)) &&
- marketingType !== ProductMarketingTypeEnum.Normal
- "
- class="bnt bntVideo acea-row">
- <form report-submit="true">
- <button class="longBnts bg-color-hui" :class="
- productType === ProductTypeEnum.Integral ? 'w-640rpx' : ''
- "
- form-type="submit">
- 已售罄
- </button>
- </form>
- </view>
- <view class="bnt acea-row" v-if="
- marketingType === ProductMarketingTypeEnum.Groupbuying &&
- attr.productSelect.groupStock > 0 &&
- groupBuyActivityResponse.buyLimitCount == 0
- ">
- <form report-submit="true">
- <button class="longBnts bg-color-hui" form-type="submit">
- 超出限购数量
- </button>
- </form>
- </view>
- <!-- 秒杀商品 -->
- <view v-if="
- seckillStatus !== 1 &&
- marketingType === ProductMarketingTypeEnum.Seckill &&
- attr.productSelect.stock > 0
- "
- class="bnt acea-row">
- <form @submit="goDetail(masterProductId)" report-submit="true">
- <button class="joinCart bnts" form-type="submit">直接购买</button>
- </form>
- <form report-submit="true">
- <button class="bg-color-hui bnts" form-type="submit">
- {{ seckillStatus === 0 ? "活动已结束" : "活动未开始" }}
- </button>
- </form>
- </view>
- <!-- 秒杀商品、视频号商品购买 -->
- <view v-if="
- attr.productSelect.stock > 0 &&
- (productType === ProductTypeEnum.Video ||
- (marketingType === ProductMarketingTypeEnum.Seckill &&
- seckillStatus === 1))
- "
- class="bnt bntVideo acea-row">
- <form @submit="goBuy" report-submit="true">
- <button class="buy bg-color longBnts" form-type="submit">
- 立即购买
- </button>
- </form>
- </view>
- <!-- 拼团商品单独购买/开团 -->
- <view class="bnt acea-row tui-skeleton-rect" v-if="
- !(
- marketingType !== ProductMarketingTypeEnum.Groupbuying ||
- attr.productSelect.groupStock <= 0 ||
- (attr.productSelect.groupStock > 0 &&
- groupBuyActivityResponse.buyLimitCount == 0) ||
- attr.productSelect.stock == 0 ||
- groupRecordId != 0
- )
- ">
- <form @submit="toAloneBuy" report-submit="true" v-if="productInfo.isShow">
- <button class="joinCart bnts groupJoin" form-type="submit">单独购买</button>
- </form>
- <form @submit="goBuy" report-submit="true">
- <button :class="productInfo.isShow?'group-buy':'group-buy2'" class=" bnts" form-type="submit">立即开团</button>
- </form>
- </view>
- <view class="bnt acea-row tui-skeleton-rect" v-if="
- groupRecordId != 0 &&
- attr.productSelect.stock > 0 &&
- attr.productSelect.groupStock > 0 &&
- groupBuyActivityResponse.buyLimitCount != 0
- ">
- <form @submit="goBuy" report-submit="true">
- <button class="spredGroupStyle" form-type="submit">立即参团</button>
- </form>
- </view>
- </view>
- <!-- 组件 -->
- <productWindow :attr="attr" :isShow="1" :iSplus="1" @myevent="onMyEvent" @ChangeAttr="ChangeAttr" @ChangeCartNum="ChangeCartNum"
- @attrVal="attrVal" @iptCartNum="iptCartNum" id="product-window" @getImg="showImg" :productType="productType"
- :marketingType="marketingType" :groupBuyActivityResponse="groupBuyActivityResponse" @buyLimit="buyLimit">
- </productWindow>
- <couponListWindow :coupon="coupon" :typeNum="couponDeaultType[0].useType" @ChangCouponsClone="ChangCouponsClone"
- @ChangCoupons="ChangCoupons" @ChangCouponsUseState="ChangCouponsUseState" @tabCouponType="tabCouponType"></couponListWindow>
- <!-- 分享按钮 -->
- <view class="generate-posters" :class="posters ? 'on' : ''">
- <view class="generateCon acea-row row-middle">
- <!-- #ifndef MP -->
- <button class="item" hover-class="none" v-if="weixinStatus === true" @click="H5ShareBox = true">
- <view class="pictrue">
- <image src="../static/images/weixin.png"></image>
- </view>
- <view class="">分享给好友</view>
- </button>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <button class="item" open-type="share" hover-class="none">
- <view class="pictrue">
- <image src="../static/images/weixin.png"></image>
- </view>
- <view class="">分享给好友</view>
- </button>
- <!-- #endif -->
- <!-- #ifdef APP-PLUS -->
- <view class="item" @click="appShare('WXSceneSession')">
- <view class="iconfont icon-weixin3"></view>
- <view class="">微信好友</view>
- </view>
- <view class="item" @click="appShare('WXSenceTimeline')">
- <view class="iconfont icon-pengyouquan"></view>
- <view class="">微信朋友圈</view>
- </view>
- <!-- #endif -->
- <!-- #ifdef H5 || MP -->
- <view class="item" @click="getpreviewImage">
- <view class="pictrue">
- <image src="../static/images/changan.png"></image>
- </view>
- <view class="">预览发图</view>
- </view>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <button class="item" hover-class="none" @click="savePosterPath">
- <view class="pictrue">
- <image src="../static/images/haibao.png"></image>
- </view>
- <view class="">保存海报</view>
- </button>
- <!-- #endif -->
- </view>
- <view class="generateClose acea-row row-center-wrapper" @click="posterImageClose">取消</view>
- </view>
- <!-- 查看规格商品图 -->
- <cus-previewImg ref="cusPreviewImg" :list="skuArr" @changeSwitch="changeSwitch" @shareFriend="listenerActionSheet" />
- <view class="mask" v-if="posters" @click="closePosters"></view>
- <view class="mask" v-if="canvasStatus"></view>
- <view class="mask_transparent" v-if="currentPage" @touchmove="hideNav" @click="hideNav()"></view>
- <!-- 海报展示 -->
- <view class="poster-pop" v-if="canvasStatus">
- <image :src="imagePath"></image>
- </view>
- <view class="canvas" v-else>
- <canvas style="width: 750px; height: 1190px" canvas-id="firstCanvas"></canvas>
- <canvas canvas-id="qrcode" :style="{ width: `${qrcodeSize}px`, height: `${qrcodeSize}px` }" />
- </view>
- <!-- 发送给朋友图片 -->
- <view class="share-box" v-if="H5ShareBox">
- <image :src="urlDomain + 'crmebimage/presets/share-info.png'" @click="H5ShareBox = false"></image>
- </view>
- <!-- 保障服务弹窗 -->
- <tui-drawer mode="bottom" :visible="assureDrawer" @close="closeAssure">
- <view class="ensure">
- <view @click="closeAssure" class="title">保障服务<text class="iconfont icon-guanbi5"></text></view>
- <view class="list">
- <view class="item acea-row" v-for="(item, index) in guaranteeList" :key="index">
- <view class="pictrue">
- <!-- <image :src="item.icon"></image> -->
- <text :class="(marketingType === ProductMarketingTypeEnum.Groupbuying||productType === ProductTypeEnum.Integral)?'activityIcon':'iconColor'"
- class="iconfont icon-gou2"></text>
- </view>
- <view class="text">
- <view class="name">{{ item.name }}</view>
- <view>{{ item.content }}</view>
- </view>
- </view>
- </view>
- <view class="activityBtn" :class="(marketingType === ProductMarketingTypeEnum.Groupbuying||productType === ProductTypeEnum.Integral)?'bg-red':'bnt'"
- @click="assureDrawer = false">完成</view>
- </view>
- </tui-drawer>
- </view>
- <!-- 管理弹窗 -->
- <uni-popup type="bottom" ref="manageRef">
- <view class="manage">
- <popup-header title="内容管理" @close="closeManage"></popup-header>
- <navigator hover-class="none" :url="`/pages/discover/discover_release/index?fair=${true}¬eId=${dataItem.id}`"
- class="items" v-if="isManage && dataItem.saleStatus == 0">
- <text>编辑</text>
- </navigator>
- <view v-if="isManage && (dataItem.saleStatus == 0 || dataItem.saleStatus == 4)" class="items" @click.stop="deleteTopic(dataItem)">
- <text>删除</text>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import uQRCode from "@/js_sdk/Sansnn-uQRCode/uqrcode.js";
- import {
- HTTP_H5_URL
- } from "@/config/app.js";
- import {
- getProductDetail,
- collectAdd,
- collectCancel,
- postCartAdd,
- getReplyConfig,
- getReplyProduct,
- } from "@/api/product.js";
- import {
- getCoupons,
- tokenIsExistApi
- } from "@/api/api.js";
- import {
- merCustomerApi
- } from "@/api/merchant.js";
- import {
- getCartCounts
- } from "@/api/order.js";
- import {
- toLogin
- } from "@/libs/login.js";
- import {
- secondHandDelApi,
- secondHandConcernedDelApi,
- secondHandDetailApi,
- secondHandReplyLikeApi
- } from '@/api/discover.js';
- import {
- mapGetters
- } from "vuex";
- import {
- imageBase64
- } from "@/api/public";
- import {secondHandOrderId} from '@/api/secondHand.js';
- import productConSwiper from "../components/productConSwiper/index.vue";
- import couponListWindow from "../components/getCoponWindow";
- import productWindow from "@/components/productWindow";
- import userEvaluation from "../components/userEvaluation";
- import cusPreviewImg from "../components/cus-previewImg/cus-previewImg.vue";
- import merHome from "@/components/merHome/index.vue";
- import mpHtml from "@/uni_modules/mp-html/components/mp-html/mp-html.vue";
- import {
- silenceBindingSpread
- } from "@/utils";
- import parser from "../components/jyf-parser/jyf-parser";
- import tuiDrawer from "../components/tui-drawer/index.vue";
- import tuiSkeleton from "@/components/base/tui-skeleton.vue";
- import easyLoadimage from "@/components/base/easy-loadimage.vue";
- import svipPrice from "@/components/svipPrice.vue";
- // #ifdef MP
- import {
- base64src
- } from "@/utils/base64src.js";
- import {
- mpQrcode
- } from "@/api/api.js";
- // #endif
- let app = getApp();
- import {
- setThemeColor
- } from "@/utils/setTheme.js";
- import {
- Debounce
- } from "@/utils/validate.js";
- import {
- chatConfig
- } from "@/utils/consumerType.js";
- import {
- goProductDetail
- } from "@/libs/order.js";
- import seckillCard from "./components/seckillCard.vue";
- import groupCard from "./components/groupCard.vue";
- import groupPlaying from "./components/groupPlaying.vue";
- import groupDoing from "./components/groupDoing.vue";
- import activityStyle from "./components/activityStyle.vue";
- import navBar from '@/components/navBar';
- import {
- onGetPreOrder,
- onGetPreSecondHandOrder
- } from "@/libs/order";
- import * as filters from "@/filters";
- import {
- ProductMarketingTypeEnum,
- ProductTypeEnum,
- } from "@/enums/productEnums";
- import useActivity from "@/mixins/useActivity";
- import Cache from "../../../utils/cache";
- let sysHeight = uni.getSystemInfoSync().statusBarHeight;
- export default {
- mixins: [useActivity],
- components: {
- productConSwiper,
- couponListWindow,
- productWindow,
- userEvaluation,
- cusPreviewImg,
- merHome,
- "jyf-parser": parser,
- tuiDrawer,
- tuiSkeleton,
- easyLoadimage,
- seckillCard,
- activityStyle,
- svipPrice,
- groupCard,
- groupPlaying,
- groupDoing,
- mpHtml,
- navBar
- },
- data() {
- return {
- ProductMarketingTypeEnum: ProductMarketingTypeEnum,
- ProductTypeEnum: ProductTypeEnum,
- urlDomain: this.$Cache.get("imgHost"),
- sysHeight: sysHeight,
- showSkeleton: true, //骨架屏显示隐藏
- isNodes: 0, //控制什么时候开始抓取元素节点,只要数值改变就重新抓取
- //属性是否打开
- coupon: {
- coupon: false,
- type: 2,
- list: [],
- count: [],
- },
- attrTxt: "请选择", //属性页面提示
- attrValue: "", //已选属性
- animated: false, //购物车动画
- id: 0, //商品id
- replyCount: 0, //总评论数量
- reply: [], //评论列表
- productInfo: {}, //商品详情
- productValue: [], //系统属性
- couponList: [], //优惠券
- cart_num: 1, //购买数量
- isOpen: false, //是否打开属性组件
- actionSheetHidden: true,
- storeImage: "", //海报产品图
- PromotionCode: "", //二维码图片
- posterbackgd: "../static/images/posterbackgd.png",
- pinkbackgd: "../static/images/pink_share.png",
- pinkWhiteBg: "../static/images/whiteBg.png",
- sharePacket: {
- isState: true, //默认不显示
- touchstart: false,
- }, //分销商详细
- circular: false,
- autoplay: false,
- interval: 3000,
- duration: 500,
- clientHeight: "",
- systemStore: {}, //门店信息
- good_list: [],
- replyChance: 0,
- CartCount: 0,
- isDown: true,
- posters: false,
- weixinStatus: false,
- attr: {
- cartAttr: false,
- productAttr: [],
- productSelect: {},
- },
- description: "",
- navActive: 0,
- H5ShareBox: false, //公众号分享图片
- activityH5: [],
- retunTop: true, //顶部返回
- navH: "",
- navList: [],
- opacity: 0,
- scrollY: 0,
- topArr: [],
- height: 0,
- heightArr: [],
- lock: false,
- scrollTop: 0,
- tagStyle: {
- img: "width:100%;display:block;",
- table: "width:100%",
- video: "width:100%",
- },
- sliderImage: [],
- videoLink: "",
- qrcodeSize: 600,
- canvasStatus: false, //是否显示海报
- imagePath: "", //海报路径
- imgTop: "",
- errT: "",
- homeTop: 59,
- navbarRight: 0,
- userCollect: false,
- options: null,
- returnShow: true, //判断顶部返回是否出现
- marketingType: 0, //视频号普通商品营销类型
- theme: app.go,
- indicatorBg: "",
- shareStatus: true,
- skuArr: [],
- currentPage: false,
- selectSku: "",
- selectNavList: [{
- name: "首页",
- icon: "icon-shouye8",
- url: "/pages/index/index",
- after: "dialog_after",
- },
- {
- name: "搜索",
- icon: "icon-sousuo6",
- url: "/pages/goods/goods_list/index",
- after: "dialog_after",
- },
- {
- name: "购物车",
- icon: "icon-gouwuche7",
- url: "/pages/order_addcart/order_addcart",
- after: "dialog_after",
- },
- {
- name: "我的收藏",
- icon: "icon-shoucang3",
- url: "/pages/goods/user_goods_collection/index",
- after: "dialog_after",
- },
- {
- name: "个人中心",
- icon: "icon-gerenzhongxin1",
- url: "/pages/user/index",
- },
- ],
- defaultCoupon: [],
- couponDeaultType: [{
- useType: 1,
- }, ],
- guaranteeList: [],
- assureDrawer: false,
- merchantInfo: {},
- isShowTypeId: false,
- serviceConfig: {},
- seckillStatus: 0,
- seckillTime: null,
- homeTopApp: 0,
- shareRight: 0,
- searchHeight: 0,
- masterProductId: 0, //活动商品中主商品id
- tokenIsExist: false, //校验token是否有效
- publicLoginType: app.globalData.publicLoginType, //公众号登录方式(单选),1微信授权,2手机号登录
- productType: 0, //商品类型 0=普通商品,1-积分商品,2-虚拟商品,4=视频号,5-云盘商品,6-卡密商品
- //普通价格
- svipPriceStyle: {
- svipBox: {
- height: "34rpx",
- borderRadius: "60rpx 56rpx 56rpx 20rpx",
- },
- icon: {
- fontSize: "23rpx",
- height: "34rpx",
- borderRadius: "16rpx 0 16rpx 2rpx",
- },
- price: {
- fontSize: "44rpx",
- },
- svipPrice: {
- fontSize: "27rpx",
- },
- topStyle: {
- top: "6rpx",
- },
- },
- productPrice: {
- price: "",
- vipPrice: "",
- isPaidMember: false, //是否是付费会员商品
- redeemIntegral: 0,
- },
- //svip价格
- svipIconStyle: {
- svipBox: {
- height: "34rpx",
- borderRadius: "36rpx 40rpx 40rpx 0.4rpx",
- },
- price: {
- fontSize: "44rpx",
- },
- svipPrice: {
- fontSize: "22rpx",
- },
- },
- groupBuyActivityResponse: "",
- groupActivityId: "",
- buyLimitNum: "",
- groupRecordId: 0,
- isPink: 0,
- skuImage: [], //规格小图
- iSshop: 0, //判断是否显示店铺
- cart: [],
- dataItem: null,
- isManage: false
- };
- },
- computed: {
- ...mapGetters(["isLogin", "uid", "chatUrl", "globalData"]),
- shareStyle() {
- return {
- top: this.homeTopApp + 'px',
- right: this.shareRight + 'px',
- // #ifdef MP
- width: this.searchHeight + 'px',
- height: this.searchHeight + 'px',
- lineHeight: this.searchHeight - 2 + 'px',
- borderRadius: this.searchHeight / 2 + 'px',
- // #endif
- }
- }
- },
- watch: {
- isOpen(nVal) {
- if (!nVal && this.isPink) {
- this.groupRecordId = 0;
- }
- },
- },
- created() {
- var pages = getCurrentPages();
- this.returnShow = pages.length === 1 ? false : true;
- //用户从分享卡片进入的场景下获取主题色配置
- this.$set(this, "theme", this.$Cache.get("theme"));
- //判断顶部返回是否出现
- var pages = getCurrentPages();
- this.returnShow = pages.length === 1 ? false : true;
- if (pages.length <= 1) {
- this.retunTop = false;
- }
- //页面中需要计算的一些值
- // #ifdef MP
- const res = uni.getMenuButtonBoundingClientRect()
- this.homeTopApp = res.top; //胶囊距离顶部
- this.searchHeight = res.height;
- this.shareRight = res.width + 15;
- // #endif
- // #ifdef APP
- this.homeTopApp = this.sysHeight + 6;
- this.shareRight = 15
- // #endif
- // #ifdef H5
- this.homeTopApp = 9;
- this.shareRight = 50
- // #endif
- this.navH = this.globalData.navHeight;
- let that = this;
- uni.getSystemInfo({
- success: function(res) {
- that.height = res.windowHeight;
- //res.windowHeight:获取整个窗口高度为px,*2为rpx;98为头部占据的高度;
- // #ifndef APP-PLUS || H5 || MP-ALIPAY
- that.navbarRight =
- res.windowWidth - uni.getMenuButtonBoundingClientRect().left;
- // #endif
- },
- });
- },
- onLoad(options) {
- //获取浏览器传来的对象
- let _this = this;
- this.options = options;
- this.isManage = +options.isManage
- if (options.cart) {
- this.cart = JSON.parse(options.cart) || []
- }
- if (options.dataItem) {
- this.dataItem = JSON.parse(options.dataItem) || {}
- this.getSecondHandDetailApi()
- this.productPrice.price = this.dataItem.price || '';
- }
- console.log(this.dataItem)
- this.iSshop = this.options.iSshop //判断显示店铺
- //获取浏览器秒杀状态、秒杀时间
- if (options.status) this.seckillStatus = Number(options.status); //秒杀状态
- if (options.datatime) this.seckillTime = Number(options.datatime); //秒杀时间
- if (options.gd) this.groupActivityId = options.gd; //拼团活动id
- if (options.rd) this.groupRecordId = options.rd; //是否为参团
- if (options.sd) this.$store.commit('Change_Spread', options.sd); //分享id
- //获取浏览器中的参数,商品id,商品类型type,普通normal,秒杀seckill,砍价,拼团,视频号video
- if (!options.scene && !options.id) {
- this.showSkeleton = false;
- this.$util.Tips({
- title: "缺少参数无法查看商品",
- }, {
- url: "/pages/index/index",
- });
- return;
- }
- if (options.id) this.id = options.id;
- //订单中跳入商品详情,点击进入商品详情获取商品类型
- //marketingType商品类型:0-普通,1-秒杀seckill,2-拼团
- this.marketingType = Number(options.mt);
- // 仅仅小程序扫码进入获取商品id,商品类型
- if (options.scene) {
- let value = this.$util.getUrlParams(decodeURIComponent(options.scene));
- this.id = value.id ? value.id : "";
- this.marketingType = Number(value.mt);
- if (value.sd) this.$store.commit('Change_Spread', value.sd);
- if (value.gd) this.groupActivityId = value.gd; //拼团活动id
- if (value.rd) this.groupRecordId = value.rd; //是否为参团
- //this.type = value.type ? value.type : 'normal';
- }
- //商品类型存入vuex中
- this.$store.commit("PRODUCT_TYPE", this.marketingType);
- //商品详情
- !this.dataItem ? this.getGoodsDetails() : this.showSkeleton = false;
- this.indicatorBg = setThemeColor();
- },
- onShow() {
- //校验token是否有效,true为有效,false为无效
- this.getTokenIsExist();
- !this.dataItem ? this.getGoodsDetails() : this.showSkeleton = false;
- },
- onReady() {
- this.isNodes++;
- this.$nextTick(function() {
- // #ifdef MP
- const menuButton = uni.getMenuButtonBoundingClientRect();
- const query = uni.createSelectorQuery().in(this);
- query
- .select("#home")
- .boundingClientRect((data) => {
- // 加强判断 data 是否有效并且包含 height
- const homeHeight = (data && data.height) ? data.height : 0; // 如果 data 存在且有 height,则使用 height,否则使用 0
- this.homeTop = menuButton.top * 2 + menuButton.height - homeHeight;
- // this.homeTop = menuButton.top * 2 + menuButton.height - data.height;
- })
- .exec();
- // #endif
- });
- },
- // 滚动监听
- onPageScroll(e) {
- // 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
- uni.$emit("scroll");
- },
- // #ifdef MP
- /**
- * 用户点击右上角分享到朋友圈
- */
- onShareTimeline() {
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- query: `id=${this.id}&mt=${this.marketingType}&gd=${this.groupActivityId}&sd=${this.uid}`,
- };
- } else {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- query: `id=${this.id}&mt=${this.marketingType}&sd=${this.uid}`,
- };
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage(res) {
- this.$set(this, "actionSheetHidden", !this.actionSheetHidden);
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- path: `/pages/goods/goods_details/index?id=${this.id}&mt=${this.marketingType}&gd=${this.groupActivityId}&sd=${this.uid}`,
- };
- } else {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- path: `/pages/goods/goods_details/index?id=${this.id}&mt=${this.marketingType}&sd=${this.uid}`,
- };
- }
- },
- // #endif
- methods: {
- //关闭操作管理
- closeManage() {
- this.$refs.manageRef.close();
- },
- //操作管理
- handleManage() {
- this.$refs.manageRef.open('bottom');
- },
- // 删除内容
- deleteTopic(noteDetails) {
- let that = this;
- uni.showModal({
- content: '确定要删除该内容么?',
- success: function(res) {
- if (res.confirm) {
- secondHandDelApi(noteDetails.id).then(res => {
- that.$util.Tips({
- title: '删除成功'
- });
- setTimeout(function() {
- uni.redirect({
- url: '/pages/trade_fair/trade_fair_user/index'
- })
- }, 1000);
- }).catch(err => {
- uni.showToast({
- title: err,
- icon: 'none'
- })
- });
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- },
- //滚动
- touchStart() {
- this.$refs.navBarRef.currentPage = false;
- },
- getShareInfo() {
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- path: `/pages/goods/goods_details/index?id=${this.id}&mt=${this.marketingType}&gd=${this.groupActivityId}&sd=${this.uid}`,
- };
- } else {
- return {
- title: this.productInfo.name || "",
- imageUrl: this.productInfo.image || "",
- path: `/pages/goods/goods_details/index?id=${this.id}&mt=${this.marketingType}&sd=${this.uid}`,
- };
- }
- },
- //去拼团
- toGroup(e) {
- this.goBuy();
- this.groupRecordId = e;
- this.isPink = 1;
- },
- buyLimit(e) {
- this.buyLimitNum = e;
- },
- //校验token是否有效,true为有效,false为无效
- getTokenIsExist() {
- tokenIsExistApi().then((res) => {
- this.tokenIsExist = res.data;
- if (this.isLogin && this.tokenIsExist) {
- this.getUserIntegral(); //获取我的积分
- this.getCouponList();
- this.getCartCount(true);
- }
- silenceBindingSpread(this.isLogin, this.globalData.spread);
- });
- },
- getMerCustomer(id) {
- merCustomerApi(id).then((res) => {
- this.serviceConfig = res.data;
- });
- },
- closeAssure() {
- this.assureDrawer = false;
- },
- // #ifdef APP-PLUS
- appShare(scene) {
- let that = this;
- let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
- let curRoute = routes[routes.length - 1].$page.fullPath; // 获取当前页面路由,也就是最后一个打开的页面路由
- uni.share({
- provider: "weixin",
- scene: scene,
- type: 0,
- href: `${HTTP_H5_URL}${curRoute}&sd=${that.uid}&mt=${this.marketingType}&gd=${this.groupActivityId}`,
- title: that.productInfo.name,
- summary: that.productInfo.intro ? that.productInfo.intro : '',
- imageUrl: that.productInfo.image,
- success: function(res) {
- that.posters = false;
- },
- fail: function(err) {
- uni.showToast({
- title: "分享失败",
- icon: "none",
- duration: 2000,
- });
- that.posters = false;
- },
- });
- },
- // #endif
- kefuClick() {
- if (this.productType === this.ProductTypeEnum.Integral) {
- chatConfig(this.$Cache.getItem("platChatConfig"));
- } else {
- chatConfig(this.serviceConfig);
- }
- },
- getSecondHandDetailApi() {
- let that = this;
- secondHandDetailApi(this.dataItem.id).then((res) => {
- that.dataItem = res.data
-
- if (that.dataItem.saleStatus !== 0) {
- secondHandOrderId(that.dataItem.id).then(res => {
- that.dataItem.orderNo = res.data
- })
- console.log(that.dataItem.orderNo)
- }
- });
- },
- shoucangClick() {
- let that = this;
- secondHandConcernedDelApi(this.dataItem.id).then((res) => {
- let title = that.dataItem.isConcerned ? '收藏成功' : '取消收藏'
- that.$util.Tips({
- title: title,
- });
- that.getSecondHandDetailApi()
- });
- },
- goActivity: function(e) {
- let item = e;
- if (item.type === "1") {
- uni.navigateTo({
- url: `/pages/activity/goods_seckill_details/index?id=${item.id}`,
- });
- } else if (item.type === "2") {
- uni.navigateTo({
- url: `/pages/activity/goods_bargain_details/index?id=${item.id}&startBargainUid=${this.uid}`,
- });
- } else {
- uni.navigateTo({
- url: `/pages/activity/goods_combination_details/index?id=${item.id}`,
- });
- }
- },
- /**
- * 购物车手动填写
- *
- */
- iptCartNum: function(e) {
- this.$set(this.attr.productSelect, "cart_num", e);
- },
- // 后退
- returns: function() {
- uni.navigateBack();
- },
- showNav() {
- this.currentPage = !this.currentPage;
- },
- tap: function(index) {
- var id = "past" + index;
- this.$set(this, "navActive", index);
- this.$set(this, "lock", true);
- this.$set(
- this,
- "scrollTop",
- index > 0 ?
- this.topArr[index] - this.globalData.navHeight / 2 :
- this.topArr[index]
- );
- },
- scroll: function(e) {
- var that = this,
- scrollY = e.detail.scrollTop;
- var opacity = scrollY / 200;
- opacity = opacity > 1 ? 1 : opacity;
- that.$set(that, "opacity", opacity);
- that.$set(that, "scrollY", scrollY);
- if (that.lock) {
- that.$set(that, "lock", false);
- return;
- }
- for (var i = 0; i < that.topArr.length; i++) {
- if (
- scrollY <
- that.topArr[i] - this.globalData.navHeight / 2 + that.heightArr[i]
- ) {
- that.$set(that, "navActive", i);
- break;
- }
- }
- that.$set(that.sharePacket, "touchstart", true); //滑动屏幕时让分享气泡缩回
- uni.$emit("scroll");
- },
- /*
- *去商品详情页
- */
- goDetail(id) {
- goProductDetail(id, 0, "");
- },
- ChangCouponsClone: function() {
- this.$set(this.coupon, "coupon", false);
- },
- /**
- * 购物车数量加和数量减
- *
- */
- ChangeCartNum: function(changeValue, buyLimitNum, type) {
- //changeValue:是否 加|减
- //获取当前变动属性
- let productSelect = this.productValue[this.attrValue];
- //如果没有属性,赋值给商品默认库存
- if (productSelect === undefined && !this.attr.productAttr.length)
- productSelect = this.attr.productSelect;
- //无属性值即库存为0;不存在加减;
- let flag = false;
- if (productSelect.groupStock === null && productSelect.stock === 0) {
- flag = true
- }
- if (productSelect.groupStock != null && (productSelect.stock === 0 || productSelect.groupStock ===
- 0)) {
- flag = true
- }
- if (flag) return;
- let stock;
- if (type == 2) {
- stock = buyLimitNum || 0;
- } else {
- stock = productSelect.stock || 0;
- }
- let num = this.attr.productSelect;
- if (changeValue) {
- num.cart_num++;
- if (num.cart_num > stock) {
- this.$set(this.attr.productSelect, "cart_num", stock);
- this.$set(this, "cart_num", stock);
- }
- } else {
- num.cart_num--;
- if (num.cart_num < 1) {
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "cart_num", 1);
- }
- }
- },
- attrVal(val) {
- this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attrValues[val
- .indexn]);
- },
- checkedAttr(productSelect) {
- this.$set(this.attr.productSelect, "name", this.productInfo.name);
- this.$set(this.attr.productSelect, "image", productSelect.image);
- this.$set(this.attr.productSelect, "price", productSelect.price);
- this.$set(this.attr.productSelect, "stock", productSelect.stock);
- this.$set(this.attr.productSelect, "unique", productSelect.id);
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this.attr.productSelect, "vipPrice", productSelect.vipPrice);
- this.$set(this.attr.productSelect, "otPrice", productSelect.otPrice);
- this.$set(
- this.attr.productSelect,
- "groupPrice",
- productSelect.groupPrice
- );
- this.$set(
- this.attr.productSelect,
- "groupStock",
- productSelect.groupStock
- );
- this.$set(
- this.attr.productSelect,
- "isPaidMember",
- this.productInfo.isPaidMember
- );
- this.$set(
- this.attr.productSelect,
- "redeemIntegral",
- productSelect.redeemIntegral
- );
- this.$set(this.attr.productSelect, "cost", productSelect.cost);
- this.$set(this, "attrTxt", "已选择");
- },
- // 没有规格选择
- noCheckedAttr() {
- this.$set(this.attr.productSelect, "name", this.productInfo.name);
- this.$set(this.attr.productSelect, "image", this.productInfo.image);
- this.$set(this.attr.productSelect, "price", this.productInfo.price);
- this.$set(this.attr.productSelect, "stock", 0);
- this.$set(this.attr.productSelect, "unique", this.productInfo.id);
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this.attr.productSelect, "vipPrice", this.productInfo.vipPrice);
- this.$set(this.attr.productSelect, "otPrice", this.productInfo.otPrice);
- this.$set(this.attr.productSelect, "groupPrice", this.productInfo.groupPrice);
- this.$set(
- this.attr.productSelect,
- "isPaidMember",
- this.productInfo.isPaidMember
- );
- this.$set(
- this.attr.productSelect,
- "redeemIntegral",
- this.productInfo.redeemIntegral
- );
- this.$set(this.attr.productSelect, "cost", this.productInfo.cost);
- this.$set(this, "attrValue", "");
- this.$set(this, "attrTxt", "请选择");
- },
- // 当前展示的金额
- getProductPrice() {
- this.productPrice = {
- price: this.attr.productSelect.price,
- vipPrice: this.attr.productSelect.vipPrice,
- isPaidMember: this.productInfo.isPaidMember, //是否是付费会员商品
- redeemIntegral: this.attr.productSelect.redeemIntegral, //积分
- };
- },
- /**
- * 属性变动赋值
- *
- */
- ChangeAttr: function(res) {
- let productSelect = this.productValue[res];
- this.$set(this, "selectSku", productSelect);
- if (!productSelect) {
- this.$util.Tips({
- title: '重新选择',
- success: () => {
- this.noGoods = true;
- this.attr.productSelect.stock = 0;
- this.attr.productSelect.quota = 0;
- this.attr.productSelect.cartNum = 0;
- this.attr.productSelect.image = this.productInfo.image;
- }
- });
- } else {
- this.checkedAttr(productSelect);
- this.$set(this, "attrValue", res);
- }
- this.getProductPrice();
- },
- /**
- * 领取完毕移除当前页面领取过的优惠券展示
- */
- ChangCoupons: function(e) {
- let coupon = e;
- let couponList = this.$util.ArrayRemove(this.couponList, "id", coupon.id);
- this.getCouponList();
- },
- setClientHeight: function() {
- let that = this;
- if (!that.good_list.length) return;
- let view = uni.createSelectorQuery().in(this).select("#list0");
- view
- .fields({
- size: true,
- },
- (data) => {
- that.$set(that, "clientHeight", data.height + 20);
- }
- )
- .exec();
- },
- /**
- * 获取产品详情
- *
- */
- getGoodsDetails: function() {
- let that = this;
- //that.id, that.marketingType
- getProductDetail(that.id, that.marketingType, 0, this.groupActivityId)
- .then((res) => {
- let data = res.data;
- let productInfo = data.productInfo;
- // 字符串数组转数组;
- let arrayImg = productInfo.sliderImage;
- let sliderImage = JSON.parse(arrayImg);
- if (that.getFileType(sliderImage[0]) == "video") {
- //判断轮播图第一张是否是视频,如果是,就赋值给videoLink,并且将其在轮播图中删除
- this.$set(this, "videoLink", sliderImage[0]);
- sliderImage.splice(0, 1);
- }
- that.productType = productInfo.type; //商品类型 0=普通商品,1-积分商品,2-虚拟商品,4=视频号,5-云盘商品,6-卡密商品
- that.getSeckillInfo(data); // 秒杀
- that.$set(that, "couponList", data.couponList);
- that.$set(that, "sliderImage", sliderImage);
- that.$set(that, "productInfo", productInfo);
- that.$set(that, "masterProductId", data.masterProductId || 0);
- that.$set(that, "merchantInfo", data.merchantInfo);
- that.$set(that, "description", productInfo.content);
- that.$set(that, "userCollect", data.userCollect);
- that.$set(that.attr, "productAttr", data.productAttr);
- that.$set(that, "productValue", data.productValue);
- that.$set(
- that,
- "guaranteeList",
- data.guaranteeList ? data.guaranteeList : []
- );
- data.groupBuyActivityResponse &&
- that.$set(
- that,
- "groupBuyActivityResponse",
- data.groupBuyActivityResponse
- );
- // 获取suk小图
- this.getSkuImage()
- let navList =
- that.productType !== ProductTypeEnum.Integral ? ["商品", "评价", "详情"] : ["商品", "详情"];
- this.$set(that, "navList", navList);
- if (productInfo.merId) that.getMerCustomer(productInfo.merId);
- for (let key in data.productValue) {
- let obj = data.productValue[key];
- that.skuArr.push(obj);
- }
- this.$set(this, "selectSku", that.skuArr[0]);
- uni.setNavigationBarTitle({
- title: productInfo.name.substring(0, 7) + "...",
- });
- let productAttr = this.attr.productAttr.map((item) => {
- return {
- attrName: item.attributeName,
- attrValues: item.optionList.map(items => items.optionName),
- id: item.id,
- isDel: item.isDel,
- productId: item.productId,
- optionList: item.optionList
- // type: item.type,
- };
- });
- this.$set(this.attr, "productAttr", productAttr);
- this.getProductReplyList();
- this.getProductReplyCount();
- //#ifdef H5
- that.make(that.uid);
- that.ShareInfo();
- this.getImageBase64(this.productInfo.image);
- // #endif
- // #ifdef MP
- that.getQrcode();
- // #endif
- setTimeout(function() {
- that.infoScroll();
- }, 500);
- // #ifdef MP
- that.imgTop = data.productInfo.image;
- // #endif
- // #ifndef H5
- that.downloadFilestoreImage();
- // #endif
- that.DefaultSelect();
- this.showSkeleton = false;
- setTimeout(() => {
- this.defaultCoupon = this.coupon.list;
- }, 1000);
- })
- .catch((err) => {
- //状态异常返回上级页面
- that.$util.Tips({
- title: err.toString(),
- }, {
- tab: 3,
- url: 1,
- });
- this.showSkeleton = false;
- });
- },
- // 获取suk小图
- getSkuImage() {
- let sku = []
- let skuTable = []
- this.attr.productAttr.map((item) => {
- item.optionList.map(items => {
- if (items.image) sku.push(items.image)
- });
- })
- const uniqueData = sku.filter((item, index, self) =>
- index === self.findIndex((t) => t === item))
- if (uniqueData.length > 0) {
- this.skuImage = uniqueData
- } else {
- for (let key in this.productValue) {
- let obj = this.productValue[key];
- skuTable.push(obj.image);
- }
- this.skuImage = skuTable.filter((item, index, self) =>
- index === self.findIndex((t) => t === item))
- }
- },
- // 秒杀
- getSeckillInfo(data) {
- let startTimeStamp = data.startTimeStamp; //秒杀开始结束时间戳
- let endTimeStamp = data.endTimeStamp;
- if (
- !this.options.datatime &&
- this.marketingType === ProductMarketingTypeEnum.Seckill
- ) {
- let data = Date.parse(new Date());
- if (Number(data) < Number(startTimeStamp)) {
- this.seckillTime = Number(startTimeStamp) / 1000;
- this.seckillStatus = 2;
- } else if (Number(data) < Number(endTimeStamp)) {
- this.seckillTime = Number(endTimeStamp) / 1000;
- this.seckillStatus = 1;
- } else {
- this.seckillTime = 0;
- this.seckillStatus = 0;
- }
- // seckillStatus 秒杀状态 0=已结束 1=抢购中 2=即将开始 3=明日预告
- }
- },
- getProductReplyList: function() {
- let id =
- Number(this.masterProductId) > 0 ? this.masterProductId : this.id;
- getReplyProduct(id).then((res) => {
- this.reply = res.data.productReply ? [res.data.productReply] : [];
- });
- },
- getProductReplyCount: function() {
- let that = this;
- let id =
- Number(that.masterProductId) > 0 ? that.masterProductId : that.id;
- getReplyConfig(id).then((res) => {
- that.$set(that, "replyChance", res.data.replyChance);
- that.$set(that, "replyCount", res.data.sumCount);
- });
- },
- infoScroll: function() {
- var that = this,
- topArr = [],
- heightArr = [];
- for (var i = 0; i < that.navList.length; i++) {
- //productList
- //获取元素所在位置
- var query = uni.createSelectorQuery().in(this);
- var idView = "#past" + i;
- query.select(idView).boundingClientRect();
- query.exec(function(res) {
- var top = res[0] ? res[0].top : "";
- var height = res[0] ? res[0].height : "";
- topArr.push(top);
- heightArr.push(height);
- that.$set(that, "topArr", topArr);
- that.$set(that, "heightArr", heightArr);
- });
- }
- },
- /**
- * 默认选中属性
- *
- */
- DefaultSelect: function() {
- let productAttr = this.attr.productAttr;
- let value = [];
- let valueobj = [];
- // 先找默认中库存不为0的为默认规格,否则找不是默认中库存不为0的规格
- const productValues = Object.values(this.productValue)
- // 拼团商品中还有groupStock需要判断,拼团与非拼团分判断
- if (this.marketingType === this.ProductMarketingTypeEnum.Groupbuying) {
- const nonZeroDefault = productValues.find(item => item.isDefault && item.stock !== 0 && item
- .groupStock !== 0);
- if (nonZeroDefault) {
- value = productValues.find(item => item.isDefault && item.stock !== 0 && item.groupStock !== 0)
- .sku.split(',');
- } else {
- const haveStock = productValues.find(item => item.stock !== 0 && item.groupStock !== 0)
- if (haveStock) {
- value = productValues.find(item => item.stock !== 0 && item.groupStock !== 0).sku.split(
- ',');
- } else {
- value = [];
- }
- }
- } else {
- const nonZeroDefault = productValues.find(item => item.isDefault && item.stock !== 0);
- if (nonZeroDefault) {
- value = productValues.find(item => item.isDefault && item.stock !== 0).sku.split(',');
- } else {
- const haveStock = productValues.find(item => item.stock !== 0)
- if (haveStock) {
- value = productValues.find(item => item.stock !== 0).sku.split(',');
- } else {
- value = [];
- }
- }
- }
- for (let i = 0; i < value.length; i++) {
- this.$set(productAttr[i], "index", value[i]);
- }
- //sort();排序函数:数字-英文-汉字;
- let productSelect = this.productValue[value.join(",")];
- if (productSelect && productAttr.length) {
- this.checkedAttr(productSelect);
- this.$set(this, "attrValue", value.join(","));
- this.$set(this, "attrTxt", "已选择");
- } else if (!productSelect && productAttr.length) {
- this.noCheckedAttr();
- } else if (!productSelect && !productAttr.length) {
- this.noCheckedAttr();
- }
- this.getProductPrice();
- },
- /**
- * 获取优惠券
- *
- */
- getCouponList() {
- let that = this,
- obj = {
- page: 1,
- limit: 20,
- productId: that.id,
- category: 0,
- };
- getCoupons(obj).then((res) => {
- that.$set(that.coupon, "list", res.data.list);
- });
- },
- async getCouponType() {
- //在onLoad只调用一次,获取默认的类型作为打开优惠券列表的参数,不会随着切换变化
- let dataList = await getCoupons({
- productId: this.id,
- });
- if (dataList.length) {
- this.couponDeaultType = dataList.data;
- this.$set(this.coupon, "type", dataList);
- }
- },
- tabCouponType(type) {
- this.$set(this.coupon, "type", type);
- this.getCouponList();
- },
- ChangCouponsUseState(index) {
- let that = this;
- that.coupon.list[index].isUse = true;
- that.$set(that.coupon, "list", that.coupon.list);
- that.$set(that.coupon, "coupon", false);
- },
- /**
- *
- *
- * 收藏商品
- */
- setCollect: Debounce(function() {
- let that = this;
- if (this.isManage) {
- console.log('不准点')
- return
- }
- if (this.isLogin === false) {
- toLogin("isLogin");
- } else {
- if (this.isManage == 0 && this.dataItem) {
- secondHandReplyLikeApi(this.dataItem.id).then((res) => {
- that.getSecondHandDetailApi()
- });
- } else {
- let id =
- Number(this.masterProductId) > 0 ?
- this.masterProductId :
- this.productInfo.id;
- if (this.userCollect) {
- collectCancel({
- ids: id,
- }).then((res) => {
- that.$set(that, "userCollect", !that.userCollect);
- that.$util.Tips({
- title: "取消收藏",
- });
- });
- } else {
- collectAdd(id).then((res) => {
- that.$set(that, "userCollect", !that.userCollect);
- that.$util.Tips({
- title: "收藏成功",
- });
- });
- }
- }
- }
- }),
- /**
- * 打开属性插件
- */
- selecAttr: function() {
- this.$set(this.attr, "cartAttr", true);
- this.$set(this, "isOpen", true);
- this.attr.productSelect.cart_num = 1;
- },
- /**
- * 打开优惠券插件
- */
- couponTap: function() {
- let that = this;
- if (that.isLogin === false) {
- toLogin();
- } else {
- that.getCouponList(); //打开弹框默认请求商品券
- that.$set(that.coupon, "coupon", true);
- }
- },
- onMyEvent: function() {
- this.$set(this.attr, "cartAttr", false);
- this.$set(this, "isOpen", false);
- this.attr.productSelect.cart_num = 1;
- },
- /**
- * 打开属性加入购物车
- *
- */
- joinCart: Debounce(function(e) {
- //是否登录
- if (this.isLogin === false) {
- toLogin();
- } else {
- this.goCat(1);
- }
- }),
- /*
- * 加入购物车
- */
- goCat: function(num) {
- let that = this,
- productSelect = that.productValue[this.attrValue];
- //打开属性
- if (that.attrValue) {
- //默认选中了属性,但是没有打开过属性弹窗还是自动打开让用户查看默认选中的属性
- that.attr.cartAttr = !that.isOpen ? true : false;
- } else {
- if (that.isOpen) that.attr.cartAttr = true;
- else that.attr.cartAttr = !that.attr.cartAttr;
- }
- //只有关闭属性弹窗时进行加入购物车
- if (that.attr.cartAttr === true && that.isOpen === false)
- return (that.isOpen = true);
- //如果有属性,没有选择,提示用户选择
- if (
- that.attr.productAttr.length &&
- productSelect.stock === 0 &&
- that.isOpen === true
- )
- return that.$util.Tips({
- title: "产品库存不足,请选择其它",
- });
- if (num === 1) {
- let q = {
- productId: parseFloat(that.id),
- cartNum: parseFloat(that.attr.productSelect.cart_num),
- isNew: false,
- productAttrUnique: that.attr.productSelect !== undefined ?
- that.attr.productSelect.unique : that.productInfo.id,
- };
- postCartAdd(q)
- .then(function(res) {
- that.isOpen = false;
- that.attr.cartAttr = false;
- that.$util.Tips({
- title: "添加购物车成功",
- success: () => {
- that.getCartCount(true);
- },
- });
- })
- .catch((res) => {
- that.isOpen = false;
- return that.$util.Tips({
- title: res,
- });
- });
- } else {
- this.getPreOrder();
- }
- },
- /**
- * 获取购物车数量
- * @param boolean 是否展示购物车动画和重置属性
- */
- getCartCount: function(isAnima) {
- let that = this;
- getCartCounts(true, "total")
- .then((res) => {
- that.CartCount = res.data.count;
- //加入购物车后重置属性
- if (isAnima) {
- that.animated = true;
- setTimeout(function() {
- that.animated = false;
- }, 500);
- }
- })
- .catch((err) => {
- that.CartCount = 0;
- });
- },
- /**
- * 立即购买
- */
- goBuy: Debounce(function(e) {
- if (this.isLogin === false) {
- toLogin();
- } else {
- this.goCat(0);
- }
- }),
- /**
- * 二手交易立即购买
- */
- goSecondHand: Debounce(function(e) {
- if (this.isLogin === false) {
- toLogin();
- } else {
- onGetPreSecondHandOrder([{
- orderNo: "",
- productId: this.dataItem.id,
- productNum: 1
- }])
- }
- }),
- /**
- * 预下单
- */
- getPreOrder: function() {
- if (
- this.marketingType === ProductMarketingTypeEnum.Groupbuying &&
- this.attr.productSelect.cart_num > this.buyLimitNum
- ) {
- this.isOpen = false;
- return this.$util.Tips({
- title: "超出限购数量",
- });
- }
- if (this.attr.productSelect.cart_num < 1) {
- uni.showToast({
- title: "单次可购买商品数量范围为 1~99",
- icon: "none",
- });
- } else {
- let types = "";
- switch (this.marketingType) {
- case ProductMarketingTypeEnum.Normal:
- if (this.productType === 4) {
- types = "video";
- } else {
- types = "buyNow";
- }
- break;
- case ProductMarketingTypeEnum.Seckill:
- types = "seckill";
- break;
- case ProductMarketingTypeEnum.Groupbuying:
- types = "group";
- break;
- }
- let obj = {
- attrValueId: parseFloat(this.attr.productSelect.unique),
- productId: parseFloat(this.id),
- productNum: parseFloat(this.attr.productSelect.cart_num),
- groupBuyActivityId: parseFloat(this.groupActivityId),
- groupBuyRecordId: this.groupRecordId,
- };
- console.log(this.attr, this.id, this.cart)
- let arr = []
- let isProductid = false // 是否同一规格
- if (this.cart.length) {
- // const indexOf = this.cart.find(val => val.productid == this.attr.productSelect.unique)
- this.cart.forEach((item) => {
- if (this.attr.productSelect.unique == item.productid) {
- isProductid = true
- item.number += parseFloat(this.attr.productSelect.cart_num)
- }
- arr.push({
- attrValueId: item.productid, //商品规格属性id(立即购买、活动购买必填)
- groupBuyActivityId: null, //拼团活动id(拼团下单时必填)
- groupBuyRecordId: 0, // 拼团记录id,营销类型2=拼团 时必填 0=开团 实际
- productId: item.id, //商品id
- productNum: item.number //商品数量
- })
- });
- !isProductid ? arr.push(obj) : ''
- } else {
- arr = [obj]
- }
- onGetPreOrder(types, arr);
- }
- this.isOpen = false;
- },
- /**
- * 分享打开
- *
- */
- listenerActionSheet: function() {
- this.goPoster();
- this.posters = true;
- // #ifdef H5
- if (this.$wechat.isWeixin()) {
- this.weixinStatus = true;
- }
- // #endif
- },
- closePosters: function() {
- this.posters = false;
- this.currentPage = false;
- },
- //隐藏海报
- posterImageClose: function() {
- this.canvasStatus = false;
- this.posters = false;
- },
- //替换安全域名
- setDomain: function(url) {
- url = url ? url.toString() : "";
- //本地调试打开,生产请注销
- if (url.indexOf("https://") > -1) return url;
- else return url.replace("http://", "https://");
- },
- //获取海报产品图(解决跨域问题,只适用于小程序)
- downloadFilestoreImage: function() {
- let that = this;
- uni.downloadFile({
- url: that.setDomain(that.productInfo.image),
- success: function(res) {
- that.storeImage = res.tempFilePath;
- },
- fail: function() {
- return that.$util.Tips({
- title: "",
- });
- that.storeImage = "";
- },
- });
- },
- // 小程序关闭分享弹窗;
- goFriend: function() {
- this.posters = false;
- },
- // 小程序二维码
- getQrcode() {
- let that = this;
- let data;
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- data = {
- scene: "id=" +
- this.id +
- "&sd=" +
- that.uid +
- "&mt=" +
- 2 +
- "&gd=" +
- this.groupActivityId,
- page: "pages/goods/goods_details/index",
- };
- } else {
- data = {
- scene: "id=" + this.id + "&sd=" + that.uid + "&mt=" + that.marketingType,
- page: "pages/goods/goods_details/index",
- };
- }
- mpQrcode(data)
- .then((res) => {
- base64src(res.data.code, Date.now(), (res) => {
- that.PromotionCode = res;
- });
- })
- .catch((err) => {
- that.errT = err;
- });
- },
- // 生成二维码;
- make(uid) {
- let href;
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- href =
- location.href.split("?")[0] +
- "?id=" +
- this.id +
- "&sd=" +
- this.uid +
- "&mt=" +
- this.marketingType +
- "&gd=" +
- this.groupActivityId;
- } else {
- href =
- location.href.split("?")[0] +
- "?id=" +
- this.id +
- "&sd=" +
- this.uid +
- "&mt=" +
- this.marketingType;
- }
- uQRCode.make({
- canvasId: "qrcode",
- text: href,
- size: this.qrcodeSize,
- margin: 10,
- success: (res) => {
- this.PromotionCode = res;
- },
- complete: () => {},
- fail: (res) => {
- this.$util.Tips({
- title: "海报二维码生成失败!",
- });
- },
- });
- },
- getImageBase64: function(images) {
- let that = this;
- imageBase64({
- url: images,
- }).then((res) => {
- that.imgTop = res.data.code;
- });
- },
- /**
- * 获取产品分销二维码
- * @param function successFn 下载完成回调
- *
- */
- downloadFilePromotionCode: function(successFn) {
- let that = this;
- getProductCode(that.id)
- .then((res) => {
- uni.downloadFile({
- url: that.setDomain(res.data.code),
- success: function(res) {
- that.$set(that, "isDown", false);
- if (typeof successFn == "function") {
- successFn && successFn(res.tempFilePath);
- } else {
- that.$set(that, "PromotionCode", res.tempFilePath);
- }
- },
- fail: function() {
- that.$set(that, "isDown", false);
- that.$set(that, "PromotionCode", "");
- },
- });
- })
- .catch((err) => {
- that.$set(that, "isDown", false);
- that.$set(that, "PromotionCode", "");
- });
- },
- /**
- * 生成海报
- */
- goPoster: function() {
- let that = this;
- uni.showLoading({
- title: "海报生成中",
- mask: true,
- });
- that.posters = false;
- let arrImagesUrl = "";
- let arrImagesUrlTop = "";
- if (!that.PromotionCode) {
- uni.hideLoading();
- that.$util.Tips({
- title: that.errT,
- });
- return;
- }
- setTimeout(() => {
- if (!that.imgTop) {
- uni.hideLoading();
- that.$util.Tips({
- title: "无法生成商品海报!",
- });
- return;
- }
- }, 1000);
- uni.downloadFile({
- url: that.imgTop, //仅为示例,并非真实的资源
- success: (res) => {
- arrImagesUrlTop = res.tempFilePath;
- let arrImages = [
- that.posterbackgd,
- arrImagesUrlTop,
- that.PromotionCode,
- ];
- let name = that.productInfo.name;
- let price;
- let otPrice;
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- price = that.groupBuyActivityResponse.activePrice;
- otPrice = that.productInfo.price;
- } else {
- price = that.productInfo.price;
- otPrice = that.productType === that.ProductTypeEnum.Integral ? that.productInfo
- .cost : that.productInfo.otPrice;
- }
- setTimeout(() => {
- that.$util.PosterCanvas(
- arrImages,
- name,
- price,
- otPrice,
- function(tempFilePath) {
- that.imagePath = tempFilePath;
- that.canvasStatus = true;
- uni.hideLoading();
- }
- );
- }, 500);
- },
- });
- },
- // 图片预览;
- getpreviewImage: function() {
- if (this.imagePath) {
- let photoList = [];
- photoList.push(this.imagePath);
- uni.previewImage({
- urls: photoList,
- current: this.imagePath,
- });
- } else {
- this.$util.Tips({
- title: "您的海报尚未生成",
- });
- }
- },
- /*
- * 保存到手机相册
- */
- // #ifdef MP
- savePosterPath: function() {
- let that = this;
- uni.getSetting({
- success(res) {
- if (!res.authSetting["scope.writePhotosAlbum"]) {
- uni.authorize({
- scope: "scope.writePhotosAlbum",
- success() {
- uni.saveImageToPhotosAlbum({
- filePath: that.imagePath,
- success: function(res) {
- that.posterImageClose();
- that.$util.Tips({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: function(res) {
- that.$util.Tips({
- title: "保存失败",
- });
- },
- });
- },
- });
- } else {
- uni.saveImageToPhotosAlbum({
- filePath: that.imagePath,
- success: function(res) {
- that.posterImageClose();
- that.$util.Tips({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: function(res) {
- that.$util.Tips({
- title: "保存失败",
- });
- },
- });
- }
- },
- });
- },
- // #endif
- ShareInfo() {
- let data = this.productInfo;
- let href = location.href;
- if (this.$wechat.isWeixin() && this.publicLoginType == 1) {
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- href =
- href.split("?")[0] +
- "?id=" +
- this.id +
- "&sd=" +
- this.uid +
- "&mt=" +
- this.marketingType +
- "&gd=" +
- this.groupActivityId;
- } else {
- href = href.split("?")[0] +
- "?id=" +
- this.id +
- "&sd=" +
- this.uid +
- "&mt=" +
- this.marketingType
- }
- let configAppMessage = {
- desc: data.intro ? data.intro : '',
- title: data.name,
- link: href,
- imgUrl: data.image,
- };
- this.$wechat
- .wechatEvevt(
- [
- "updateAppMessageShareData",
- "updateTimelineShareData",
- "onMenuShareAppMessage",
- "onMenuShareTimeline",
- ],
- configAppMessage
- )
- .then((res) => {})
- .catch((err) => {
- console.log(err);
- });
- }
- },
- showShare(status) {
- let that = this;
- that.$set(that.sharePacket, "touchstart", status);
- },
- hideNav() {
- this.currentPage = false;
- },
- //下拉导航页面跳转
- linkPage(url) {
- if (
- [
- "/pages/index/index",
- "/pages/order_addcart/order_addcart",
- "/pages/user/index",
- "/pages/discover_index/index",
- ].indexOf(url) > -1
- ) {
- uni.switchTab({
- url,
- });
- } else {
- uni.navigateTo({
- url,
- });
- }
- this.currentPage = false;
- },
- //点击sku图片打开轮播图
- showImg(index) {
- if (this.selectSku) {
- if (this.marketingType === ProductMarketingTypeEnum.Groupbuying) {
- this.$refs.cusPreviewImg.open(this.selectSku.sku, 1);
- } else {
- this.$refs.cusPreviewImg.open(this.selectSku.sku, 0);
- }
- } else {
- this.$refs.cusPreviewImg.open({}, 0);
- }
- },
- //滑动轮播图选择商品
- changeSwitch(e) {
- let productSelect = this.skuArr[e];
- this.$set(this, "selectSku", productSelect);
- var skuList = productSelect.sku.split(",");
- skuList.forEach((i, index) => {
- this.$set(this.attr.productAttr[index], "index", skuList[index]);
- });
- if (productSelect) {
- this.checkedAttr(productSelect)
- this.$set(this, "attrValue", productSelect.sku);
- this.getProductPrice();
- }
- },
- getFileType(fileName) {
- // 后缀获取
- let suffix = "";
- // 获取类型结果
- let result = "";
- try {
- const flieArr = fileName.split(".");
- suffix = flieArr[flieArr.length - 1];
- } catch (err) {
- suffix = "";
- }
- // fileName无后缀返回 false
- if (!suffix) {
- return false;
- }
- suffix = suffix.toLocaleLowerCase();
- // 图片格式
- const imglist = ["png", "jpg", "jpeg", "bmp", "gif"];
- // 进行图片匹配
- result = imglist.find((item) => item === suffix);
- if (result) {
- return "image";
- }
- // 匹配 视频
- const videolist = [
- "mp4",
- "m2v",
- "mkv",
- "rmvb",
- "wmv",
- "avi",
- "flv",
- "mov",
- "m4v",
- ];
- result = videolist.find((item) => item === suffix);
- if (result) {
- return "video";
- }
- // 其他 文件类型
- return "other";
- },
- //直接购买
- toAloneBuy() {
- goProductDetail(this.productInfo.id, 0, "");
- },
- videoPause() {},
- goVideoDetail(noteDetails) {
- if (noteDetails.type === 2) {
- uni.navigateTo({
- //#ifdef APP
- url: '/pages/discover/discover_video/appVideo/index?noteId=' + noteDetails.id + `&sd=${this.uid}`,
- //#endif
- //#ifndef APP
- url: '/pages/discover/discover_video/routineVideo/index?noteId=' + noteDetails.id + `&sd=${this.uid}`,
- //#endif
- });
- }
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .icon-ic_share1 {
- font-size: 30rpx;
- background: rgba(255, 255, 255, 0.6);
- border: 1rpx solid rgba(0, 0, 0, 0.1);
- /* #ifdef H5 || APP-PLUS */
- width: 50rpx;
- height: 50rpx;
- line-height: 48rpx;
- border-radius: 25rpx;
- /* #endif */
- /* #ifdef MP */
- width: 60rpx;
- height: 60rpx;
- line-height: 56rpx;
- border-radius: 30rpx;
- padding-left: 4rpx;
- /* #endif */
- position: fixed;
- text-align: center;
- z-index: 999;
- }
- .w-640rpx {
- width: 640rpx !important;
- }
- .icon-fanhui2,
- .icon-shouye7 {
- font-size: 30rpx !important;
- font-weight: 600;
- }
- .mb10 {
- margin-bottom: 10rpx;
- }
- .coupon_label {
- height: 34rpx;
- line-height: 32rpx;
- border-radius: 4rpx;
- padding: 0 10rpx;
- font-size: 22rpx;
- margin-right: 10rpx;
- @include main_color(theme);
- @include cate-two-btn(theme);
- }
- .coupon_more {
- font-size: 22rpx;
- @include main_color(theme);
- .iconfont {
- font-size: 24rpx;
- }
- }
- .longBnts {
- width: 444rpx;
- text-align: center;
- line-height: 76rpx;
- color: #fff;
- font-size: 28rpx;
- display: inline-block;
- border-radius: 50rpx !important;
- }
- .mtop {
- margin-top: -162rpx;
- }
- .lineWidth {
- width: 588rpx;
- }
- .superior {
- /deep/.name,
- /deep/.icon-jiantou {
- color: #333 !important;
- }
- /deep/.store {
- padding: 0 !important;
- }
- /deep/image,
- .easy-loadimage,
- image,
- uni-image {
- width: 86rpx;
- height: 86rpx;
- border-radius: 6px;
- opacity: 1;
- }
- }
- .product-con {
- height: 100%;
- }
- .ensure {
- width: 100%;
- background-color: #fff;
- padding-bottom: 22rpx;
- padding-bottom: calc(22rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- padding-bottom: calc(22rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- .title {
- font-size: 32rpx;
- color: #282828;
- text-align: center;
- margin: 38rpx 0 36rpx 0;
- position: relative;
- .iconfont {
- position: absolute;
- right: 30rpx;
- top: 0;
- font-size: 36rpx;
- }
- }
- .list {
- height: 750rpx;
- margin: 0 30rpx;
- overflow-x: hidden;
- overflow-y: auto;
- .item {
- margin-bottom: 52rpx;
- .pictrue {
- width: 36rpx;
- height: 36rpx;
- border-radius: 50%;
- margin-right: 30rpx;
- /deep/image,
- .easy-loadimage,
- image,
- uni-image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .text {
- width: 618rpx;
- color: #999999;
- font-size: 28rpx;
- .name {
- color: #333333;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- }
- }
- }
- .bnt,
- .activityBtn {
- width: 690rpx;
- height: 86rpx;
- text-align: center;
- line-height: 86rpx;
- border-radius: 43rpx;
- font-size: 30rpx;
- color: #fff;
- margin: 0 auto;
- }
- .bnt {
- @include main_bg_color(theme);
- }
- }
- .ensure.on {
- transform: translate3d(0, 0, 0);
- }
- /deep/ .tui-drawer-container_bottom {
- border-radius: 16rpx 16rpx 0 0;
- }
- .product-con {
- height: 100%;
- }
- .x-money {
- font-size: 40rpx;
- @include price_color(theme);
- }
- .bg-color-hui {
- background: #bbb !important;
- border-radius: 0 25px 25px 0;
- }
- .lang {
- width: 170rpx !important;
- height: 60rpx !important;
- border-radius: 33rpx;
- }
- .circle {
- width: 58rpx !important;
- height: 58rpx !important;
- border-radius: 50%;
- }
- .select_nav {
- background: rgba(255, 255, 255, 0.6);
- border: 1rpx solid rgba(0, 0, 0, 0.1);
- color: #000;
- position: fixed;
- font-size: 18px;
- line-height: 62rpx;
- z-index: 1000;
- left: 14rpx;
- }
- .px-20 {
- padding: 0 20rpx 0;
- }
- .nav_line {
- content: "";
- display: inline-block;
- width: 1rpx;
- height: 30rpx;
- background: #e8dfdf;
- position: absolute;
- left: 0;
- right: 0;
- margin: auto;
- }
- .bgwhite {
- background: #fff;
- }
- .input {
- display: flex;
- align-items: center;
- /* #ifdef MP */
- width: 300rpx;
- /* #endif */
- /* #ifndef MP */
- width: 460rpx;
- /* #endif */
- height: 58rpx;
- padding: 0 0 0 30rpx;
- border: 1px solid rgba(0, 0, 0, 0.07);
- border-radius: 33rpx;
- color: #666;
- font-size: 26rpx;
- position: fixed;
- left: 0;
- right: 0;
- margin: auto;
- background: rgba(255, 255, 255, 0.3);
- .iconfont {
- margin-right: 20rpx;
- font-size: 26rpx;
- color: #666666;
- }
- }
- .container_detail {
- /* #ifdef MP */
- margin-top: 32rpx;
- /* #endif */
- }
- .tab_nav {
- width: 100%;
- height: 48px;
- /* #ifdef MP */
- margin-left: 220rpx;
- /* #endif */
- }
- .right_select {
- width: 50rpx;
- height: 50rpx;
- background: rgba(255, 255, 255, 0.3);
- border: 1px solid rgba(0, 0, 0, 0.1);
- border-radius: 50%;
- position: fixed;
- right: 20rpx;
- text-align: center;
- line-height: 50rpx;
- }
- .dialog_nav {
- position: absolute;
- /* #ifdef MP */
- left: 14rpx;
- /* #endif */
- /* #ifdef H5 || APP-PLUS*/
- right: 14rpx;
- /* #endif */
- width: 240rpx;
- background: #ffffff;
- box-shadow: 0px 0px 16rpx rgba(0, 0, 0, 0.08);
- z-index: 310;
- border-radius: 14rpx;
- &::before {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- /* #ifdef MP */
- left: 0;
- right: 0;
- margin: auto;
- /* #endif */
- /* #ifdef H5 || APP-PLUS */
- right: 8px;
- /* #endif */
- top: -9px;
- border-bottom: 10px solid #f5f5f5;
- border-left: 10px solid transparent;
- /*transparent 表示透明*/
- border-right: 10px solid transparent;
- }
- }
- .dialog_nav_item {
- width: 100%;
- height: 84rpx;
- line-height: 84rpx;
- padding: 0 20rpx 0;
- box-sizing: border-box;
- border-bottom: #eee;
- font-size: 28rpx;
- color: #333;
- position: relative;
- .iconfont {
- font-size: 32rpx;
- }
- }
- .dialog_after {
- ::after {
- content: "";
- position: absolute;
- width: 172rpx;
- height: 1px;
- background-color: #eeeeee;
- bottom: 0;
- right: 0;
- }
- }
- .pl-20 {
- padding-left: 20rpx;
- }
- .activity {
- padding: 0 20rpx;
- @include coupons_border_color(theme);
- @include main_color(theme);
- font-size: 24rpx;
- line-height: 32rpx;
- position: relative;
- margin-left: 4rpx;
- }
- .product-con .wrapper .coupon .activity:before {
- content: " ";
- position: absolute;
- width: 7rpx;
- height: 10rpx;
- border-radius: 0 7rpx 7rpx 0;
- @include coupons_border_color(theme);
- background-color: #fff !important;
- bottom: 50%;
- left: -3rpx;
- margin-bottom: -6rpx;
- @include white_left_border;
- }
- .product-con .wrapper .coupon .activity:after {
- content: " ";
- position: absolute;
- width: 7rpx;
- height: 10rpx;
- border-radius: 7rpx 0 0 7rpx;
- @include coupons_border_color(theme);
- background-color: #fff;
- right: -3rpx;
- bottom: 50%;
- margin-bottom: -6rpx;
- @include white_right_border;
- }
- .justify-center {
- justify-content: center;
- }
- .align-center {
- align-items: center;
- }
- .align-baseline {
- align-items: baseline;
- }
- .bg_color {
- @include main_bg_color(theme);
- }
- .vip_icon {
- width: 44rpx;
- height: 28rpx;
- }
- .pl-2 {
- padding-left: 20rpx;
- }
- .vip_money {
- background: #ffe7b9;
- border-radius: 4px;
- font-size: 22rpx;
- color: #333;
- line-height: 28rpx;
- text-align: center;
- padding: 0 6rpx;
- box-sizing: border-box;
- margin-left: -4rpx;
- }
- .theme_price {
- @include price_color(theme);
- margin-top: 5rpx;
- }
- .activityName {
- line-height: 44rpx;
- }
- .userEvaluation {
- i {
- display: inline-block;
- }
- }
- .bntVideo {
- width: auto !important;
- .buy {
- border-radius: 50rpx !important;
- }
- }
- .attribute {
- .line1 {
- width: 600rpx;
- }
- .acea-row {
- overflow: hidden;
- }
- }
- .chat-btn {
- background-color: antiquewhite !important;
- }
- .activity_pin {
- width: auto;
- height: 44rpx;
- line-height: 44rpx;
- @include linear-gradient(theme);
- opacity: 1;
- border-radius: 22rpx;
- padding: 0 15rpx;
- }
- .activity_miao {
- width: auto;
- height: 44rpx;
- line-height: 44rpx;
- padding: 0 15rpx;
- // background: linear-gradient(90deg, rgba(250, 102, 24, 1) 0%, rgba(254, 161, 15, 1) 100%);
- @include linear-gradient(theme);
- opacity: 1;
- border-radius: 22rpx;
- margin-left: 19rpx;
- }
- .iconfonts {
- color: #fff !important;
- font-size: 28rpx;
- }
- .activity_title {
- font-size: 24rpx;
- color: #fff;
- }
- .activity_kan {
- width: auto;
- height: 44rpx;
- line-height: 44rpx;
- padding: 0 15rpx;
- @include linear-gradient(theme);
- opacity: 1;
- border-radius: 22rpx;
- margin-left: 19rpx;
- }
- .mask {
- z-index: 300 !important;
- }
- .head-bar {
- background: #fff;
- }
- .generate-posters {
- width: 100%;
- height: 318rpx;
- background-color: #fff;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 388;
- transform: translate3d(0, 100%, 0);
- transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
- border-top: 1rpx solid #eee;
- .generateCon {
- height: 220rpx;
- }
- .generateClose {
- height: 98rpx;
- font-size: 28rpx;
- color: #333333;
- border-top: 1px solid #eee;
- }
- .item {
- .pictrue {
- width: 96rpx;
- height: 96rpx;
- border-radius: 50%;
- margin: 0 auto 6rpx auto;
- /deep/image,
- .easy-loadimage,
- image,
- uni-image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- }
- }
- .generate-posters.on {
- transform: translate3d(0, 0, 0);
- }
- .generate-posters .item {
- flex: 1;
- text-align: center;
- font-size: 30rpx;
- }
- .generate-posters .item .iconfont {
- font-size: 80rpx;
- color: #5eae72;
- }
- .generate-posters .item .iconfont.icon-haibao {
- color: #5391f1;
- }
- .generate-posters .item .iconfont.icon-haowuquan1 {
- color: #ff954d;
- }
- .product-con .footer {
- padding: 0 20rpx 0 30rpx;
- position: fixed;
- bottom: 0;
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- display: flex;
- justify-content: flex-end;
- z-index: 277;
- border-top: 1rpx solid #f0f0f0;
- height: 100rpx;
- height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- }
- .product-con .footer .item {
- font-size: 18rpx;
- color: #666;
- }
- .product-con .footer .item .iconfont {
- text-align: center;
- font-size: 40rpx;
- }
- .color-change {
- @include main_color(theme);
- }
- .color-normal {
- color: #e93323 !important;
- }
- .product-con .footer .item .iconfont.icon-gouwuche1 {
- font-size: 40rpx;
- position: relative;
- }
- .product-con .footer .item .iconfont.icon-gouwuche1 .num {
- color: #fff;
- position: absolute;
- font-size: 18rpx;
- padding: 2rpx 8rpx 3rpx;
- border-radius: 200rpx;
- top: -10rpx;
- right: -10rpx;
- }
- .product-con .footer .bnt {
- height: 76rpx;
- }
- .product-con .footer .bnt .bnts {
- width: 222rpx;
- text-align: center;
- line-height: 76rpx;
- color: #fff;
- font-size: 28rpx;
- }
- .product-con .footer .bnt .joinCart {
- border-radius: 50rpx 0 0 50rpx;
- @include left_color(theme);
- }
- .product-con .footer .bnt .joinCart.groupJoin {
- background-color: #FE960F !important;
- }
- .product-con .footer .bnt .buy {
- border-radius: 0 50rpx 50rpx 0;
- @include main_bg_color(theme);
- }
- .product-con .store-info {
- margin-top: 20rpx;
- background-color: #fff;
- }
- .product-con .store-info .title {
- padding: 0 30rpx;
- font-size: 28rpx;
- color: #282828;
- height: 80rpx;
- line-height: 80rpx;
- border-bottom: 1px solid #f5f5f5;
- }
- .product-con .store-info .info {
- padding: 0 30rpx;
- height: 126rpx;
- }
- .product-con .store-info .info .picTxt {
- width: 615rpx;
- }
- .product-con .store-info .info .picTxt .pictrue {
- width: 76rpx;
- height: 76rpx;
- }
- .product-con .store-info .info .picTxt .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 6rpx;
- }
- .product-con .store-info .info .picTxt .text {
- width: 522rpx;
- }
- .product-con .store-info .info .picTxt .text .name {
- font-size: 30rpx;
- color: #282828;
- }
- .product-con .store-info .info .picTxt .text .address {
- font-size: 24rpx;
- color: #666;
- margin-top: 3rpx;
- }
- .product-con .store-info .info .picTxt .text .address .iconfont {
- color: #707070;
- font-size: 18rpx;
- margin-left: 10rpx;
- }
- .product-con .store-info .info .picTxt .text .address .addressTxt {
- max-width: 480rpx;
- }
- .product-con .store-info .info .iconfont {
- font-size: 40rpx;
- }
- .product-con .superior {
- background-color: #fff;
- margin-top: 20rpx;
- padding: 24rpx;
- .title {
- height: 98rpx;
- image {
- width: 20rpx;
- height: 20rpx;
- }
- .titleTxt {
- margin: 0 10rpx;
- font-size: 30rpx;
- color: #333333;
- }
- }
- .slider-banner {
- width: 100%;
- margin: 0 auto;
- position: relative;
- .list {
- width: 100%;
- .item {
- width: 204rpx;
- margin: 24rpx 3.2% 0 0;
- font-size: 26rpx;
- .pictrue {
- position: relative;
- width: 204rpx;
- height: 204rpx;
- border-radius: 6rpx;
- overflow: hidden;
- /deep/image,
- .easy-loadimage,
- image,
- uni-image {
- width: 100% !important;
- height: 100% !important;
- border-radius: 6rpx;
- }
- }
- .name {
- color: #282828;
- margin-top: 10rpx;
- }
- }
- .item:nth-of-type(3n) {
- margin-right: 0;
- }
- }
- }
- }
- button {
- padding: 0;
- margin: 0;
- line-height: normal;
- background-color: #fff;
- }
- button::after {
- border: 0;
- }
- action-sheet-item {
- padding: 0;
- height: 240rpx;
- align-items: center;
- display: flex;
- }
- .contact {
- font-size: 16px;
- width: 50%;
- background-color: #fff;
- padding: 8rpx 0;
- border-radius: 0;
- margin: 0;
- line-height: 2;
- }
- .contact::after {
- border: none;
- }
- .action-sheet {
- font-size: 17px;
- line-height: 1.8;
- width: 50%;
- position: absolute;
- top: 0;
- right: 0;
- padding: 25rpx 0;
- }
- .canvas {
- position: fixed;
- z-index: -5;
- opacity: 0;
- }
- .poster-pop {
- position: fixed;
- width: 500rpx;
- height: 714rpx;
- top: 50%;
- left: 50%;
- transform: translateX(-50%);
- margin-top: -432rpx;
- z-index: 399;
- // background-image: url('https://api.admin.merchant.crmeb.xbdzz.cn/crmebimage/public/product/2024/08/13/8a25e3c98d864299b7a5201f70ea24edkoj7sce8za.png');
- // background-size: cover;
- }
- .poster-pop image {
- width: 100%;
- height: 100%;
- display: block;
- }
- .poster-pop .close {
- width: 46rpx;
- height: 75rpx;
- position: fixed;
- right: 0;
- top: -73rpx;
- display: block;
- }
- .poster-pop .save-poster {
- background-color: #df2d0a;
- font-size: :22rpx;
- color: #fff;
- text-align: center;
- height: 76rpx;
- line-height: 76rpx;
- width: 100%;
- }
- .poster-pop .keep {
- color: #fff;
- text-align: center;
- font-size: 25rpx;
- margin-top: 10rpx;
- }
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .pro-wrapper .iconn {
- background-image: url("data:image/png;base64,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");
- width: 100rpx;
- height: 100rpx;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- margin: 0 auto;
- }
- .pro-wrapper .iconn.iconn1 {
- background-image: url("data:image/png;base64,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");
- }
- .pictrue_log {
- width: 80upx;
- height: 40upx;
- border-radius: 10upx 0 12upx 0;
- line-height: 40upx;
- font-size: 24upx;
- }
- .pictrue_log_class {
- z-index: 3;
- background: -webkit-gradient(linear,
- left top,
- right top,
- from(rgba(246, 122, 56, 1)),
- to(rgba(241, 27, 9, 1)));
- background: linear-gradient(90deg,
- rgba(246, 122, 56, 1) 0%,
- rgba(241, 27, 9, 1) 100%);
- opacity: 1;
- position: absolute;
- top: 0;
- left: 0;
- color: #fff;
- text-align: center;
- }
- .tab_nav .header {
- /* #ifdef H5 || APP-PLUS */
- width: 77%;
- justify-content: space-around;
- /* #endif */
- /* #ifdef MP */
- width: 100%;
- /* #endif */
- height: 96rpx;
- font-size: 28rpx;
- color: #050505;
- margin: auto;
- background-color: #fff;
- }
- .navbar .header .item {
- position: relative;
- margin: 0 25rpx;
- }
- .navbar .header .item.on:before {
- position: absolute;
- width: 60rpx;
- height: 5rpx;
- background-repeat: no-repeat;
- content: "";
- @include linear-gradient(theme);
- bottom: -10rpx;
- left: 50%;
- margin-left: -28rpx;
- }
- .navbar {
- position: fixed;
- // background-color: #fff;
- top: 0;
- left: 0;
- z-index: 99;
- width: 100%;
- }
- .navbar .navbarH {
- position: relative;
- width: 100%;
- }
- .navbar .navbarH .navbarCon {
- position: absolute;
- bottom: 0;
- height: 100rpx;
- width: 100%;
- }
- .h5_back {
- color: #000;
- position: fixed;
- left: 20rpx;
- font-size: 26rpx;
- text-align: center;
- width: 50rpx;
- height: 50rpx;
- line-height: 50rpx;
- background: rgba(255, 255, 255, 0.3);
- border: 1px solid rgba(0, 0, 0, 0.1);
- border-radius: 50%;
- }
- .share-box {
- z-index: 1000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .mask_transparent {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: transparent;
- z-index: 300;
- }
- .px-12 {
- padding-left: 12rpx;
- padding-right: 12rpx;
- }
- .font-44 {
- font-size: 44rpx;
- }
- .font_color {
- @include main_color(theme);
- }
- .attrImg {
- width: 66rpx;
- height: 66rpx;
- border-radius: 6rpx;
- display: block;
- margin-right: 14rpx;
- }
- .switchTxt {
- height: 60rpx;
- flex: 1;
- line-height: 60rpx;
- box-sizing: border-box;
- background: #eeeeee;
- padding-right: 0 24rpx 0;
- border-radius: 8rpx;
- text-align: center;
- }
- .text-666 {
- color: #666;
- }
- .text-333 {
- color: #333 !important;
- }
- .iconColor {
- @include main_color(theme);
- }
- .activityIcon {
- color: #e93323;
- }
- .detailText {
- padding-bottom: 30rpx;
- }
- .spredGroupStyle {
- width: 450rpx;
- height: 76rpx;
- line-height: 76rpx;
- background: #e93323;
- border-radius: 40rpx;
- font-weight: 400;
- font-size: 28rpx;
- color: #ffffff;
- }
- .group-buy {
- background: #e93323;
- border-radius: 0px 76rpx 76rpx 0px;
- }
- .group-buy2 {
- width: 450rpx !important;
- background: #e93323;
- border-radius: 76rpx;
- }
- .navbar .header .item.groupTabOn:before {
- position: absolute;
- width: 60rpx;
- height: 5rpx;
- background-repeat: no-repeat;
- content: "";
- background: #e93323;
- bottom: -10rpx;
- left: 50%;
- margin-left: -28rpx;
- }
- .groupColor {
- color: #e93323;
- }
- .imageBox {
- width: 702rpx;
- // height: 702rpx;
- position: relative;
- swiper {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .cover {
- width: 702rpx;
- position: relative;
- border-radius: 10px 10px 10px 10px;
- /deep/image,
- /deep/.easy-loadimage,
- uni-image {
- width: 702rpx;
- border-radius: 10px 10px 10px 10px;
- overflow: hidden;
- }
- .circle {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- background: rgba(0, 0, 0, .5);
- position: absolute;
- top: 50%;
- left: 50%;
- margin-left: -50rpx;
- margin-top: -50rpx;
- z-index: 10;
- line-height: 50px;
- text-align: center;
- color: #fff;
- }
- }
- .slide-image {
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- .pages {
- position: absolute;
- background-color: #fff;
- height: 34rpx;
- padding: 0 10rpx;
- border-radius: 3rpx;
- right: 30rpx;
- bottom: 30rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- color: #050505;
- }
- }
- .follow_btn {
- color: #282828 !important;
- border: 1px solid #282828 !important;
- line-height: 76rpx;
- }
- .manage {
- width: 100%;
- background: #ffffff;
- box-shadow: 0 2rpx 15rpx rgba(0, 0, 0, 0.1);
- padding: 30rpx 24rpx;
- z-index: 10;
- border-radius: 40rpx 40rpx 0 0;
- .items {
- // border-bottom: 1px solid #EEEEEE;
- color: #333333;
- font-size: 28rpx;
- display: flex;
- justify-content: center;
- margin-bottom: 64rpx;
- &:last-child {
- border-bottom: none;
- }
- .iconfont {
- margin: 0 16rpx 0;
- }
- }
- }
- .flex-between-center-sc {
- justify-content: space-between !important;
- }
- .approval_status {
- padding: 24rpx 24rpx 0 24rpx;
- .status_count {
- padding: 26rpx 30rpx 20rpx;
- border-radius: 10rpx;
- .title {
- margin-left: 10rpx;
- font-size: 28rpx;
- font-weight: bold;
- }
- &.status0 {
- background: #FDF3F2;
- .title {
- color: #E93323;
- }
- }
- &.status1 {
- background: #FFF4EB;
- .title {
- color: #FC8327;
- }
- }
- .iconfont {
- font-size: 30rpx;
- }
- .icon-shijian {
- color: #FC8327;
- }
- .icon-tishi {
- color: #E93323;
- }
- .status_info {
- font-size: 22rpx;
- color: #666666;
- margin: 10rpx 0 0 36rpx;
- }
- }
- }
- .order-btn {
- padding: 0 30rpx;
- height: 60rpx;
- line-height: 60rpx;
- border-radius: 110rpx 110rpx 110rpx 110rpx;
- color: #FFFFFF;
- font-size: 30rpx;
- text-align: center;
- }
- </style>
|