123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- <template>
- <view class="hx-store" @touchstart="touchStart">
- <hx-navbar
- :fixed="true"
- :color="['#ffffff','#888888']"
- barPlaceholder="hidden"
- transparent="auto"
- :back="false"
- :rightSlot="false"
- :background-color="[245,245,245]"
- :pageScroll.sync="pageScroll">
- <block slot="left">
- <view class="" style="margin-left: 6px; font-size: 22px;" @click="navBack">
- <i class="hxicon-back"></i>
- </view>
-
- </block>
- <view class="ctn">
-
- <view class="searchCtn" :style="{'width':navSearchWidth + '%','background-color':'rgba(230,230,230,'+ navSearchBgOpacity +')'}">
-
- <i class="hxicon-search"></i>
- <input confirm-type="search" class="input" type="text" placeholder="输入搜索关键词" style="font-size: 14px;" :style="{'opacity':navSearchBgOpacity ,'color':navSearchColor}">
- </view>
- <view class="leftBox" style="font-size: 22px;">
- <i class="hxicon-favor"></i>
- <i class="hxicon-more"></i>
-
- </view>
- <view class="jrNull"></view>
- </view>
- </hx-navbar>
-
-
-
- <!-- 只需要绑定购物车位置即可 -->
- <flyInCart ref="inCart" :cartBasketRect="cartBasketRect"></flyInCart>
- <!-- 头部 -->
- <!-- <view class="header">
- <image class="header-bg" :src="storeData.banner" mode=""></image>
- <view :class="showStoreBox ? 'header-bg-gray' : 'header-bg-black'"></view>
- <view class="header-top-Placeholder" ></view>
- <view class="container storeInfo hx-shadow" :style="{height:storeInfoBoxHeight + 'px'}">
- <image class="storeAvatar hx-shadow" :src="storeData.avatar" mode=""></image>
- <view class="hx-txt-18 hx-color-black hx-txt-weigth hx-mb-10 ">
- 十里桃花
- </view>
- <view class="hx-txt-14 hx-color-black ">
- 店家说明,本店放心吃,地方名才
- </view>
- <view class="shrink-box">
- <i class="hxicon" :class="showStoreBox ? 'icon-fold' : 'icon-unfold'" @click="showStoreBox = !showStoreBox"></i>
- </view>
- </view>
- </view> -->
-
-
-
- <!-- 主体 -->
- <view class="main" :style="{height: mainHeight}" >
- <!-- <view class="" :style="{display:showZz}" style="position: absolute;top: 0;bottom: 0;left: 0;width: 100%; background: #3F536E;z-index: 999;opacity: 0.5;">
- 遮罩
- </view> -->
- <view class="tabs-box" :style="{'top': 'calc(44px + ' + statusBarHeight + 'px)','background-color':'rgba(245,245,245,'+ navSearchBgOpacity +')'}">
- <view class="" style="width: 210px; height: 100%;">
-
- <view class="hx-tabs">
- <view class="hx-tabs-item" v-for="(item,i) in tabs" :key="i" :class="{'hx-tabs-active': swiperCurrent == i}" @click="swiperChange(i)" :style="{transition: transtionTime + 'ms'}">
- <text>{{item.name}}</text>
- </view>
- <view class="hx-tabs-slider-box" :style="{transition: transtionTime + 'ms',left:swiperCurrentSliderLeft + 'px'}">
- <view class="hx-tabs-slider"></view>
- </view>
- </view>
- </view>
- </view>
- <swiper
- id="mainSwiper"
- style="height: 100%;margin-top: 55px;"
- :current="swiperCurrent"
- :duration="transtionTime"
- @transition="transition"
- @animationfinish="animationfinish">
- <!-- 购物 -->
- <swiper-item class="swiper-item" >
-
- <view class="scroll-items">
-
- <view class="category-list">
- <!-- 左侧分类导航 -->
- <scroll-view :scroll-top="menuScrollTop" :scroll-y="goodsBoxScroll" class="left" >
-
- <view v-for="item in categoryList" :key="item.id" class="row" :class="{active: item.id == menuCurrentId}" @click="showCategory(item)">
- <view class="text">
- {{item.name}}
- </view>
- <view class="row-number" v-if="item.number">
- {{item.number}}
- </view>
- </view>
- </scroll-view>
- <!-- 右侧子导航 -->
- <scroll-view scroll-with-animation :scroll-y="goodsBoxScroll" class="right" @scroll="asideScroll" :scroll-top="tabScrollTop" >
- <view class="goodsListBox">
-
-
- <view class="category" v-for="item in categoryList" :key="item.id" :id="'goodsBox'+item.id" >
- <view class="s-item">{{item.name}}</view>
- <view class="list" >
- <view class="box" v-for="(rowData,i) in goodsList" :key="rowData.id" >
- <!-- v-if="item.id == rowData.type_id" -->
- <!-- 商品列表 -->
- <!-- <m-store-pro @touchOnGoods="touchOnGoods" :rowData="box"></m-store-pro>
- -->
- <!-- 商品列表 -->
- <view class="m-store-item">
- <view class="m-img" @click="hrefGoodsInfo(rowData.id)">
- <image style="width: 100%;height: 100%;" :src="rowData.img" mode="aspectFit"></image>
- </view>
- <view class="m-text">
- <view class="m-title" @click="hrefGoodsInfo(rowData.id)">
- {{rowData.name}}
- </view>
-
- <view class="m-descripe">
-
- {{rowData.descripe}}
-
- </view>
-
- <block v-if="rowData.form">
- <view class="m-price-box">
- <view class="symbol">¥</view>
- <view class="m-price">{{rowData.form_child[0].price}}</view>
- <view class="m-old-price" v-if="rowData.form_child[0].oldprice">
- <text>¥{{rowData.form_child[0].oldprice}}</text>
- </view>
- </view>
- </block>
- <block v-else>
- <view class="m-price-box">
- <view class="symbol">¥</view>
- <view class="m-price">{{rowData.price}}</view>
- <view class="m-old-price" v-if="rowData.oldprice">
- <text>¥{{rowData.oldprice}}</text>
- </view>
- </view>
- </block>
- <view class="m-distance" >
-
- <block v-if="rowData.form">
- <view class="miniBtn" @click="showForm(rowData)">
- <text>选规格</text>
- <!-- #ifdef APP-PLUS || H5 -->
- <view class="num" v-if="getCartGoodsNum(rowData)">{{getCartGoodsNum(rowData)}}</view>
- <!-- #endif -->
-
- </view>
- </block>
- <block v-else>
- <view :class="'addEle_' + i" class="jumpPosition"></view>
- <hx-number-box @change="addGoodsChange" :value="rowData.number" :rowData="rowData" :clickTime="animaTime" @addChange="touchOnAddGoods('.addEle_' + i,rowData)"></hx-number-box>
- </block>
- <!-- <image @click="touchOnAddGoods('.addEle_' + i,rowData)" style="width:20px;height: 20px;" src="../../static/img/icon/shop_icon_buy.png" mode="aspectFit"></image>
- -->
- </view>
- </view>
-
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
-
- </swiper-item>
-
- <!-- 评价 -->
- <swiper-item class="swiper-item" >
- <scroll-view scroll-y style="height: 100%;width: 100%;background-color: #ffffff;" @scroll="asideScroll" :scroll-y="goodsBoxScroll" >
- <view class="scroll-items evaluate-box" >
- <view class="evaluate-box-header">
-
- </view>
- <view class="evaluate-box-body">
-
- </view>
- <hx-comment :listData="commentList"></hx-comment>
- </view>
- </scroll-view>
- </swiper-item>
-
- <!-- 商家 -->
- <swiper-item class="swiper-item" >
- <view class="scroll-items business-box">
- <view class="info-list hx-mt-15">
- <view class="info-list-container">
- <i class="hxicon-location"></i>
- <text>{{ storeData.address }}</text>
- </view>
- </view>
-
- <view class="info-list hx-mt-15 ">
- <view class="info-list-container hx-bb">
- <i class="hxicon-time"></i>
- <text>配送时间:{{ storeData.delivery_time }}</text>
- </view>
- </view>
- <view class=" info-list">
- <view class="info-list-container" @click="goCall(storeData.telephone)">
- <i class="hxicon-phone"></i>
- <text style="flex: 1;">商家电话:{{ storeData.telephone }}</text>
- <view class="right">
- <text>拨打</text><i class="hxicon-right"></i>
- </view>
- </view>
- </view>
- <view class="info-list hx-mt-15">
- <view class="info-list-container" @click="showStoreBoxFunc">
- <i class="hxicon-new" style="color:#ff3333"></i>
- <text style="flex: 1;">商家当前热门活动</text>
- <view class="right">
- <text>查看</text><i class="hxicon-right"></i>
- </view>
- </view>
- </view>
- </view>
- </swiper-item>
- </swiper>
- </view>
-
- <!-- 购物车 -->
- <view class="foot" @touchmove.stop.prevent="mpClear" :style="{height: footHeight}" v-if="showFoot">
- <view class="zz" @click="hideShoppingCar"></view>
- <view class="btn-box">
- <view class="btn-box-left" @click="contact">
- <view class="imgBox">
- <image src="../../static/store/contact.png" mode=""></image>
- </view>
- <text>联系商家</text>
- </view>
- <view class="btn-box-line"></view>
- <view class="btn-box-center" @click="showShoppingCar">
- <view class="cart" :animation="cartAnimationData">
- <view class="tag cartNum" v-if="goodsTotalNumber>0">{{goodsTotalNumber}}</view>
- <image :src="goodsTotalNumber ? '/static/store/cart.png' : '/static/store/cart2.png'" mode=""></image>
- </view>
- <view class="priceBox">
- <view class="hx-txt-18 hx-color-white" v-if="goodsTotalPrice>0">
- ¥{{goodsTotalPrice}}
- </view>
- <view class="hx-txt-10 hx-color-gray">
- 另需配送费¥{{shippingDees}}
- </view>
- </view>
- </view>
- <view class="btn-box-right">
- <view class="jiesuan" v-if="goodsTotalPrice>0 && goodsTotalPrice >= startingPrice" @click="jiesuan">
- 去结算
- </view>
- <view class="pscj hx-txt-10 hx-color-gray" v-else>
- <text v-if="startingPrice>0">差¥{{-(goodsTotalPrice-startingPrice)}}起送</text>
- </view>
-
- </view>
- </view>
- <view class="cart-box" :style="{display: showCar ? 'flex' : 'none'}">
- <view class="box-container rebate-box" v-if="showDiscount">
- <text>已享100减25</text>
- </view>
- <view class="box-container operating-box">
- <view class="operating-box_right">
-
- </view>
- <view class="operating-box_left clear" @click="clearShoppingCart">
- <i class="hxicon-delete"></i>
- <text>清空购物车</text>
- </view>
- </view>
- <view class=" goods-box">
- <view class="" style="flex: 1;">
- <scroll-view scroll-y="true" class="goods-list-scroll" :scroll-top="carGoodsScrollTop">
- <view class="goods-list">
- <view class="box" v-for="(rowData,i) in shoppCart" :key="rowData.id">
- <!-- v-if="rowData.number>0" -->
- <view class="m-store-item">
- <view class="m-img">
- <image style="width: 100%;height: 100%;" :src="rowData.img" mode="aspectFit"></image>
- </view>
- <view class="m-text">
- <view class="m-title">
- {{rowData.name}}
- </view>
- <view class="m-descripe">
-
- {{rowData.current_form ? rowData.form.name + ":" + rowData.current_form.name : rowData.descripe}}
- </view>
- <view class="m-price-box" >
- <view class="symbol">¥</view>
- <view class="m-price">{{rowData.price}}</view>
- <view class="m-old-price" v-if="rowData.oldprice">
- <text>¥{{rowData.oldprice}}</text>
- </view>
- </view>
- <view class="m-distance" >
- <view :class="'addEle2_' + rowData.id" class="jumpPosition">
- </view>
- <hx-number-box @change="addGoodsChange" :value="rowData.number" :rowData="rowData" :clickTime="animaTime" @addChange="touchOnAddGoods('.addEle2_' + rowData.id,rowData)"></hx-number-box>
-
- </view>
- </view>
-
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
-
- </view>
- </view>
-
- </view>
- <!-- v-if="showFormBox" -->
-
- <!-- 多规格 -->
- <uni-popup ref="popup" type="center" @change="popupChange">
- <view class="form-main" v-if="currentGoodsData.name">
- <view class="form-main_ctn" @click.stop.prevent="mpClear" >
- <view class="godos_tit"><text>{{currentGoodsData.name}}</text></view>
-
- <view class="gg_tit">
- <text>{{currentGoodsData.form.name}}</text>
- </view>
- <view class="gg_box">
- <block v-for="form_child in currentGoodsData.form_child" :key="form_child.id" v-if="form_child.pid == currentGoodsData.form.id">
- <view class="item" :class="{'active': form_child.select}" @click="selectGoodsForm(currentGoodsData,form_child)">{{form_child.name}}</view>
- </block>
- </view>
-
- <view class="select_gg">
- <text class="lable">已选规格:</text>
- <view class="select_gg_box">
- <block v-for="form_child in currentGoodsData.form_child" :key="form_child.id" v-if="form_child.select == true">
- <view class="gg-item">
- <text>{{form_child.name}} </text>
- <text class="gg-item-cut">,</text>
- </view>
- </block>
- </view>
- </view>
-
- <view class="bottom">
- <view class="price_box">
- <text>¥</text>
- <block v-for="(form_child,i) in currentGoodsData.form_child" :key="i" v-if="form_child.select == true">
- <text class="price">{{form_child.price}}</text>
- </block>
- </view>
- <view class="form-btn-box">
- <block v-if="!currentGoodsData.number">
- <view id="ggAddBtn" class="add-btn" @click="formFirstAddGoods()">
- <i class="hxicon-add" id="eleAdd"></i>
- <text>加入购物车</text>
- </view>
- </block>
- <block v-else>
- <view class="addEle_gg jumpPosition"></view>
- <hx-number-box @change="formAddGoodsChange" :value="currentGoodsData.number" :rowData="currentGoodsData" :clickTime="animaTime + 200" @addChange="touchOnAddGoods('.addEle_gg',currentGoodsData)"></hx-number-box>
- </block>
- </view>
-
- </view>
- </view>
- <view class="close" @click="hiddenForm()">
- <i class="hxicon-close"></i>
- </view>
- </view>
-
- </uni-popup>
-
- </view>
- </template>
- <script>
- // import uniIcons from '@/components/uni-icons/uni-icons.vue';
- // import hxNavbar from '@/components/hx-navbar/hx-navbar.vue';
- // import jumpBall from '@/components/hx-jump-ball/hx-jump-ball.vue';
- // import hxNumberBox from "@/components/uni-number-box/uni-number-box.vue";
- // import hxComment from "@/components/hx-comment/hx-comment.vue";
- // // 加入购物车动画组件
- // import flyInCart from '@/components/flyInCart.vue'
- //引入测试数据
- import testData from './components/testdata.js';
- import CategoryApi from '@/sheep/api/product/category';
- import {
- handleTree
- } from '@/sheep/util';
-
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
-
- export default {
- components: {
- // jumpBall,
- // hxNavbar,
- // uniIcons,
- // hxNumberBox,
- // hxComment,
- // flyInCart
- },
- data() {
- return {
- pageScroll:{},
- //商家信息
- storeData: [],
- //商品列表
- goodsList: [],
- //商品分类信息列表
- categoryList: [],
- //评论列表
- commentList: [],
-
- navSearchWidth: 3,
- navSearchBgOpacity: 0,
- navSearchColor: '#ffffff',
- navHeadHeight: 44,
- //默认禁止商品栏滚动
- goodsBoxScroll: false,
- statusBarHeight,
- //动画时间
- animaTime: 300,
- //商家盒子高度
- storeInfoBoxHeight: 100,
- //展开门店信息容器
- showStoreBox: false,
-
- num:1,
- element: [],
- cartAnimation: {},
- cartAnimationData: {},
-
- //tabs
- tabs: [
- {name:'购物'},
- {name:'评价'},
- {name:'商家'},
- ],
- swiperCurrent: 0,
- dx: 0,
- swiperCurrentSliderLeft: 0,
- transtionTime:100,
-
- //所有购物车
- shoppingCartAll:[],
- //显示购物车
- showFoot:true,
-
- //配送费
- shippingDees: 0,
- //配送起步价
- startingPrice:0,
-
- //购物车商品价格合计
- goodsTotalPrice: 0,
- //购物车商品数量合计
- goodsTotalNumber: 0,
- //当前门店购物车
- shoppCart: [],
- //foot 高度
- footHeight: '0',
- //显示购物车
- showCar: false,
- //购物车中商品滚动条位置
- carGoodsScrollTop: 0,
- //购物车缓存 Storage 名称
- shoppingCartStorageName: 'shopping_cart',
-
- sizeCalcState: false,
- tabScrollTop: 0,
-
- mainHeight: 0,
- menuCurrentId:1,
-
-
- //购物车显示折扣
- showDiscount:true,
- //手指触摸滑动
- touchData:{},
- //页面滚动条距离顶部的距离
- pageScrollTop: 0,
-
- menuScrollTop: 0,
-
- //多规格当前产品
- currentGoodsData: {},
- //显示规格容器
- showFormBox: false,
- //显示规格动画
- formAnimationData:{},
-
- //购物车位置数据
- cartBasketRect:{},
-
- navStatus: true,
- isBack:true,
- }
- },
- async onLoad(option) {
- const that = this
- uni.showLoading({
- title: '加载中'
- });
- const {
- code,
- data
- } = await CategoryApi.getCategoryList();
- if (code !== 0) {
- return;
- }
-
- //模拟请求数据
- setTimeout(()=>{
- //商家信息
- // that.storeData = testData.storeData,
- //商品列表
- // that.goodsList = testData.goodsData;
- //商品分类信息列表
- that.categoryList =handleTree(data);
- //评论列表
- // that.commentList = testData.commentData,
-
- setTimeout(()=>{
- this.init();
- uni.hideLoading();
- },200)
- },500)
-
- },
- onReady() {
- const that = this
- let sysInfo = uni.getSystemInfoSync();
- //屏幕高度 - 头部导航高度 - 状态栏高度 - 分页高度
- this.mainHeight = sysInfo.screenHeight - 43 - statusBarHeight - 40 + 'px';
-
- let q = uni.createSelectorQuery()
- setTimeout(function(){
- q.select('.cart').boundingClientRect(data => {
- that.cartBasketRect = data
- }).exec();
- },100)
- that.calcSize();
- },
- onBackPress(event) {
-
- if(this.showFormBox){
- this.hiddenForm()
- return true
- }
- if(!this.isBack){
- this.$refs.popup.close()
- return true
- }
-
- },
- onShow() {
- this.init();
- },
- mounted() {
- let that = this
-
- },
- watch:{
- showStoreBox(val,oldVal){
- if(val == true){
-
- this.showStoreBoxFunc();
- }else{
- this.hiddenStoreBoxFunc();
- }
- }
- },
-
- onPageScroll(e) {
- let that = this
- let top = e.scrollTop
- that.pageScrollTop = e.scrollTop
- that.pageScroll = e
-
- if(top < 120){
- if(that.navSearchWidth >= 3){
- if(top<3){
- that.navSearchWidth = 3
- that.navSearchBgOpacity = 0
- that.navSearchColor = '#ffffff'
- }else{
- let n = top * (120/100)
- if(n > 100){
- n = 100
- }
- that.navSearchWidth = n
- //that.navSearchBgOpacity =1
- that.navSearchBgOpacity = top * (1/100)
- that.navSearchColor = '#888888'
- }
- }
- }else{
- that.navSearchWidth = 100
- that.navSearchBgOpacity = 1
- that.navSearchColor = '#888888'
- }
-
- let view = uni.createSelectorQuery().select(".main");
- view.fields({
- rect: true
- }, data => {
- if(data != null){
- if(data.top <= statusBarHeight+44){
- that.goodsBoxScroll = true
- }else{
- that.goodsBoxScroll = false
- }
- }
-
- }).exec();
- },
- methods: {
-
- init(){
- let that = this;
- //假设这是从后台获取的商品数据
- let goods = this.goodsList;
- //商品初始化
- // for(let i in goods){
- // goods[i].purchases = 3
- // }
- that.shoppCart = []
- let carts = uni.getStorageSync(that.shoppingCartStorageName) || [];
- console.log(carts);
- //根据缓存数据 获取购物车中属于本商店的商品
- for(let i in carts){
- if(carts[i].store_id == that.storeData.store_id){
- that.shoppCart = carts[i].shopping_cart ? carts[i].shopping_cart : [];
- break;
- }
- }
- that.goodsTotalPrice = 0;
- that.goodsTotalNumber = 0;
- for(let i in that.shoppCart){
- for(let j in goods){
- if(goods[j].id == that.shoppCart[i].id){
- goods[j].number = that.shoppCart[i].number
- }
- }
- //计算商品总价
- that.goodsTotalPrice += that.shoppCart[i].total
- //商品总数量
- that.goodsTotalNumber += that.shoppCart[i].number
- }
- //初始化商品列表
- that.goodsList = goods;
-
- //初始化起步价和配送费
- that.starting_price = that.storeData.starting_price;
- that.shipping_dees = that.storeData.shipping_dees;
-
- that.setLabelNumber();
- },
- navBack(){
- if(getCurrentPages().length>1){
- uni.navigateBack();
- }else{
- // #ifdef H5
- history.back()
- // #endif
- // #ifndef H5
- uni.reLaunch({
- url: '/pages/index/index'
- });
- // #endif
- }
- },
- popupChange(e){
- this.isBack = !e.show
- },
- //-----------------------------------------------------------------------------------
- //显示 规格
- showForm(goods){
- var that = this;
- let goodsCart = that.getStoreCart();
-
- if(goodsCart){
- let currentGoods = null
- for(let i in goodsCart){
- if(goodsCart[i].id == goods.id){
- currentGoods = goodsCart[i]
- break
- }
- }
- if(currentGoods){
- let selectStatus = false
- for (let i in goods.form_child){
- if(goods.form_child[i].id == currentGoods.current_form.id){
- if(!selectStatus){
- goods.form_child[i].select = true
- goods.number = currentGoods.number
- selectStatus = true
- }else{
- goods.form_child[i].select = false
- }
- }else{
- goods.form_child[i].select = false
- }
- }
- }
-
- }
- that.currentGoodsData = goods
- that.$refs.popup.open()
- },
- //隐藏规格
- hiddenForm(){
- this.$refs.popup.close();
- },
- formFirstAddGoods(){
- let that = this
-
- that.formAddGoodsChange(1,that.currentGoodsData)
- that.touchOnAddGoods('#ggAddBtn',that.currentGoodsData)
- },
- //加入购物车
- formAddGoodsChange(number,goodsData){
- let that = this;
- if(number >= 1){
- for(let i in goodsData.form_child){
- if(goodsData.form_child[i].select == true ){
- that.currentGoodsData.current_form = goodsData.form_child[i]
- break
- }
- }
- }
- that.addGoodsChange(number,that.currentGoodsData)
-
- },
- //选择规格
- selectGoodsForm(goods,formChild){
- let that = this
- let data = goods.form_child
- let n = 0
- for (var i in data){
- if(data[i].id == formChild.id){
- data[i].select = true
- }else{
- data[i].select = false
- }
- }
- let goodsCart = that.getStoreCart();
- if(goodsCart){
- for(let i in goodsCart){
- if(goodsCart[i].id == goods.id && goodsCart[i].current_form.id == formChild.id){
- n = goodsCart[i].number
- break;
- }
- }
- }
-
- goods.number = n
- this.currentGoodsData = goods
- },
-
- //获取该商品在购物车的数量
- getCartGoodsNum(goods){
- let cart = this.getStoreCart()
- let n = 0
- if(cart){
- for(let i in cart){
- if(cart[i].id == goods.id){
- n += cart[i].number
- }
- }
- }
- return n
- },
- //-----------------------------------------------------------------------------------
- //获取门店购物车
- getStoreCart(){
- const that = this
- return that.shoppCart
- },
-
-
- //---------------------------------------------------------------------------------
-
-
- swiperChange(index) {
- this.swiperCurrent = index;
- this.swiperCurrentSliderLeft= 70 * index;
- },
- transition({ detail: { dx } }) {
- // this.$refs.tabs.setDx(dx);
- },
- animationfinish({detail: { current }}) {
- /* this.$refs.tabs.setFinishCurrent(current); */
- this.swiperCurrent = current;
- this.current = current;
- this.swiperChange(current);
- this.showFoot = current == 0 && this.showStoreBox != true ? true : false;
-
- },
-
- //一级分类点击
- showCategory(item){
-
- const that = this
- that.isBoxScroll = true;
- that.menuCurrentId = item.id;
- setTimeout(()=>{
- let index = that.categoryList.findIndex(sitem=>sitem.id === item.id);
- that.tabScrollTop = that.categoryList[index].top;
- that.isBoxScroll = false
- },100)
-
- },
- //右侧栏滚动
- asideScroll(e){
- const that = this;
- const scrollTop = Math.round(e.detail.scrollTop);
- that.calcSize()
- const tabs = that.categoryList.filter(item=>item.top <= scrollTop).reverse();
-
- if(tabs.length > 0){
- that.menuCurrentId = tabs[0].id;
- }
- const menuNum = that.categoryList.length
- const cNum = tabs.length
- // 定位在第4个分类,当分类滑动到第4格时将不再变换位置。
- const n = 4
- if(cNum>n){
- that.menuScrollTop = (cNum - n) * 45
- }else{
- that.menuScrollTop = 0
- }
- },
- //计算右侧栏每个tab的高度等信息
- calcSize(event){
- let h = 0;
- // if(this.sizeCalcState){
- // return false
- // }
- this.categoryList.forEach(item=>{
- let view = uni.createSelectorQuery().select("#goodsBox" + item.id);
- view.fields({
- size: true
- }, data => {
- if(data != null){
- item.top = h;
- h += Math.round(data.height);
- item.bottom = h;
- }
-
- }).exec();
- })
- this.sizeCalcState = true;
- },
-
- //小球跳跃动画
- touchOnAddGoods(ele,data){
- const that = this;
- let q = uni.createSelectorQuery()
- q.select(ele).boundingClientRect(res => {
- that.$refs.inCart.addToCart(res,data.id);
- }).exec();
-
- },
- //新增商品计算价格
- addGoodsChange(number,rowData){
-
- number = Number(number)
- var that = this;
-
- let shoppCart = [];
- let totalPrice = 0;
- let totalNumber = 0;
- let existedGoods = false;
- //门店第一次添加商品
- let isFirstAddGoods = true;
- //是否为有规格的商品
- let isFormGoods = false
- if(rowData.current_form){
- isFormGoods = true
- }
- let deleteGoods = null
- let carts = uni.getStorageSync(that.shoppingCartStorageName) || [];
-
- if(carts.length != 0){
- isFirstAddGoods = false
- //根据缓存数据 获取购物车中属于本商店的商品
- for(let i in carts){
- if(carts[i].store_id == that.storeData.store_id){
- shoppCart = carts[i].shopping_cart ? carts[i].shopping_cart : [];
- break;
- }
- }
- //检查该商品是否为第一次添加,
- for(var i in shoppCart){
- // if(shoppCart[i].id == rowData.id){
- // // 是多规格商品
- // if(isFormGoods){
- // //规格相同
- // if(shoppCart[i].current_form.id == rowData.current_form.id){
- // //数量为0,在购物车中移除该商品
- // if(number <= 0){
- // deleteGoods = shoppCart[i];
- // break;
- // }else{
- // // 直接修改商品数量,并计算出单品合计
- // shoppCart[i].price = rowData.current_form.price
- // shoppCart[i].oldprice = rowData.current_form.oldprice
- // shoppCart[i].total = number * rowData.current_form.price
- // }
-
- // }
- // }else{
- // // 不是多规格商品
- // }
- // }
- if(shoppCart[i].id == rowData.id){
- if(isFormGoods){
- //相同商品比较规格是否也相同
- if(shoppCart[i].current_form.id == rowData.current_form.id){
- existedGoods = true;
- }
- }else{
- existedGoods = true;
- }
- if(existedGoods){
- //在购物车中移除该商品
- if(number <= 0){
- deleteGoods = shoppCart[i];
- break;
- }
- //非第一次添加,直接修改商品数量,并计算出单品合计
- if(isFormGoods){
- shoppCart[i].price = rowData.current_form.price
- shoppCart[i].oldprice = rowData.current_form.oldprice
- shoppCart[i].total = number * rowData.current_form.price
- }else{
- shoppCart[i].price = rowData.price
- shoppCart[i].total = number * rowData.price
- shoppCart[i].oldprice = rowData.oldprice
- }
- shoppCart[i].number = rowData.number = number
- break;
- }
- }
- }
- }
- //在购物车中移除该商品
- if(deleteGoods != null){
- if(carts){
- //根据缓存数据 获取购物车中属于本商店的商品
- for(let i in carts){
- if(carts[i].store_id == that.storeData.store_id){
- var index = shoppCart.indexOf(deleteGoods);
-
- if (index > -1) {
- shoppCart.splice(index, 1);
- }
- carts[i].shopping_cart = shoppCart
- uni.setStorageSync(that.shoppingCartStorageName,carts);
- break;
- }
- }
- setTimeout(()=>{
- this.init();
- },100)
- }else{
- that.storeData.shopping_cart = []
- uni.setStorageSync(that.shoppingCartStorageName,that.storeData);
- }
-
- return
- }
-
- //第一次添加
- if(!existedGoods){
- if(rowData.form){
- rowData.price = rowData.current_form.price
- rowData.oldprice = rowData.current_form.oldprice
- rowData.total = number * rowData.current_form.price
- }else{
- rowData.total = number * rowData.price
- }
- rowData.number = number;
- shoppCart.push(rowData);
- }
-
- //计算总商品数量和总价
- for(var i in shoppCart){
- //总价
- totalPrice += shoppCart[i].total
- totalNumber += shoppCart[i].number
- }
- //更改商品列表中的已购买数量
- for(let i in that.goodsList){
- if(that.goodsList[i].id == rowData.id){
- that.goodsList[i] = rowData
- break;
- }
- }
-
- that.goodsTotalPrice = totalPrice
- that.goodsTotalNumber = totalNumber
-
- that.shoppCart = shoppCart;
- that.storeData.shopping_cart = shoppCart;
-
- that.setLabelNumber();
- if(isFirstAddGoods){
- carts.push(that.storeData)
- }
- if(that.goodsTotalNumber == 0){
- that.hideShoppingCar();
- }
- //购物车商品数据缓存至本地
- uni.setStorageSync(that.shoppingCartStorageName,carts);
- },
-
- //计算每类商品购买的总数
- setLabelNumber(){
- let that = this;
- //计算每一类购买商品的总数量
- for(let j in that.categoryList){
- let n = 0;
- for(var i in that.shoppCart){
- if(that.shoppCart[i].type_id == that.categoryList[j].id){
- n += that.shoppCart[i].number;
- }
- }
- that.categoryList[j].number = n;
- }
- },
-
- //去结算
- jiesuan(){
-
- this.navTo("/pages/order/preview?sid=" + this.storeData.store_id)
-
- },
- navTo(url){
- let that = this;
- if(that.navStatus){
- that.navStatus = false
- uni.navigateTo({
- url: url,
- complete:function(){
- that.navStatus = true
- }
- })
- }
- },
- //联系商家
- contact(){
- uni.showModal({
- title:"",
- content:"联系商家"
- })
- },
-
- showStoreBoxFunc(){
- this.storeInfoBoxHeight = uni.getSystemInfoSync().screenHeight-136;
- this.$set(this.$data,'showFoot',false);
- this.showStoreBox = true;
- uni.pageScrollTo({
- duration:0,
- scrollTop:0
- })
- },
- hiddenStoreBoxFunc(){
- this.storeInfoBoxHeight = 100;
- this.showStoreBox = false;
- if(this.swiperCurrent == 0){
- this.$set(this.$data,'showFoot',true);
- }
- },
-
- mpClear(e) {
- // TODO nvue 取消冒泡
- e.stopPropagation()
- },
-
- //显示购物车
- showShoppingCar(){
- if(this.goodsTotalNumber == 0){
- return;
- }
- this.footHeight = '100%';
- this.showCar = true;
- this.carGoodsScrollTop = 0;
- },
- //隐藏购物车
- hideShoppingCar(){
- this.footHeight = '0';
- this.showCar = false;
- },
- //清空该门店的购物车
- clearShoppingCart(){
- let that = this;
- that.shoppCart = [];
- that.storeData.shopping_cart = [];
- for(let i in that.shoppingCartAll){
- if(that.shoppingCartAll[i].store_id == that.storeData.store_id){
- that.shoppingCartAll[i] = that.storeData
- }
- }
- uni.setStorageSync(that.shoppingCartStorageName,that.shoppingCartAll);
-
- for(let i in that.goodsList){
- that.goodsList[i].number = 0;
- }
- for(let i in that.categoryList){
- that.categoryList[i].number = 0;
- }
- //购物车商品价格合计
- that.goodsTotalPrice = 0;
- //购物车商品数量合计
- that.goodsTotalNumber = 0;
- that.hideShoppingCar();
- },
- hrefGoodsInfo(id){
-
- this.navTo('/pages/product/product?id=' + id)
- },
- //拨打电话
- goCall(phone){
- if(!phone){
- return;
- }
- uni.makePhoneCall({
- phoneNumber: phone //仅为示例
- });
- },
-
- touchStart(e){
-
- this.touchData.clientX=e.changedTouches[0].clientX;
-
- this.touchData.clientY=e.changedTouches[0].clientY;
- },
- }
- }
- </script>
- <style lang="scss">
- //主题颜色
- $hx-theme-color: #FFC107;
- $hx-theme-color-light: #FFEB3B;
-
- .add{
- position: fixed;
- right: 60upx;
- top: 300upx;
- z-index: 999;
- }
- .ctn{
-
- /* border: 1px solid #e3e3e3; */
- width: 100%;
- display: flex;
- justify-content: flex-end;
- overflow: hidden;
- align-items: center;
- .searchCtn{
- display: flex;
- border-radius: 80upx;
- padding: 8upx 12upx;
- line-height: 44upx;
- background: #e0e0e0;
- overflow: hidden;
- align-items: center;
- min-width: 22px;
- }
- .leftBox{
- display: flex;
- width: 53px;
- justify-content: space-between;
- flex: none;
- margin: 0 8px;
- }
- .jrNull{
- /* #ifdef MP */
- width: 95px;
- flex: none;
- /* #endif */
- }
- }
-
-
- page{
- background: #ffffff;
- }
- .hx-bb{
- border-bottom: 1px solid $uni-border-color;
- }
- .hx-txt-10{
- font-size: 10px;
- }
- .hx-txt-12{
- font-size: 12px;
- }
- .hx-txt-14{
- font-size: 14px;
- }
- .hx-txt-16{
- font-size: 16px;
- }
- .hx-txt-18{
- font-size: 18px;
- }
- .hx-txt-22{
- font-size: 22px;
- }
- .hx-color-gray{
- color: #bbbbbb;
- }
- .hx-color-white{
- color: #FFFFFF;
- }
- .hx-color-black{
- color: #333333;
- }
- .hx-txt-weigth{
- font-weight: bold;
- }
- .hx-mb-10{
- margin-bottom: 10px;
- }
- .hx-mt-15{
- margin-top: 15px;
- }
- .hx-shadow{
- box-shadow: 0px 6upx 16upx rgba(173, 173, 173, 0.2);
- }
- .miniBtn{
- position: relative;
- padding: 0 12px;
- border-radius: 20px;
- height: 24px;
- line-height: 24px;
- text-align: center;
- background: linear-gradient(100deg, #FFEB3B, #FFC107);
- font-size: 10px;
- color: #333;
- .num{
- position: absolute;
- right: 0;
- top: -10px;
- width: 18px;
- height: 18px;
- line-height: 18px;
- font-size: 10px;
- color: #fff;
- background-color: #ff5722;
- text-align: center;
- border-radius: 50%;
-
- }
- }
- .hx-store{
- .header{
- position: relative;
- min-height: 230px;
- &-bg{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 2;
- width: 100%;
- height: 142px;
- }
- &-bg-black{
- position: absolute;
- left: 0;
- top: 142px;
- bottom: 0;
- z-index: 1;
- background-color: #ffffff;
- width: 100%;
- transition: background-color 0.2s;
- }
- &-bg-gray{
- position: absolute;
- left: 0;
- top: 142px;
- bottom: -16px;
- z-index: 1;
- background-color: #afafaf;
- width: 100%;
- transition: background-color 0.2s;
- }
- &-top-Placeholder{
- height: 105px;
- }
- .storeInfo{
- position: relative;
- z-index: 2;
- background: #ffffff;
- height: 100px;
- border-radius: 6px;
- padding: 12px;
- margin-bottom: 4px;
- transition: all 0.2s;
- .shrink-box{
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- text-align: center;
- font-size: 20px;
- color: #a2a8ab;
- }
- .storeAvatar{
- position: absolute;
- width: 50px;
- height: 50px;
- right: 16px;
- top: -25px;
- background: #ffffff;
- border-radius: 4px;
-
- }
- }
- }
- .container{
- margin: 0 32upx;
- }
- .tabs-box{
- width: 100%;
- position: sticky;
- top: calc(44px + var(--status-bar-height));
- z-index: 10;
- background-color: white;
- border-bottom: 1px solid #efefef;
- height: 40px;
-
- .hx-tabs{
- position: relative;
- display: flex;
- height:100%;
- &-item{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- width: 70px;
- color:#666666;
- text{
- font-size: 16px;
- }
-
- }
- &-active{
- color:#333333;
- font-weight: bold;
- }
- &-slider-box{
- position: absolute;
- display: flex;
- justify-content: center;
- bottom: 0;
- width: 70px;
- }
- &-slider{
- display: flex;
- background: #f6d200;
- width: 30px;
- height: 3px;
- }
- }
- }
- .main{
- position: relative;
- background-color: #ffffff;
-
- #mainSwiper{
- background-color: #eeeeee;
- position: sticky;
- top: calc(40px + 44px + var(--status-bar-height));
- .scroll-items{
- // 商品列表样式
- .category-list{
- width: 100%;
- background-color: #fff;
- display: flex;
- padding-bottom: 50px;
-
- .left,.right{
- background: #fff;
- position: absolute;
- top:0;
- bottom: 0upx;
- }
- .left{
- width: 24%;
- left: 0upx;
- background-color: #f6f3f3;
-
- .row{
- width: 100%;
- height: 45px;
- display: flex;
- align-items: center;
- overflow: hidden;
- position: relative;
- .text{
- width: 100%;
- font-size: 14px;
- color:#999999;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- text-align: center;
- padding: 0 16px;
- }
- &-number{
- position: absolute;
- width: 18px;
- height: 18px;
- right: 4px;
- top: 4px;
- background: #ff5722;
- border-radius: 50%;
- line-height: 18px;
- text-align: center;
- font-size: 10px;
- color: #ffffff;
- }
- &.active{
- height: 45px;
- background-color: #fff;
- .text{
- font-size: 14px;
-
- }
- }
- }
- .row:last-child{
- margin-bottom: 200upx;
- }
- }
- .right{
- width: 76%;
- left: 24%;
- .goodsListBox{
- padding-bottom: 100px;
- .category{
- // width: 94%;
- padding: 0 15px 10px 15px;
- .s-item{
- height: 45px;
- line-height: 45px;
- font-size: 16px;
- background: #ffffff;
- color: #555555;
- position: sticky;
- top: 0;
- z-index: 18;
- }
- .list:last-child{
- margin-bottom: 0;
- }
- .list{
- margin-bottom: 20px;
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- .box:first-child{
- .m-store-item{
- margin-top: 0;
- }
- }
- .box{
- width: 100%;
-
- .m-store-item{
- display: flex;
- flex-direction: row;
- width: 100%;
- justify-content: space-between;
- align-items: flex-end;
- margin-top: 15px;
- margin-bottom: 15px;
- .m-img{
- flex: 0 0 85px;
- height: 85px;
- background: #eee;
- border-radius: 4px;
- }
- .m-text{
- flex: 1;
- position: relative;
- height: 85px;
- padding: 0 6px;
- display: flex;
- align-content: space-between;
- flex-direction: column;
- .m-title{
- font-size: 16px;
- color:#555555;
- height: 21px;
- font-weight: bold;
- }
- .m-descripe{
- font-size: 12px;
- color:#999999;
- margin-top: 5px;
- height: 35px;
- }
- .m-price-box{
- height: 24px;
- font-weight: bold;
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- .symbol{
- color:#ff582b;
- font-size: 12px;
- }
- .m-price{
- position: relative;
- top: 2px;
- font-size: 18px;
- color:#ff582b;
- }
- .m-old-price{
- margin-left: 3px;
- display: flex;
- flex-direction: row;
- font-size: 10px;
- color:#999999;
- margin-top: 5upx;
- text-decoration: line-through;
- font-weight: normal;
- }
- }
- .m-distance{
- position: absolute;
- right: 0;
- bottom: -4px;
- z-index: 16;
- color:#b2b2b2;
- font-size: 20upx;
- text-align: right;
- .jumpPosition{
- position: absolute;
- bottom: 23px;
- right: 0;
- z-index: 2;
- width: 28px;
- height: 28px;
- }
- }
-
- }
-
- }
- }
- }
- }
- }
- }
- }
- }
- .evaluate-box{
-
- }
- .business-box{
-
- .info-list{
- background: #ffffff;
- padding: 0 15px;
- &-container{
- line-height: 46px;
- height: 46px;
- display: flex;
- flex-direction: row;
- [class*="hxicon-"]{
- color: #a2a2a2;
- margin-right: 8px;
- }
- text{
- font-size: 14px;
- }
- .right{
-
- float: right;
- color: #dddddd;
- display: flex;
- flex-direction: row;
- align-items:center;
- [class*="hxicon-"]{
- color: #dddddd;
- margin-right: 0;
- font-size: 16px;
- }
- }
- }
-
- }
- }
- }
-
- }
- .foot{
- position: fixed;
- display: flex;
- z-index: 999;
-
- justify-content:center;
- align-items : center;
- bottom: 0;
- height: 100%;
- width: 100%;
-
- /*width: calc(100% - 32px);*/
- .btn-box{
- position:absolute;
- display: flex;
- bottom: 15px;
- justify-content:center;
- align-items : center;
- margin:0;
- height: 50px;
- width: calc(100% - 32px);
- z-index: 9;
- &-left{
- background: #222222;
- border-top-left-radius:50px;
- border-top-right-radius:9px;
- border-bottom-left-radius:50px;
- border-bottom-right-radius:9px;
- padding-left: 6upx;
- display: flex;
- flex-direction:column;
- justify-content:center;
- align-self: center;
- width: 70px;
- height: 100%;
- color: #f6d200;
- text-align: center;
- .imgBox{
- display: flex;
- text-align: center;
- justify-content:center;
- image{
- width: 20px;
- height: 20px;
- }
- }
- text{
- font-size: 20upx;
- }
- }
- &-line{
- background: #ffffff;
- width: 2px;
- height: 100%;
- }
- &-center{
- height: 100%;
- flex: auto;
- display: flex;
- justify-content:flex-start;
- align-self: center;
- align-items: center;
- background: #222222;
- border-top-left-radius:8upx;
- border-bottom-left-radius:8upx;
- padding-left: 10upx;
- .cart{
- position: relative;
- width: 36px;
- height: 36px;
- image{
- width: 100%;
- height: 100%;
- }
- .tag{
- position: absolute;
- right: 12upx;
- top: 16upx;
- height: 18px;
- width: 18px;
- background-color: #ff4000;
- color: #ffffff;
- border-radius: 50%;
- z-index: 1;
- font-size: 10px;
- text-align: center;
- line-height: 18px;
- }
- }
- .priceBox{
- flex: auto;
- }
-
- }
- &-right{
- width: 70px;
- height: 100%;
- position: relative;
- display: flex;
- justify-content:flex-start;
- align-self: center;
- align-items: center;
-
-
- .pscj{
- width: 100%;
- height: 100%;
- border-top-right-radius:100upx;
- border-bottom-right-radius:100upx;
- background: #222222;
- text-align: center;
- display: flex;
- justify-content:center;
- align-self: center;
- align-items: center;
- }
- .jiesuan{
- width: 100%;
- height: 100%;
- font-size: 28upx;
- border-top-right-radius:100upx;
- border-bottom-right-radius:100upx;
- text-align: center;
- display: flex;
- justify-content:center;
- align-self: center;
- align-items: center;
- background: linear-gradient(45deg, $hx-theme-color-light, $hx-theme-color);
- font-weight: bold;
- color: #222222;
- }
- }
- }
- .zz{
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0,0,0,.7);
- z-index: 1;
- }
- .cart-box{
- display: flex;
- justify-content: flex-start;
- flex-flow: column;
- background: #ffffff;
- position: absolute;
- bottom: 0;
- z-index: 2;
- max-height: 66%;
-
- padding-bottom: 62px;
- border-top-left-radius: 16px;
- border-top-right-radius: 16px;
- overflow: hidden;
- width: 100%;
- .rebate-box{
- height: 30px;
- background: #FFC107;
- color: #FF9900;
- text-align: center;
- line-height: 30px;
- font-size: 14px;
- }
- .box-container{
- box-sizing: border-box;
- padding:0 16px;
- }
- .operating-box{
- font-size: 12px;
- line-height: 40px;
- height: 40px;
- border-bottom: 1px solid #f6f6f6;
- color: #666666;
- display: flex;
- flex-direction: row;
- &_right{
- flex: 1;
- }
- &_left{
- display: flex;
- flex-direction: row;
- }
-
- }
- .goods-box{
- height: 100%;
- overflow: hidden;
- flex: 1;
- display: flex;
- .goods-list-scroll{
- height: 100%;
-
- .goods-list{
-
- width: 100%;
- display: flex;
- flex-wrap: wrap;
-
- .box{
- width: 100%;
- border-bottom: 1px solid #f6f6f6;
- box-sizing: border-box;
- padding: 0 16px;
- .m-store-item{
- display: flex;
- flex-direction: row;
- width: 100%;
- justify-content: space-between;
- align-items: flex-end;
- padding-top: 15px;
- padding-bottom: 15px;
- .m-img{
- flex: 0 0 85px;
- height: 85px;
- background: #eee;
- border-radius: 4px;
- }
- .m-text{
- flex: 1;
- position: relative;
- height: 85px;
- padding: 0 6px;
- display: flex;
- align-content: space-between;
- flex-direction: column;
- .m-title{
- font-size: 16px;
- color:#555555;
- height: 21px;
- font-weight: bold;
- }
- .m-descripe{
- font-size: 12px;
- color:#999999;
- margin-top: 5px;
- height: 35px;
- }
- .m-price-box{
- height: 24px;
- font-weight: bold;
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- .symbol{
- color:#ff582b;
- font-size: 12px;
- }
- .m-price{
- position: relative;
- top: 2px;
- font-size: 18px;
- color:#ff582b;
- }
- .m-old-price{
- margin-left: 3px;
- display: flex;
- flex-direction: row;
- font-size: 10px;
- color:#999999;
- margin-top: 5upx;
- text-decoration: line-through;
- font-weight: normal;
- }
- }
- .m-distance{
- position: absolute;
- right: 0;
- bottom: -4px;
- z-index: 16;
- color:#b2b2b2;
- font-size: 20upx;
- text-align: right;
- .jumpPosition{
- position: absolute;
- bottom: 23px;
- right: 0;
- z-index: 2;
- width: 28px;
- height: 28px;
- }
- }
-
- }
-
- }
- }
- }
- }
- }
- }
- }
- }
- .form-main{
-
- display: flex;
- flex-direction: column;
- justify-content: left;
- padding: 15px;
-
- .form-main_ctn{
- display: flex;
- flex-direction: column;
- justify-content: left;
- padding: 23px 22px 22px 22px;
- background-color: #fff;
- border-radius: 8px;
- .godos_tit{
- margin-top: 4px;
- margin-bottom: 6px;
- font-size: 18px;
- font-weight: bold;
- color: #333;
- }
- .gg_tit{
- margin-top: 8px;
- font-size: 14px;
- font-weight: bold;
- color: #555;
- }
- .gg_box{
- margin-top: 8px;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- font-size: 12;
- color: #333;
- .item{
- margin-right: 14px;
- margin-bottom: 14px;
- border: 1px solid #f1f1f1;
- border-radius: 4px;
- padding: 4px 6px;
- }
- .item.active{
- border-color: #ffe081;
- background-color: #fff0b7;
- }
-
- }
- .select_gg{
- margin: 26px -12px 0;
- padding: 6px 12px;
- color: #999;
- background-color: #f9f9f9;
- display: flex;
- flex-direction: row;
- .lable{
-
- }
- .select_gg_box{
- flex: 1;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- .gg-item{
- color: #333;
- .gg-item-cut{
- margin-left: 3px;
- margin-right: 3px;
- }
- }
- .gg-item:last-child{
- .gg-item-cut{
- display: none;
- }
- }
- }
-
- }
- .bottom{
- position: relative;
- display: flex;
- flex-direction: row;
- margin-top: 12px;
- .price_box{
- flex: 1;
- lign-items: baseline;
- color: #ff582b;
- font-size: 14px;
- position: relative;
- top: 4px;
- .price{
- font-size: 24px;
- }
- }
- .jumpPosition{
- position: absolute;
- right: 16px;
- top: 2px;
- }
- .form-btn-box{
- height: 30px;
- line-height: 30px;
- .add-btn{
- border-radius: 50px;
- background-color: #ffce3c;
- padding: 0 12px;
- display: flex;
- height: 30px;
- line-height: 30px;
- align-items: center;
- i{
- font-weight: bold;
- font-size: 18px;
- margin-right: 3px;
- margin-left: -4px;
- }
- text{
-
- font-size: 14px;
- font-weight: bold;
- color: #363636;
- }
- }
- }
- }
-
- }
-
- .close{
- position: absolute;
- left: 50%;
- margin-left: -20px;
- bottom: -70px;
- border-radius: 50%;
- height: 40px;
- width: 40px;
- background-color: #fff;
- opacity: 0.7;
- text-align: center;
- line-height: 43px;
- i{
- font-weight: bold;
- font-size: 22px;
- }
- }
- }
- </style>
|