123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025 |
- <template>
- <view class="container" :style="{ height: winHeight+ 'px' }">
- <!-- #ifdef MP -->
- <view class="cart_nav">
- <nav-bar iconColor='#fff' ref="navBarRef" :navTitle="merchanInfo.name" backgroundColor="#FF6702" :isBackgroundColor="false">
- </nav-bar>
- </view>
- <!-- #endif -->
- <view class="main">
- <view class="nav">
- <view class="header">
- <view class="left">
- <view class="flex-y-center">
- <image style="width: 96rpx; height: 96rpx;border-radius: 6rpx;" :src="merchanInfo.avatar"></image>
- <view style="flex: 1;margin-left: 20rpx;">
- <view class="store-name">
- <navigator :url="`/pages/merchant/detail/index?merId=${merId}`" hover-class="none">
- <view class="flex-center">
- <text style="font-weight: 600;font-size: 35rpx;color: #141414;">{{ merchanInfo.name }}</text>
- <view class="iconfont icon-jiantou" style="font-size: 24rpx;"></view>
- </view>
- </navigator>
- <button hover-class="none" class="merCollect" :class="!merchanInfo.isCollect ? 'care' : 'bg-color'" @click="followToggle">
- <text v-show="merchanInfo.isCollect" class="iconfont icon-guanzhu" style="margin-top: 6rpx;"></text>
- {{ merchanInfo.isCollect ? '已关注' : '关注' }}
- </button>
- </view>
- <view class="store-score" style="margin: 7rpx 0;">
- <text style="font-weight: 600;font-size: 27rpx;color: #FD6716;">{{ merchanInfo.starLevel }}分</text>
- <text style="font-size: 21rpx;color: #999999;margin-left: 6rpx;">月销 {{ merchanInfo.sales || 0 }}</text>
- </view>
- </view>
- </view>
- <view class="store-addr">
- <text style="font-size: 23rpx;color: #141414;">商家地址:{{ merchanInfo.addressDetail }}</text>
- </view>
-
- <!-- 提示 -->
- <view v-if="merchanInfo.headline.length" class="store-tip flex-y-center mt-10 mb-10 pl-32">
- <!-- 左侧固定图片 -->
- <text class='iconfont icon-laba ' style="font-size: 24rpx;margin-right: 20rpx;"></text>
-
- <!-- 右侧文字轮播区域 -->
- <view class="flex-1 h-40 mt-10" style="overflow: hidden;">
- <swiper class="swiper" :indicator-dots="false" circular :autoplay="true" :interval="3000" vertical>
- <block v-for="(item,index) in merchanInfo.headline" :key='index'>
- <swiper-item catchtouchmove='catchTouchMove'>
- <view class='newsTitle swiper-item'>
- <text>{{item.title}}</text>
- </view>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="width: 100%;height: 10rpx; background-color: #F8F9FD;"></view>
- </view>
- <view class="let-box">
- <view @click="onTabChang(0)" class="let-box1">
- <text :class="{ 'actave1': tabindex == 0 }" class="let-txt">下单</text>
- <view :class="{ 'actave': tabindex == 0 }" class="let-line"></view>
- </view>
- <view @click="onTabChang(1)" class="let-box1">
- <text :class="{ 'actave1': tabindex == 1 }" class="let-txt">评价</text>
- <view :class="{ 'actave': tabindex == 1 }" class="let-line"></view>
- </view>
- </view>
- <template v-if="tabindex == 0">
- <view class="content">
- <scroll-view style="height: 950rpx" class="menus" scroll-with-animation scroll-y>
- <view class="wrapper">
- <view class="menu" :id="`menu-${item.id}`" :class="{'current': item.id === currentCateId}" v-for="(item, index) in goods"
- :key="index" @tap="handleMenuTap(item.id)" v-if="item.childList.length">
- <text>{{ item.name }}</text>
- <view class="dot" v-show="menuCartNum(item.id)">{{ menuCartNum(item.id) }}</view>
- </view>
- </view>
- </scroll-view>
- <!-- goods list begin -->
- <scroll-view class="goods" scroll-with-animation scroll-y :scroll-top="cateScrollTop" @scroll="handleGoodsScroll"
- :scroll-into-view="menuScrollIntoView">
- <view class="wrapper">
- <view class="list">
- <!-- category begin -->
- <view style="font-weight: 400;font-size: 21rpx;color: #999999;text-align: center;margin-bottom: 19rpx;">————温馨提示:湿度选择,避免浪费
- ————</view>
- <view class="category" v-for="(item, index) in goods" :key="index" :id="`cate-${item.id}`" v-if="item.childList.length">
- <view class="title">
- <text v-if="item.childList.length">{{ item.name }}</text>
- <image :src="item.icon" class="icon"></image>
- </view>
- <view class="items">
- <!-- 商品 begin -->
- <!-- <view v-if="!item.goodsList">无商品</view> -->
- <view class="good" v-for="(good, key) in item.childList" :key="key">
- <image :src="good.icon" class="image" @tap="getOrderdetils(good)"></image>
- <view class="right">
- <text class="name">{{ good.name }}</text>
- <view class="tips">
- <text>销量 {{good.sales}}</text>
- <text style="margin-left: 39rpx;">好评率 {{ good.replyChance*100}}%</text>
- </view>
- <view class="price_and_action">
- <text class="price">¥{{ good.price }}</text>
- <view class="btn-group">
- <button type="primary" class="btn property_btn bg-color" hover-class="none" size="mini" @tap="Selectpox(item, good)">
- 选规格
- </button>
- <!-- <view class="dot" v-show="goodCartNum(good.id)">{{ goodCartNum(good.id) }}</view> -->
- </view>
- </view>
- </view>
- </view>
- <!-- 商品 end -->
- </view>
- </view>
- <!-- category end -->
- </view>
- </view>
- </scroll-view>
- <!-- goods list end -->
- </view>
- <!-- content end -->
- <!-- 购物车栏 begin -->
- <view class="cart-box">
- <view class="mark">
- <image src="/static/img/ic-shopping-cart.png" class="cart-img" @tap="cart.length !== 0 ? lockcatble = !lockcatble : ''"></image>
- <view class="tag" v-if="cart.length > 0">{{ getCartGoodsNumber }}</view>
- </view>
- <view style="font-weight: 500;font-size: 27rpx;color: #999999;" class="price" v-if="cart.length === 0">配送费2元</view>
- <view style="font-weight: 600;font-size: 27rpx;color: #FFFFFF;" class="price" v-else>¥{{ getCartGoodsPrice || 0 }}</view>
- <button :style="{backgroundColor: disabledPay ? '#000' : ''}" type="primary" class="pay-btn bg-color" @tap="toPay"
- :disabled="disabledPay">
- {{ disabledPay ? `差${spread}元起送` : '去结算' }}
- </button>
- </view>
- <!-- 购物车栏 end -->
- <!-- 打开的购物车 -->
- <view class="mode" v-if="cart.length !== 0 && lockcatble" style="z-index: 9;">
- <view class="mode-1">
- <!-- 判断数量大于0显示 -->
- <view class="mode-clear" v-if="getCartGoodsNumber>0">
- <text class="mode-txt">数量:<text style="color: #FD6716 ;">({{getCartGoodsNumber}})</text></text>
- <text @tap="cart = [], lockcatble = false" class="mode-txt1">清空</text>
- </view>
- <view class="mode-box">
- <view class="items">
- <!-- 商品 begin -->
- <view class="good" v-for="(good, key) in cart" :key="key">
- <image :src="good.iconText" class="image" @tap="console.log('点击图片')"></image>
- <view class="right" style="margin-left: 50rpx;">
- <text class="name">{{ good.name }}</text>
- <view class="tips">
- <text>{{ good.props_text }}</text>
- <text style="margin-left: 39rpx;">销量 {{good.sales}}</text>
- <text style="margin-left: 39rpx;">好评率 {{ good.replyChance*100}}%</text>
- </view>
- <view class="price_and_action">
- <text class="price">¥{{ good.price * good.number }}</text>
- <view class="btn-group">
- <button type="default" v-show="goodCartNum(good.props_text)" plain class="btn reduce_btn" size="mini"
- hover-class="none" @tap="handleReduceFromCart(item, good)">
- <view class="iconfont iconsami-select">-</view>
- </button>
- <view class="number" v-show="goodCartNum(good.props_text)">{{ goodCartNum(good.props_text) }}</view>
- <button type="primary" class="btn add_btn bg-color" size="min" hover-class="none" @tap="handleAddToCart(item, good, 1)">
- <view class="iconfont iconadd-select">+</view>
- </button>
- </view>
- </view>
- </view>
- </view>
- <!-- 商品 end -->
- </view>
- <view style="height: 200rpx;">
- </view>
- </view>
- </view>
- </view>
- <!-- 规格弹窗 -->
- <view class="mode" v-if="selectble">
- <view class="sel-mode-1">
- <view class="good-detail-modal">
- <view class="close" @click="Close">
- <text style="padding: 10rpx; 20rpx">x</text>
- </view>
- <view class="sel-2">
- <image class="neximg" :src="specifications.icon" />
- <view class="nexbox1">
- <view class="name" style="font-size: 28rpx;margin-bottom: 19rpx;color: #000000;">{{specifications.name}}</view>
- <view>
- <text>销量 {{specifications.sales}}</text>
- <text style="margin-left: 39rpx;">好评率 {{ specifications.replyChance*100}}%</text>
- <text style="margin-left: 39rpx;" class="nexbox-txt3">¥ {{specifications.price}}</text>
- </view>
- </view>
- </view>
- <!--规格数组 -->
- <scroll-view class="detail" scroll-y>
- <view class="wrapper">
- <view class="properties">
- <view class="property" v-for="(item, index) in good.property" :key="index">
- <view class="title">
- <text class="name">{{ item.attributeName }}</text>
- <!-- <view class="desc" v-if="item.desc">({{ item.desc }})</view> -->
- </view>
- <view class="values">
- <view class="value" v-for="(value, key) in item.optionList" :key="key" :class="{'default': value.is_default}"
- @tap="changePropertyDefault(index, key)">
- {{ value.optionName }}
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- <!-- 数量 -->
- <view class="sel-6">
- <text>数量</text>
- <!-- 加入购物车 -->
- <view class="btn-group">
- <button v-if="!goodCartNum(specifications.props_text)" type="primary" class="btn property_btn bg-color" size="min"
- hover-class="none" @tap="handleAddToCart(specificationsList, specifications, 1)">
- 加入购物车
- </button>
- <template v-else>
- <button type="default" v-show="goodCartNum(specifications.props_text)" plain class="btn reduce_btn" size="mini"
- hover-class="none" @tap="handleReduceFromCart(specificationsList, specifications)">
- <view class="iconfont iconsami-select">-</view>
- </button>
- <view class="number" v-show="goodCartNum(specifications.props_text)">{{ goodCartNum(specifications.props_text) }}</view>
- <button type="primary" class="btn add_btn bg-color" size="min" hover-class="none" @tap="handleAddToCart(specificationsList, specifications, 1)">
- <view class="iconfont iconadd-select">+</view>
- </button>
- </template>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <template v-if="tabindex == 1">
- <view style="flex: 1;">
- <view class='evaluate-list'>
- <view class='generalComment acea-row row-between-wrapper'>
- <view class='acea-row row-middle font_color'>
- <view class='evaluate'>评分</view>
- <view class='start' :class="'star'+ (replyData.replyStar)">
- </view>
- </view>
- <view><text class='font_color'>{{replyData.replyChance ? (replyData.replyChance)*100 : 0}}%</text>好评率</view>
- </view>
- <view class='nav-tab1 acea-row row-middle'>
- <view class='item' :class='type==0 ? "bg-color":""' @click='changeType(0)'>全部({{replyData.sumCount || 0}})
- </view>
- <view class='item' :class='type==1 ? "bg-color":""' @click='changeType(1)'>好评({{replyData.goodCount || 0}})
- </view>
- <view class='item' :class='type==2 ? "bg-color":""' @click='changeType(2)'>中评({{replyData.inCount || 0}})
- </view>
- <view class='item' :class='type==3 ? "bg-color":""' @click='changeType(3)'>差评({{replyData.poorCount || 0}})
- </view>
- </view>
- <user-evaluation :reply="reply"></user-evaluation>
- </view>
- <view class='loadingicon acea-row row-center-wrapper'>
- <text class='loading iconfont icon-jiazai' v-if='loading!=false'></text>{{loadTitle}}
- </view>
- <view class='noCommodity' v-if="(type==0 && !replyData.sumCount) || (type==1 && !replyData.goodCount) || (type==2 && !replyData.inCount) || (type==3 && !replyData.poorCount)">
- <view class='pictrue'>
- <image :src="urlDomain+'crmebimage/presets/noEvaluate.png'"></image>
- <view class="default_txt">暂无任何评论哦~</view>
- </view>
- </view>
- </view>
- </template>
- </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 {
- getCategoryCacheTree,
- getMerchantInfo,
- getMerchantProList,
- getMerchantReply,
- getMerchantReplyConfig
- } from '@/api/merchant.js';
- import {
- getMerCollectAddApi,
- getMerCollectCancelApi
- } from '@/api/merchant.js';
- import {
- getProductDetail
- } from '@/api/product.js';
- import {
- orderCreate,
- preOrderApi
- } from '@/api/order.js';
- import navBar from '@/components/navBar';
- import {
- getAddressList
- } from '@/api/user.js';
- import userEvaluation from './components/userEvaluation.vue';
- let app = getApp();
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'rpx';
- export default {
- components: {
- navBar,
- userEvaluation
- },
- data() {
- return {
- merId: 0,
- winHeight: 0,
- merchanInfo: {},
- statusBarHeight: app.globalData.statusBarHeight,
- navigationBarHeight: 112,
- goods: [], //所有商品
- currentCateId: 1, //默认分类
- cateScrollTop: 0,
- lastScrollTop: 0,
- menuScrollIntoView: '',
- cart: [], //购物车
- goodDetailModalVisible: false, //是否饮品详情模态框
- good: {}, //当前饮品
- category: {}, //当前饮品所在分类
- cartPopupVisible: false,
- sizeCalcState: false,
- orderType: 'takeout',
- store: {
- min_price: 0.01
- },
- specifications: '', //点击的这一项菜品信息
- specificationsList: [], //点击的这一项菜品信息的大类
- selectble: false, //规格弹窗
- productValue: [], //规格数组
- productObj: {}, //规格对象
- productid: '', //选中规格的id
- lockcatble: false, // 购物车弹窗
- tabindex: 0, //点菜评价切换
- addressInfo: {},
- urlDomain: this.$Cache.get("imgHost"),
- replyData: {},
- product_id: 0,
- reply: [],
- type: 0,
- loading: false,
- loadend: false,
- loadTitle: '加载更多',
- page: 1,
- limit: 20,
- }
- },
- onLoad(options) {
- let that = this;
- uni.getSystemInfo({
- success: function(res) {
- that.winHeight = res.windowHeight
- },
- });
- if (options.hasOwnProperty('merId') || options.scene) {
- if (options.scene) { // 仅仅小程序扫码进入
- this.merId = this.globalData.merId ? this.globalData.merId : 0;
- } else {
- this.merId = options.merId ? parseInt(options.merId) : 0;
- }
- }
- //首页数据加载
- // 获取商家信息
- this.getMerchantInfoData()
- // 获取商品列表
- getCategoryCacheTree(this.merId).then(res => {
- console.log(res.data)
- this.goods = res.data
- // this.goods.unshift({
- // id: 9999,
- // name: '推荐'
- // })
- this.currentCateId = this.goods[0].id
- // this.menuScrollIntoView = `cate-${9999}`
- })
- // 获取用户默认地址
- this.getAddressList()
- // this.getIndexConfig();
- // #ifdef MP-WEIXIN
- // 获取微信胶囊的位置信息 width,height,top,right,left,bottom
- const custom = wx.getMenuButtonBoundingClientRect()
- // 导航栏高度(标题栏高度) = 胶囊高度 + (顶部距离 - 状态栏高度) * 2
- // this.navigationBarHeight = custom.height + (custom.top - this.statusBarHeight) * 2
- // console.log("导航栏高度:"+this.globalData.navigationBarHeight)
- // #endif
- },
- computed: {
- goodCartNum() { //计算单个饮品添加到购物车的数量
- // this.good
- return (text) => this.cart.reduce((acc, cur) => {
- !text ? text = this.getGoodSelectedProps(this.good) : ''
- if (cur.props_text === text) {
- return acc += cur.number
- }
- return acc
- }, 0)
- },
- menuCartNum() {
- return (id) => this.cart.reduce((acc, cur) => {
- if (cur.cate_id === id) {
- return acc += cur.number
- }
- return acc
- }, 0)
- },
- getCartGoodsNumber() { //计算购物车总数
- return this.cart.reduce((acc, cur) => acc + cur.number, 0)
- },
- getCartGoodsPrice() { //计算购物车总价
- return this.cart.reduce((acc, cur) => acc + cur.number * cur.price, 0)
- },
- disabledPay() { //是否达到起送价
- return this.orderType == 'takeout' && (this.getCartGoodsPrice < this.store.min_price) ? true : false
- },
- spread() { //差多少元起送
- if (this.orderType != 'takeout') return
- return parseFloat((this.store.min_price - this.getCartGoodsPrice).toFixed(2))
- }
- },
- methods: {
- getMerchantInfoData() {
- getMerchantInfo(this.merId).then(res => {
- this.merchanInfo = res.data
- this.$store.commit('MERCHANTJINFO', res.data);
- });
- },
- // 跳转详情
- getOrderdetils(item) {
- console.log(item)
- uni.navigateTo({
- url: `/pages/goods/goods_details/index?id=${item.id}&mt=0`
- })
- },
- // 设置是否关注
- followToggle: function() {
- if (this.isLogin === false) {
- toLogin();
- } else {
- if (this.merchanInfo.isCollect) {
- getMerCollectCancelApi(this.merId).then(res => {
- console.log()
- if (res.code == 200) {
- this.$util.Tips({
- title: "取消收藏",
- });
- this.getMerchantInfoData() //商家信息
- }
- })
- } else {
- getMerCollectAddApi(this.merId).then(res => {
- console.log('收藏', res)
- if (res.code == 200) {
- this.$util.Tips({
- title: "收藏成功",
- });
- this.getMerchantInfoData() //商家信息
- }
- })
- }
- }
- },
- // 获取地址数据
- getAddressList() {
- getAddressList().then(res => {
- console.log('地址', res)
- if (res.code = 200) {
- this.addressInfo = res.data.find(item => item.isDefault === true);
- console.log('默认地址', this.addressInfo)
- }
- })
- },
- handBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- handleMenuTap(id) { //点击菜单项事件
- this.menuScrollIntoView = `cate-${id}`
- if (!this.sizeCalcState) {
- this.calcSize()
- }
- this.$nextTick(() => this.cateScrollTop = this.goods.find(item => item.id == id).top)
- },
- handleGoodsScroll({
- detail
- }) { //商品列表滚动事件
- if (!this.sizeCalcState) {
- this.calcSize()
- }
- const {
- scrollTop
- } = detail
- let tabs = this.goods.filter(item => item.top <= scrollTop).reverse()
- if (tabs.length > 0) {
- this.currentCateId = tabs[0].id
- }
- },
- calcSize() {
- let h = 10
- this.goods.forEach(item => {
- let view = uni.createSelectorQuery().select(`#cate-${item.id}`)
- view.fields({
- size: true
- }, data => {
- // if (data.goodsList) {
- item.top = h
- h += data.height
- item.bottom = h
- // }
- }).exec()
- })
- this.sizeCalcState = true
- },
- showGoodDetailModal(item, good) {
- this.good = JSON.parse(JSON.stringify({ ...good
- }))
- this.category = JSON.parse(JSON.stringify(item))
- this.goodDetailModalVisible = true
- },
- handlePropertyAdd() {
- this.good.number += 1
- },
- handlePropertyReduce() {
- if (this.good.number === 1) return
- this.good.number -= 1
- },
- changePropertyDefault(index, key) { //改变默认属性值
- this.good.property[index].optionList.forEach(value => this.$set(value, 'is_default', 0))
- this.good.property[index].optionList[key].is_default = 1
- this.good.number = 1
- this.good = JSON.parse(JSON.stringify(this.good))
- },
- handleAddToCartInModal() {
- const product = Object.assign({}, this.good, {
- props_text: this.getGoodSelectedProps(this.good),
- props: this.getGoodSelectedProps(this.good, 'id')
- })
- this.handleAddToCart(this.category, product, this.good.number)
- // this.closeGoodDetailModal()
- },
- getGoodSelectedProps(good, type = 'text') { //计算当前饮品所选属性
- // if (good.use_property) {
- let props = []
- good.property.forEach(({
- optionList
- }) => {
- optionList.forEach(value => {
- if (value.is_default) {
- props.push(type === 'text' ? value.optionName : value.id)
- }
- })
- })
- return type === 'text' ? props.join(',') : props
- // }
- // return ''
- },
- handleReduceFromCart(item, good) {
- const goodText = this.getGoodSelectedProps(this.good) // 购物车当前选中的规格
- const index = this.cart.findIndex(item => item.id === good.id && item.props_text === goodText)
- this.cart[index].number -= 1
- if (this.cart[index].number <= 0) {
- this.cart.splice(index, 1)
- }
- },
- handleAddToCart(cate, good, num) { //添加到购物车
- const goodText = this.getGoodSelectedProps(this.good) // 购物车当前选中的规格
- const index = this.cart.findIndex(item => {
- // if (good.use_property) {
- // !good.props_text ? good.props_text = this.getGoodSelectedProps(good) : ''
- return (item.id === good.id) && (item.props_text === goodText)
- // } else {
- // return item.id === good.id
- // }
- })
- if (index > -1) {
- this.cart[index].number += num
- } else {
- this.cart.push({
- id: good.id,
- cate_id: cate.id,
- name: good.name,
- price: good.price,
- number: num,
- icon: good.icon,
- use_property: good.use_property,
- props_text: this.getGoodSelectedProps(this.good),
- props: this.getGoodSelectedProps(this.good, 'id'),
- productid: this.productObj[goodText].id,
- iconText: this.productObj[goodText].image,
- ...good
- })
- }
- console.log(this.cart, '购物车')
- },
- toPay() {
- // if(!this.isLogin) {
- // uni.navigateTo({url: '/pages/login/login'})
- // return
- // }
- uni.showLoading({
- title: '加载中'
- })
- let orderDetails = this.cart.map((item) => {
- return {
- attrValueId: item.productid, //商品规格属性id(立即购买、活动购买必填)
- groupBuyActivityId: null, //拼团活动id(拼团下单时必填)
- groupBuyRecordId: 0, // 拼团记录id,营销类型2=拼团 时必填 0=开团 实际
- productId: item.id, //商品id
- productNum: item.number //商品数量
- };
- });
- preOrderApi({
- "preOrderType": 'buyNow',
- //类型 预下单类型(“shoppingCart”:购物车下单,“buyNow”:
- // 立即购买,“video”: 视频号商品下单,“seckill”:秒杀下单,“group”:拼团下单)
- "orderDetails": orderDetails //购物车信息
- }).then(res => {
- console.log('预下单接口', res)
- if (res.code == 200) {
- let cartList = JSON.stringify(this.cart)
- // uni.setStorageSync('cart', JSON.parse(JSON.stringify(this.cart)))
- uni.navigateTo({
- // url: `/pages/goods/order_confirm/index?cartList=${cartList}`
- url: '/pages/goods/order_confirm/index?is_address=1&orderNo=' + res.data.orderNo +
- '&addressId=' + this.addressInfo.id
- })
- }
- }).catch(err => {
- uni.showToast({
- title: err,
- icon: 'none'
- })
- })
- uni.setStorageSync('cart', JSON.parse(JSON.stringify(this.cart)))
- uni.hideLoading()
- },
- // 选规格打开
- Selectpox(item, itemInfo) {
- this.specifications = itemInfo //这一项信息
- this.specificationsList = item //这一项信息
- // this.good = Object.assign({}, this.good, itemInfo)
- getProductDetail(
- itemInfo.id,
- 0, 0, ''
- ).then((res) => {
- console.log('规格', res)
- if (res.code == 200) {
- this.good.property = res.data.productAttr.map(item => {
- item.optionList.forEach((items, index) => {
- index === 0 ? items.is_default = true : '' // 规格默认选中
- })
- return { ...item
- }
- })
- console.log(this.good)
- // this.productValue = res.data.productAttr //规格数组
- this.productObj = res.data.productValue //默认选择的id
- this.selectble = true
- }
- })
- },
- // 关闭规格
- Close() {
- this.specifications = '' //这一项信息
- this.specificationsList = [] //这一项信息
- this.selectble = false
- },
- onTabChang(id) {
- if (this.tabindex === id) return
- this.tabindex = id
- if (id == 1) {
- this.getProductReplyList()
- this.getProductReplyCount()
- }
- },
- /**
- * 分页获取评论
- */
- getProductReplyList: function() {
- let that = this;
- if (that.loadend) return;
- if (that.loading) return;
- that.loading = true;
- that.loadTitle = '';
- getMerchantReply(that.merId, {
- page: that.page,
- limit: that.limit,
- type: that.type,
- }).then(res => {
- let list = res.data.list,
- loadend = list.length < that.limit;
- that.reply = that.$util.SplitArray(list, that.reply);
- that.$set(that, 'reply', that.reply);
- that.loading = false;
- that.loadend = loadend;
- if (that.reply.length) {
- that.loadTitle = loadend ? "??人家是有底线的~~" : "加载更多";
- }
- that.page = that.page + 1;
- }).catch(err => {
- that.loading = false,
- that.loadTitle = '加载更多'
- });
- },
- /*
- * 点击事件切换
- * */
- changeType: function(e) {
- let type = parseInt(e);
- if (type == this.type) return;
- this.type = type;
- this.page = 1;
- this.loadend = false;
- this.$set(this, 'reply', []);
- this.getProductReplyList();
- },
- /**
- * 获取评论统计数据
- *
- */
- getProductReplyCount: function() {
- let that = this;
- getMerchantReplyConfig(that.merId).then(res => {
- that.$set(that, 'replyData', res.data);
- });
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- /* #ifdef H5 */
- page {
- min-height: 100%;
- }
- /* #endif */
- .bg-color {
- background-color: $bg-color-primary;
- }
- .care {
- color: #666666 !important;
- border: 1px solid #CCCCCC;
- background: inherit !important;
- }
- .order-nav {
- // height: 111rpx;
- position: relative;
- background-color: #FF6702;
- display: flex;
- align-items: center;
- justify-content: center;
- .back-button {
- position: absolute;
- left: 20rpx;
- }
- text {
- font-weight: 500;
- font-size: 35rpx;
- color: #FFFFFF;
- }
- }
- .container {
- display: flex;
- flex-direction: column;
- overflow: hidden;
- position: relative;
- }
- .loading {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- image {
- width: 260rpx;
- height: 260rpx;
- position: relative;
- margin-top: -200rpx;
- /* #ifdef h5 */
- margin-top: 0;
- /* #endif */
- }
- }
- .stores {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- margin-bottom: -40rpx;
- .store {
- width: 100%;
- background-color: $bg-color-grey;
- padding: 20rpx;
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- border-radius: 6rpx;
- .iconfont {
- font-size: 50rpx;
- margin-right: 15rpx;
- &.iconradio-button-off {
- color: $text-color-assist;
- }
- &.iconradio-button-on {
- color: $color-primary;
- }
- }
- .infos {
- flex: 1;
- display: flex;
- flex-direction: column;
- color: $text-color-base;
- overflow: hidden;
- .name_and_distance {
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin-bottom: 10rpx;
- overflow: hidden;
- .name {
- flex: 1;
- flex-shrink: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: $font-size-lg;
- }
- .distance {
- flex-shrink: 0;
- font-size: $font-size-lg;
- font-weight: bold;
- margin-left: 20rpx;
- }
- }
- .street {
- color: $text-color-assist;
- font-size: $font-size-sm;
- }
- }
- }
- }
- .main {
- overflow: hidden;
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .nav {
- width: 100%;
- flex-shrink: 0;
- display: flex;
- flex-direction: column;
- border-radius: 23rpx;
- padding: 19rpx 45rpx 38rpx 45rpx;
- background-color: #ffffff;
- .header {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left {
- flex: 1;
- display: flex;
- flex-direction: column;
- .store-name {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: $font-size-lg;
- margin-bottom: 10rpx;
- .iconfont {
- margin-left: 10rpx;
- line-height: 100%;
- }
- .icon-img {
- width: 40rpx;
- height: 40rpx;
- flex-shrink: 0;
- }
- }
- .store-tip {
- font-weight: 400;
- font-size: 21rpx;
- color: #858687;
- margin-top: 10rpx;
- background: #F8F9FB;
- border-radius: 4rpx;
- }
- }
- .right {
- background-color: $bg-color-grey;
- border-radius: 38rpx;
- display: flex;
- align-items: center;
- font-size: $font-size-sm;
- padding: 0 38rpx;
- color: $text-color-assist;
- .dinein,
- .takeout {
- position: relative;
- display: flex;
- align-items: center;
- &.active {
- padding: 14rpx 38rpx;
- color: #ffffff;
- background-color: $color-primary;
- border-radius: 38rpx;
- }
- }
- .takeout {
- margin-left: 20rpx;
- height: 100%;
- flex: 1;
- padding: 14rpx 0;
- }
- .dinein.active {
- margin-left: -38rpx;
- }
- .takeout.active {
- margin-right: -38rpx;
- }
- }
- }
- .coupon {
- flex: 1;
- width: 100%;
- background-color: $bg-color-primary;
- font-size: $font-size-base;
- color: $color-primary;
- padding: 0 20rpx;
- display: flex;
- align-items: center;
- overflow: hidden;
- .title {
- flex: 1;
- margin-left: 10rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .iconfont {
- line-height: 100%;
- }
- }
- }
- .content {
- flex: 1;
- overflow: hidden;
- width: 100%;
- display: flex;
- border-radius: 23rpx 23rpx 0rpx 0rpx;
- .menus {
- width: 200rpx;
- height: 100%;
- overflow: hidden;
- background-color: $bg-color-grey;
- .wrapper {
- width: 100%;
- height: 100%;
- .menu {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 30rpx 20rpx;
- font-size: 26rpx;
- color: $text-color-assist;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- &:nth-last-child(1) {
- margin-bottom: 230rpx;
- }
- &.current {
- background-color: #ffffff;
- color: $text-color-base;
- }
- .dot {
- position: absolute;
- width: 34rpx;
- height: 34rpx;
- line-height: 34rpx;
- font-size: 22rpx;
- background-color: $bg-color-primary;
- color: #ffffff;
- top: 16rpx;
- right: 10rpx;
- border-radius: 100%;
- text-align: center;
- }
- }
- }
- }
- .goods {
- flex: 1;
- height: 100%;
- overflow: hidden;
- background-color: #ffffff;
- .wrapper {
- width: 100%;
- height: 100%;
- padding: 20rpx;
- .ads {
- height: calc(300 / 550 * 510rpx);
- image {
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- }
- }
- .list {
- width: 100%;
- font-size: $font-size-base;
- padding-bottom: 800rpx;
- .category {
- width: 100%;
- .title {
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- color: $text-color-base;
- .icon {
- width: 38rpx;
- height: 38rpx;
- margin-left: 10rpx;
- }
- }
- }
- .items {
- display: flex;
- flex-direction: column;
- padding-bottom: -30rpx;
- .good {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- .image {
- width: 160rpx;
- height: 160rpx;
- margin-right: 20rpx;
- border-radius: 8rpx;
- }
- .right {
- flex: 1;
- // height: 160rpx;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- padding-right: 14rpx;
- .name {
- font-size: $font-size-base;
- margin-bottom: 10rpx;
- }
- .tips {
- width: 100%;
- height: 40rpx;
- line-height: 40rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: $font-size-sm;
- color: $text-color-assist;
- margin-bottom: 10rpx;
- }
- .price_and_action {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .price {
- font-size: $font-size-base;
- font-weight: 600;
- color: $bg-color-primary;
- }
- .btn-group {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- .btn {
- padding: 0 20rpx;
- box-sizing: border-box;
- font-size: $font-size-sm;
- height: 44rpx;
- line-height: 44rpx;
- &.property_btn {
- border-radius: 24rpx;
- }
- &.add_btn,
- &.reduce_btn {
- padding: 0;
- width: 44rpx;
- border-radius: 44rpx;
- }
- }
- .dot {
- position: absolute;
- background-color: #ffffff;
- border: 1px solid $bg-color-primary;
- color: $bg-color-primary;
- font-size: $font-size-sm;
- width: 36rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- border-radius: 100%;
- right: -12rpx;
- top: -10rpx;
- }
- .number {
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- .modal-box {
- max-height: 90vh;
- }
- .good-detail-modal {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- .cover {
- height: 320rpx;
- padding: 30rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- .image {
- width: 260rpx;
- height: 260rpx;
- }
- .btn-group {
- position: absolute;
- right: 10rpx;
- top: 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- image {
- width: 80rpx;
- height: 80rpx;
- }
- }
- }
- .detail {
- width: 100%;
- min-height: 1vh;
- max-height: calc(90vh - 320rpx - 80rpx - 120rpx);
- .wrapper {
- width: 100%;
- height: 100%;
- overflow: hidden;
- .basic {
- padding: 0 20rpx 30rpx;
- display: flex;
- flex-direction: column;
- .name {
- font-size: $font-size-base;
- color: $text-color-base;
- margin-bottom: 10rpx;
- }
- .tips {
- font-size: $font-size-sm;
- color: $text-color-grey;
- }
- }
- .properties {
- width: 100%;
- border-top: 2rpx solid $bg-color-grey;
- padding: 10rpx 30rpx 0;
- display: flex;
- flex-direction: column;
- .property {
- width: 100%;
- display: flex;
- flex-direction: column;
- margin-bottom: 30rpx;
- padding-bottom: -16rpx;
- .title {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 20rpx;
- .name {
- font-size: 26rpx;
- color: $text-color-base;
- margin-right: 20rpx;
- }
- .desc {
- flex: 1;
- font-size: $font-size-sm;
- color: $color-primary;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .values {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- .value {
- border-radius: 8rpx;
- background-color: $bg-color-grey;
- padding: 16rpx 30rpx;
- font-size: 26rpx;
- color: $text-color-assist;
- margin-right: 16rpx;
- margin-bottom: 16rpx;
- &.default {
- background-color: $bg-color-primary;
- color: $text-color-white;
- }
- }
- }
- }
- }
- }
- }
- .action {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: $bg-color-grey;
- height: 120rpx;
- padding: 0 26rpx;
- .left {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-right: 20rpx;
- overflow: hidden;
- .price {
- font-size: $font-size-lg;
- color: $text-color-base;
- }
- .props {
- color: $text-color-assist;
- font-size: 24rpx;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .btn-group {
- display: flex;
- align-items: center;
- justify-content: space-around;
- .number {
- font-size: $font-size-base;
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- }
- .btn {
- padding: 0;
- font-size: $font-size-base;
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- border-radius: 100%;
- }
- }
- }
- .add-to-cart-btn {
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: $color-primary;
- color: $text-color-white;
- font-size: $font-size-base;
- height: 80rpx;
- border-radius: 0 0 12rpx 12rpx;
- }
- }
- .cart-box {
- // position: absolute;
- // bottom: 30rpx;
- // left: 30rpx;
- // right: 30rpx;
- height: 96rpx;
- border-radius: 48rpx;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
- background-color: #000;
- display: flex;
- align-items: center;
- justify-content: space-between;
- z-index: 9999;
- .cart-img {
- width: 50rpx;
- height: 47rpx;
- position: relative;
- // margin-top: -48rpx;
- }
- .pay-btn {
- height: 100%;
- padding: 0 30rpx;
- color: #FFFFFF;
- border-radius: 0 50rpx 50rpx 0;
- display: flex;
- align-items: center;
- font-size: $font-size-base;
- }
- .mark {
- padding-left: 46rpx;
- margin-right: 30rpx;
- position: relative;
- .tag {
- background-color: $color-warning;
- color: $text-color-white;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: $font-size-sm;
- position: absolute;
- right: -13rpx;
- top: -20rpx;
- border-radius: 100%;
- padding: 4rpx;
- width: 27rpx;
- height: 27rpx;
- opacity: .9;
- }
- }
- .price {
- flex: 1;
- color: $text-color-base;
- }
- }
- .cart-popup {
- .top {
- background-color: $bg-color-primary;
- color: $color-primary;
- padding: 10rpx 30rpx;
- font-size: 24rpx;
- text-align: right;
- }
- .cart-list {
- background-color: #FFFFFF;
- width: 100%;
- overflow: hidden;
- min-height: 1vh;
- max-height: 60vh;
- .wrapper {
- height: 100%;
- display: flex;
- flex-direction: column;
- padding: 0 30rpx;
- margin-bottom: 156rpx;
- .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx 0;
- position: relative;
- &::after {
- content: ' ';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: $border-color;
- height: 2rpx;
- transform: scaleY(.6);
- }
- .left {
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- margin-right: 30rpx;
- .name {
- font-size: $font-size-sm;
- color: $text-color-base;
- }
- .props {
- color: $text-color-assist;
- font-size: 24rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .center {
- margin-right: 120rpx;
- font-size: $font-size-base;
- }
- .right {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn {
- width: 46rpx;
- height: 46rpx;
- border-radius: 100%;
- padding: 0;
- text-align: center;
- line-height: 46rpx;
- }
- .number {
- font-size: $font-size-base;
- width: 46rpx;
- height: 46rpx;
- text-align: center;
- line-height: 46rpx;
- }
- }
- }
- }
- }
- }
- .back-button {
- width: 30rpx;
- height: 30rpx;
- border-right: 4rpx solid #fff;
- border-bottom: 4rpx solid #fff;
- transform: rotate(135deg);
- margin-left: 10rpx;
- display: inline-block;
- position: relative;
- }
- .newsTitle {
- display: flex;
- align-items: center;
- }
- .mode {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- background: rgba(33, 33, 33, 0.8);
- z-index: 99999;
- display: flex;
- align-items: flex-end;
- }
- .mode-1 {
- width: 100%;
- height: 840rpx;
- background: #FFF;
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- // padding: 30rpx;
- box-sizing: border-box;
- overflow: auto;
- /* 添加这个属性使容器可以滚动 */
- }
- // 规格弹窗
- .sel-mode-1 {
- width: 100%;
- // height: 440rpx;
- background: #FFF;
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- box-sizing: border-box;
- overflow: auto;
- z-index: 99999;
- padding: 20rpx 20rpx 60rpx 20rpx;
- box-sizing: border-box;
- position: relative;
- }
- .close {
- text-align: right;
- font-size: 40rpx;
- }
- .sel-2 {
- display: flex;
- align-items: center;
- gap: 20rpx;
- .nexbox1 {
- flex: 1;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: $text-color-assist;
- }
- }
- .sel-3 {
- display: flex;
- flex-direction: column;
- gap: 10rpx;
- }
- .sel-4 {
- display: flex;
- align-items: center;
- gap: 10rpx;
- }
- .sel-5 {
- width: 80rpx;
- height: 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 24rpx;
- background: #999999;
- color: #FFF;
- padding: 8rpx;
- border-radius: 8rpx;
- }
- .sel-6 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .sel-btn {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .sel-btn1 {
- width: 110px;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: rgba(255, 103, 2, 1);
- color: #FFF;
- font-size: 30rpx;
- border-radius: 10rpx;
- }
- .neximg {
- width: 160rpx;
- height: 160rpx;
- margin-right: 20rpx;
- border-radius: 8rpx;
- /* 保持图片等比例缩放,并且不会裁切 */
- }
- .btn-group {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- .btn {
- padding: 0 20rpx;
- box-sizing: border-box;
- font-size: $font-size-sm;
- height: 44rpx;
- line-height: 44rpx;
- &.property_btn {
- border-radius: 24rpx;
- }
- &.add_btn,
- &.reduce_btn {
- padding: 0;
- width: 44rpx;
- border-radius: 44rpx;
- }
- }
- .dot {
- position: absolute;
- background-color: #ffffff;
- border: 1px solid $bg-color-primary;
- color: $bg-color-primary;
- font-size: $font-size-sm;
- width: 36rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- border-radius: 100%;
- right: -12rpx;
- top: -10rpx;
- }
- .number {
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- }
- }
- .nexbox-txt3 {
- color: $bg-color-primary;
- }
- .mode-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- padding: 30rpx;
- box-sizing: border-box;
- }
- .items {
- display: flex;
- flex-direction: column;
- padding-bottom: -30rpx;
- .good {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- .image {
- width: 160rpx;
- height: 160rpx;
- margin-right: 20rpx;
- border-radius: 8rpx;
- }
- .right {
- flex: 1;
- // height: 160rpx;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- padding-right: 14rpx;
- .name {
- font-size: $font-size-base;
- margin-bottom: 10rpx;
- }
- .tips {
- width: 100%;
- height: 40rpx;
- line-height: 40rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: $font-size-sm;
- color: $text-color-assist;
- margin-bottom: 10rpx;
- }
- .price_and_action {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .price {
- font-size: $font-size-base;
- font-weight: 600;
- color: $bg-color-primary;
- }
- .btn-group {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- .btn {
- padding: 0 20rpx;
- box-sizing: border-box;
- font-size: $font-size-sm;
- height: 44rpx;
- line-height: 44rpx;
- &.property_btn {
- border-radius: 24rpx;
- }
- &.add_btn,
- &.reduce_btn {
- padding: 0;
- width: 44rpx;
- border-radius: 44rpx;
- }
- }
- .dot {
- position: absolute;
- background-color: #ffffff;
- border: 1px solid $bg-color-primary;
- color: $bg-color-primary;
- font-size: $font-size-sm;
- width: 36rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- border-radius: 100%;
- right: -12rpx;
- top: -10rpx;
- }
- .number {
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- }
- }
- }
- }
- }
- }
- .mode-clear {
- padding: 30rpx;
- box-sizing: border-box;
- position: sticky;
- z-index: 99;
- top: 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #FFF;
- border-bottom: 1px solid burlywood;
- }
- .mode-txt {
- display: flex;
- align-items: center;
- gap: 8rpx;
- }
- .mode-txt1 {
- font-weight: 500;
- font-size: 32rpx;
- }
- // 点菜评价切换
- .let-box {
- display: flex;
- align-items: center;
- gap: 60rpx;
- padding: 20rpx;
- box-sizing: border-box;
- }
- .let-box1 {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 10rpx;
- }
- .let-line {
- border-radius: 6rpx;
- width: 40rpx;
- height: 10rpx;
- }
- .let-txt {
- overflow-wrap: break-word;
- color: rgba(20, 20, 20, 1);
- font-size: 28rpx;
- font-weight: normal;
- text-align: left;
- white-space: nowrap;
- line-height: 40rpx;
- }
- .actave {
- background-color: rgba(255, 103, 2, 1);
- }
- .actave1 {
- color: rgba(255, 103, 2, 1);
- }
- .font_color {
- color: $bg-color-primary;
- }
- .evaluate-list {
- padding: 30rpx 0 0 0;
- background-color: #fff;
- }
- .evaluate-list .nav-tab1 {
- font-size: 24rpx;
- color: #282828;
- padding: 30rpx;
- background-color: #fff;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .evaluate-list .generalComment {
- padding: 0 30rpx;
- margin-top: 1rpx;
- background-color: #fff;
- font-size: 28rpx;
- color: #808080;
- }
- .evaluate-list .generalComment .evaluate {
- margin-right: 7rpx;
- color: #333333;
- font-size: 28rpx;
- }
- .evaluate-list .nav-tab1 .item {
- font-size: 24rpx;
- color: #282828;
- border-radius: 27rpx;
- height: 54rpx;
- padding: 0 20rpx;
- background-color: #f4f4f4;
- line-height: 54rpx;
- margin-right: 17rpx;
- }
- .evaluate-list .nav-tab1 .item.bg-color {
- color: #fff;
- background-color: $bg-color-primary;
- }
- .noCommodity {
- margin-top: 32%;
- }
- .default_txt {
- font-size: 26rpx;
- color: #999;
- text-align: center;
- }
-
- .swiper {
- display: flex;
- /* 使用flex布局 */
- animation: scrollRight 10s linear infinite;
- /* 应用动画 */
- }
-
- .swiper-item {
- flex-shrink: 0;
- /* 不允许缩小 */
- width: 100%;
- /* 每个item占满一行 */
- }
-
- @keyframes scrollRight {
- from {
- transform: translateX(100%);
- }
-
- /* 从右向左移动 */
- to {
- transform: translateX(-100%);
- }
-
- /* 移出视图 */
- }
- </style>
|