You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2691 lines
66 KiB
2691 lines
66 KiB
<template>
|
|
<view class="index" :id="`index${styleIndex}`">
|
|
<view class="navbarContent">
|
|
<u-navbar :is-back="false" :background="styleIndex ? { background: navBgColor } : background" :border-bottom="false">
|
|
<image :src="logoImage" mode="heightFix" class="logo"></image>
|
|
<view class="slot-wrap">
|
|
<u-subsection :active-color="tabActiveColor || '#FB213D'" inactive-color="#000000" height="60" @change="changeHome"
|
|
:bold="false" button-color="#fff" :list="list" :current="current"></u-subsection>
|
|
</view>
|
|
</u-navbar>
|
|
</view>
|
|
<view class="searchContentContainer">
|
|
<view class="searchContent" @click="search">
|
|
<view class="btn">
|
|
搜索
|
|
</view>
|
|
<u-search shape="round" :disabled="true" placeholder="iPhone 15" bg-color="#ffffff"
|
|
:show-action="false"></u-search>
|
|
</view>
|
|
<template v-if="current == 0">
|
|
<view class="chat" v-if="isLogin == false" @click="toChat()">
|
|
<u-icon name="chat" color="#000000" size="70"></u-icon>
|
|
<!-- <view class="badge"></view> -->
|
|
</view>
|
|
<view class="chat" v-else>
|
|
<u-icon name="chat" color="#000000" size="70"></u-icon>
|
|
<button open-type="contact"></button>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
<view v-show="current==0">
|
|
<scroll-view class="tabs" scroll-x>
|
|
<view :class="tabCurrent==index?'tabItem active':'tabItem'" @click="changeGoodsType(index)"
|
|
v-for="(item,index) in tabList" :key="index">
|
|
{{item.name}}
|
|
<view class="flag" v-if="tabCurrent==index">
|
|
<image :src="`${$picUrl}/static/index/line${styleIndex}.png`"></image>
|
|
</view>
|
|
</view>
|
|
<!-- <u-tabs :list="tabList" name="name" font-size="28" active-color="#F6393D"
|
|
:show-bar="true" @change="changeGoodsType"
|
|
inactive-color="#282828" bg-color="transparent" :is-scroll="true" :current="tabCurrent"></u-tabs> -->
|
|
</scroll-view>
|
|
<view class="main">
|
|
<view class="picContainer">
|
|
<u-swiper :list="bannerList" height="380" img-mode="aspectFill" @click="gotoDetail"></u-swiper>
|
|
</view>
|
|
<view class="grid">
|
|
<view class="gridRows" :style="{'height': isToggle == false?catagoryList.length >0?'340rpx':'auto':'auto'}">
|
|
<view class="gridItem" v-for="(item,index) in gridList" @click="goPage(item.path,item.type)"
|
|
:key="index">
|
|
<view class="imageC">
|
|
<image :src="item.image"></image>
|
|
</view>
|
|
<text>{{item.text}}</text>
|
|
</view>
|
|
<view class="gridItem" v-for="(item,index) in catagoryList" :key="index"
|
|
@click="goJump('/pages/goods/list?categoryId=' + item.category_id)">
|
|
<view class="imageC">
|
|
<image :src="item.image?item.image.external_url:''"></image>
|
|
</view>
|
|
<text>{{item.name}}</text>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="gridRows secondRows"
|
|
:style="{'height': isToggle == false?catagoryList.length >0?'160rpx':'auto':'auto'}">
|
|
<view class="gridItem" v-for="(item,index) in catagoryList" :key="index"
|
|
@click="goJump('/pages/goods/list?categoryId=' + item.category_id)">
|
|
<view class="imageC">
|
|
<image :src="item.image?item.image.external_url:''"></image>
|
|
</view>
|
|
<text>{{item.name}}</text>
|
|
</view>
|
|
</view> -->
|
|
<!-- / v-if="" -->
|
|
<view class="more" @click="toggleItem()" v-if="gridList.length + catagoryList.length >= 11">
|
|
{{isToggle == false?'查看更多':'点击收起'}}
|
|
<u-icon v-if="isToggle == false" style="margin-left: 10rpx;" name="arrow-down"></u-icon>
|
|
<u-icon v-else style="margin-left: 10rpx;" name="arrow-up"></u-icon>
|
|
</view>
|
|
</view>
|
|
<view class="firstContent" @click="goNewUser" v-if="wxAppSetting.new_first_gift">
|
|
<image :src="`${$picUrl}/static/index/new${styleIndex || ''}.png?t=${timestamp}`" class="firstBg" :class="{ 'firstBgStyle': styleIndex }"></image>
|
|
<view class="firstInfo">
|
|
<view class="fTitle">
|
|
<image :src="$picUrl+'/static/index/xinren.png?t='+timestamp" class="firstTitle"></image>
|
|
<!-- <text></text> -->
|
|
</view>
|
|
<view class="couponInfo">
|
|
<view class="couponNew">
|
|
<text>新人首单礼</text>
|
|
<!-- <text>查看更多</text> -->
|
|
</view>
|
|
<view class="left">
|
|
<text class="flag">¥</text>
|
|
<text
|
|
class="num">{{couList.reduce_price?Number(couList.reduce_price):couList.reduce_price}}</text>
|
|
<view class="couponName">
|
|
<view>{{couList.name}}</view>
|
|
<view style="font-size: 20rpx;">领取后{{couList.expire_day}}天内有效</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="line">
|
|
|
|
</view> -->
|
|
<view class="lingqu">
|
|
<!-- <view class="lqBtn">去领取</view> -->
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<template v-if="wxAppSetting.big_brand">
|
|
<view class="dapai" v-if="dapaiList && dapaiList.length>0">
|
|
<!-- <image src="/static/index/dapaibg.png" mode="widthFix" class="dapaibg"></image> -->
|
|
<view class="dapaiBox">
|
|
<view class="dapaiTitle">
|
|
<image :src="$picUrl+'/static/index/dapai.png?t='+timestamp" mode="widthFix"></image>
|
|
<view class="goods">
|
|
<image :src="$picUrl+'/static/index/diannei.png?t='+timestamp" mode="widthFix"></image>
|
|
<view>店内现货</view>
|
|
</view>
|
|
</view>
|
|
<view class="more" @click="goJump('/pages/user/vip/goods')">查看更多<u-icon
|
|
style="margin-left:10rpx;" name="arrow-right"></u-icon>
|
|
</view>
|
|
<view class="dapaiContent" v-if="dapaiList.length>0">
|
|
<template v-for="(item,index) in dapaiList" :key="index">
|
|
<view class="dapaiItem" v-if="index <= 9"
|
|
@click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)">
|
|
<view class="picContent">
|
|
<image :src="item.goods_image"></image>
|
|
</view>
|
|
<view class="priceBox">
|
|
<image :src="$picUrl+'/static/index/price.png'"></image>
|
|
<view><text>¥</text>{{item.goods_price_min}}</view>
|
|
</view>
|
|
<view class="name">
|
|
{{item.goods_name}}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<view class="qianggou" v-if="seckillList && seckillList.length>0">
|
|
<view class="title" @click="seckill">
|
|
<image :src="$picUrl+'/static/index/limitBuy.png'" mode="widthFix"></image>
|
|
<view class="more">查看更多<u-icon style="margin-left:10rpx;" name="arrow-right"></u-icon>
|
|
</view>
|
|
<view class="rest">
|
|
<text>本场剩余</text>
|
|
<u-count-down :timestamp="seckillCutDownTime" format="HH:mm:ss" autoStart
|
|
@change="onChangeSeckillCutDownTime">
|
|
<view class="date-time">
|
|
<text
|
|
class="time">{{timeData.hours>=10?timeData.hours:"0"+Number(timeData.hours)}}</text>
|
|
<text class="da">:</text>
|
|
<text
|
|
class="time">{{timeData.minutes>=10?timeData.minutes:"0"+Number(timeData.minutes)}}</text>
|
|
<text class="da">:</text>
|
|
<text
|
|
class="time">{{timeData.seconds>=10?timeData.seconds:"0"+Number(timeData.seconds)}}</text>
|
|
</view>
|
|
</u-count-down>
|
|
</view>
|
|
</view>
|
|
<view class="goods-list" v-if="seckillList && seckillList.length>0">
|
|
<view class="list" v-for="(item, index) in seckillList" :key="index"
|
|
@click="handleTargetGoods(item)">
|
|
<view class="pictrue">
|
|
<image :src="item.goods_image"></image>
|
|
</view>
|
|
<view class="price">
|
|
<view class="tip">
|
|
<image :src="$picUrl+'/static/index/tip.png?t='+timestamp"></image>
|
|
<view class="tipPrice">
|
|
<text style="font-size: 20rpx;">¥</text>
|
|
<text>{{item.seckill_price_min}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="linePrice">
|
|
<text>¥</text>{{item.original_price}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<view class="activity">
|
|
<!-- @click="goNews" -->
|
|
<view class="left" v-if="wxAppSetting.service">
|
|
<image :src="`${$picUrl}/static/index/activity${styleIndex || ''}.png?t=${timestamp}`" mode="widthFix"></image>
|
|
</view>
|
|
<view class="right">
|
|
<!-- <view class="rightContent"> -->
|
|
<view class="rightItem1" v-if="wxAppSetting.new_product">
|
|
<view style="">
|
|
<image :src="$picUrl+'/static/index/xinpin.png?t='+timestamp" mode="widthFix" @click="goNewGoods"
|
|
class="title"></image>
|
|
<view class="more" @click="goNewGoods">查看更多<u-icon name="arrow-right"></u-icon>
|
|
</view>
|
|
<scroll-view scroll-x="true">
|
|
<view class="right1Good">
|
|
<template v-for="(item,index) in xinpinList" :key="index">
|
|
<view class="right1Item" v-if="index<=2"
|
|
@click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)">
|
|
<image :src="item.goods_image"></image>
|
|
<view class="priceBox">
|
|
<image :src="$picUrl+'/static/index/price.png?t='+timestamp" mode="heightFix">
|
|
</image>
|
|
<view><text>¥</text>{{item.goods_price_min}}</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
<view class="rightItem2" v-if="wxAppSetting.ranking_list">
|
|
<view style="margin-bottom: 10rpx;">
|
|
<image :src="$picUrl+'/static/index/paihangbang.png?t='+timestamp" mode="widthFix" @click="rankIng"
|
|
class="title"></image>
|
|
<view class="more" @click="rankIng">查看更多<u-icon name="arrow-right"></u-icon>
|
|
</view>
|
|
<view class="right1Good">
|
|
<template v-for="(item,index) in paihangList" :key="index">
|
|
<view class="right1Item" v-if="index <=2"
|
|
@click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)">
|
|
<image :src="item.goods_image"></image>
|
|
<view class="priceBox">
|
|
<image :src="$picUrl+'/static/index/price.png?t='+timestamp" mode="heightFix">
|
|
</image>
|
|
<view><text>¥</text>{{item.goods_price_min}}</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<!-- </view> -->
|
|
</view>
|
|
</view>
|
|
<view class="goodsRecommend">
|
|
<!-- <u-waterfall v-model="goodsRecommend" ref="uWaterfall1"> -->
|
|
<!-- <template v-slot:left="{leftList}"> -->
|
|
<view class="goodsItem" v-for="(item,index) in goodsRecommend" @click="goDetails(item)"
|
|
:key="index">
|
|
<view class="pic">
|
|
<image :src="item.goods_image" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="goodsInfo">
|
|
<view class="title">
|
|
<!-- <text v-if="item.selling_point" class="ziying">{{item.selling_point}}</text> -->
|
|
<text class="name">{{item.goods_name}}</text>
|
|
</view>
|
|
</view>
|
|
<!-- 商品价格 -->
|
|
<view class="shenBox">
|
|
<view class="detail-price oneline-hide">
|
|
<text class="goods-price f-30 col-m"><text
|
|
style="font-size: 26rpx;">¥</text>{{ item.goods_price_min>0?Number(item.goods_price_min):0.00}}
|
|
<text class="delPrice"></text></text>
|
|
<text v-if="item.line_price_min > 0"
|
|
class="line-price col-9 f-24">¥{{ item.line_price_min>0?Number(item.line_price_min):0.00 }}</text>
|
|
</view>
|
|
<image :src="$picUrl+'/static/detail/redShen.png'" v-if="item.is_check==1" mode="">
|
|
</image>
|
|
</view>
|
|
<!-- <view class="goodsInfo1" v-if="item.cmmdty_model">
|
|
<view class="oneTip">
|
|
{{item.cmmdty_model}}
|
|
</view>
|
|
</view> -->
|
|
<!-- <view class="goodsSend">
|
|
<view class="sendLeft">
|
|
<view class="left_1">
|
|
{{item.goods_source}}
|
|
</view>
|
|
<view class="left_2">
|
|
{{Number(item.discount)}}折
|
|
</view>
|
|
</view>
|
|
<view class="sendRight">
|
|
<text v-if="item.delivery_time==0">24小时内发货</text>
|
|
<text v-if="item.delivery_time==1">48小时内发货</text>
|
|
<text v-if="item.delivery_time==2">72小时内发货</text>
|
|
<text v-if="item.delivery_time==3">7天内发货</text>
|
|
<text v-if="item.delivery_time==4">15天内发货</text>
|
|
<text v-if="item.delivery_time==5">30天内发货</text>
|
|
<text v-if="item.delivery_time==6">45天内发货</text>
|
|
</view>
|
|
</view> -->
|
|
</view>
|
|
<!-- </template> -->
|
|
<!-- <template v-slot:right="{rightList}">
|
|
<view class="goodsItem" style="margin-right: 0;" v-for="(item,index) in rightList"
|
|
@click="goDetails(item)" :key="index">
|
|
<view class="pic">
|
|
<image :src="item.goods_image" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="goodsInfo">
|
|
<view class="title">
|
|
<text v-if="item.selling_point" class="ziying">{{item.selling_point}}</text>
|
|
<text class="name">{{item.goods_name}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="shenBox">
|
|
<view class="detail-price oneline-hide">
|
|
<text class="goods-price f-30 col-m"><text
|
|
style="font-size: 26rpx;">¥</text>{{ item.goods_price_min>0?Number(item.goods_price_min):0.00}}
|
|
<text class="delPrice"></text></text>
|
|
<text v-if="item.line_price_min > 0"
|
|
class="line-price col-9 f-24">¥{{ item.line_price_min>0?Number(item.line_price_min):0.00 }}</text>
|
|
</view>
|
|
<image :src="$picUrl+'/static/detail/redShen.png'" v-if="item.is_check==1" mode="">
|
|
</image>
|
|
</view>
|
|
<view class="goodsInfo1" v-if="item.cmmdty_model">
|
|
<view class="oneTip" >
|
|
{{item.cmmdty_model}}
|
|
</view>
|
|
</view>
|
|
<view class="goodsSend">
|
|
<view class="sendLeft">
|
|
<view class="left_1">
|
|
{{item.goods_source}}
|
|
</view>
|
|
<view class="left_2">
|
|
{{Number(item.discount)}}折
|
|
</view>
|
|
</view>
|
|
<view class="sendRight">
|
|
<text v-if="item.delivery_time==0">24小时内发货</text>
|
|
<text v-if="item.delivery_time==1">48小时内发货</text>
|
|
<text v-if="item.delivery_time==2">72小时内发货</text>
|
|
<text v-if="item.delivery_time==3">7天内发货</text>
|
|
<text v-if="item.delivery_time==4">15天内发货</text>
|
|
<text v-if="item.delivery_time==5">30天内发货</text>
|
|
<text v-if="item.delivery_time==6">45天内发货</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template> -->
|
|
<!-- </u-waterfall> -->
|
|
<view v-if="goodsRecommend.length" class="finished">{{ recommendLoadTitle }}</view>
|
|
<u-empty text="暂无数据显示哦~" v-if="goodsRecommend.length==0" mode="list" style="width: 100%"></u-empty>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view v-show="current==1 && list[current].name === '同城送'">
|
|
<view class="secondSection">
|
|
<image class="shopImage" :src="cityInfo.imageList?cityInfo.imageList[0]:''"></image>
|
|
<view class="content" v-if="cityInfo.shop_name">
|
|
<view class="topcontent">
|
|
<view class="shopTitle">
|
|
<text class="title">{{cityInfo.shop_name}}</text>
|
|
<text class="shopStatus">营业中</text>
|
|
</view>
|
|
<view class="rate">
|
|
<u-rate :count="5" inactive-color="#818181" active-color="#FA8C3D" v-model="cityInfo.star">
|
|
</u-rate>
|
|
<text>{{cityInfo.star}}</text>
|
|
</view>
|
|
<view class="time">
|
|
营业时间:{{cityInfo.shop_hours}}
|
|
</view>
|
|
<view class="tags">
|
|
<view class="tagsItem" v-for="(item,index) in cityInfo.remark" :key="index">
|
|
{{item}}
|
|
</view>
|
|
</view>
|
|
<view class="zixun">
|
|
<view class="zixunItem" @click="openWx()">
|
|
<image src="/static/user/weChat.png" mode="widthFix" class="weChat"></image>
|
|
<view class="askText">
|
|
咨询
|
|
</view>
|
|
</view>
|
|
<view class="zixunItem" style="margin-left:42rpx;" @click="callPhone">
|
|
<image :src="$picUrl+'/static/home/ph.png'" mode="widthFix" class="weChat"></image>
|
|
<view class="askText">
|
|
电话
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="shopAddress">
|
|
<view class="address">
|
|
<view class="ad" @click="openMap()">
|
|
<view class="addrTextFirst">
|
|
{{cityInfo.address}}
|
|
</view>
|
|
<u-icon name="arrow-right"></u-icon>
|
|
</view>
|
|
<view class="adInfo" @click="openMap()">
|
|
<u-icon name="map-fill" style="font-size: 30rpx;"></u-icon>
|
|
<view class="addrText">
|
|
{{cityInfo.full_address}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="pCar" @click="goJump('/pages/news/park/index')">
|
|
<image :src="$picUrl+'/static/home/p.png'" mode="widthFix" class="p"></image>
|
|
<view class="car">
|
|
附近停车场
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="diannei">
|
|
<view class="dianneiTitle">
|
|
<text>店内现货</text>
|
|
<view class="lookMore" @click="goJump('/pages/user/vip/goods?type=1')">
|
|
查看更多
|
|
<u-icon name="arrow-right" color="#909090"></u-icon>
|
|
</view>
|
|
</view>
|
|
<scroll-view class="dianneiContent" scroll-x="true" style="height: 164rpx;">
|
|
<view class="dianneiItem" v-for="(item,index) in dapaiList" :key="index"
|
|
@click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)">
|
|
<image :src="item.goods_image"></image>
|
|
<view class="itemTitle">
|
|
{{item.goods_name}}
|
|
</view>
|
|
</view>
|
|
<!-- <view class="dianneiContent">
|
|
</view> -->
|
|
</scroll-view>
|
|
</view>
|
|
<view class="diannei">
|
|
<view class="dianneiTitle" @click="goJump('/pages/activity/intimate')">
|
|
<text>同城服务</text>
|
|
<view class="lookMore">
|
|
查看更多
|
|
<u-icon name="arrow-right" color="#909090"></u-icon>
|
|
</view>
|
|
</view>
|
|
<scroll-view class="serviceConent" scroll-x="true" style="height: 260rpx;">
|
|
<!-- <view class="serviceConent"> -->
|
|
<view class="serviceItem" v-for="(item,index) in serveList" :key="index"
|
|
@click="openServe(index)">
|
|
<image :src="item.image_url" mode=""></image>
|
|
<view class="itemTitle">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
<!-- </view> -->
|
|
</scroll-view>
|
|
</view>
|
|
<view class="comment">
|
|
<view class="commentTitle">
|
|
<text>门店评价({{cityInfo.evaluate?cityInfo.evaluate.length:''}})</text>
|
|
<view class="lookMore" @click="openPinlun()">
|
|
查看更多
|
|
<u-icon name="arrow-right" color="#909090"></u-icon>
|
|
</view>
|
|
</view>
|
|
<view class="commentItem" v-for="(a,i) in cityInfo.evaluate" :key="i">
|
|
<view class="left">
|
|
<view class="commentAvatar">
|
|
<image :src="a.image" mode=""></image>
|
|
<text>{{a.nickname}}</text>
|
|
</view>
|
|
<view class="commentText">
|
|
{{a.content}}
|
|
</view>
|
|
</view>
|
|
<!-- <view class="right">
|
|
<image :src="$picUrl+'/static/index/goods.png'" mode=""></image>
|
|
</view> -->
|
|
</view>
|
|
<view class="commentTitle" style="padding:26rpx 0 16rpx 0;"
|
|
@click="goJump('/pages/news/consult/store')">
|
|
<text>门店相册</text>
|
|
<view class="lookMore">
|
|
<u-icon name="arrow-right" color="#909090"></u-icon>
|
|
</view>
|
|
</view>
|
|
<scroll-view scroll-x="true" style="height: 130rpx;">
|
|
<view class="commentContent">
|
|
<view class="serviceItem" v-for="(item,index) in cityInfo.imageList" :key="index"
|
|
@click="previewImage(index)">
|
|
<image :src="item"></image>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
</view>
|
|
<view class="history">
|
|
<view class="title">
|
|
门店历程
|
|
</view>
|
|
<u-time-line>
|
|
<u-time-line-item nodeTop="6" v-for="(a,i) in cityInfo.history" :key="i" style="display: flex;">
|
|
<!-- 此处自定义了左边内容,用一个图标替代 -->
|
|
<template v-slot:node>
|
|
<view class="u-node">
|
|
<view class="point">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<template v-slot:content>
|
|
<view style="margin-bottom:26rpx">
|
|
<view class="u-order-title" style="margin-top:10rpx">{{a.time}}</view>
|
|
<view class="u-order-desc">
|
|
{{a.contenmt}}
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
</u-time-line-item>
|
|
<!-- <u-time-line-item nodeTop="6" style="display: flex;">
|
|
|
|
<template v-slot:node>
|
|
<view class="u-node">
|
|
<view class="point">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<template v-slot:content>
|
|
<view style="margin-bottom:26rpx;">
|
|
<view class="u-order-title">2023年07月01日</view>
|
|
<view class="u-order-desc">
|
|
YNk 121于盘江西路瀑布公园旁盛大开业,致力于
|
|
带来更多优质商品和服务,为附近的客户朋友提供
|
|
便捷的购物。
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
</u-time-line-item> -->
|
|
</u-time-line>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="toTop" v-if="isTop" @click="openScrollTo()">
|
|
<image :src="$picUrl+'/static/toTop.png?=1'"></image>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import * as GoodsApi from '@/api/home/index.js';
|
|
import * as limit from '@/api/sharp/home.js';
|
|
import * as Api from '@/api/goods'
|
|
import * as activity from '@/api/activity'
|
|
import * as newFunApi from '@/api/newFun'
|
|
import QQMapWX from '@/utils/qqmap-wx-jssdk'
|
|
import styleColor from '../styleColor';
|
|
export default {
|
|
data() {
|
|
return {
|
|
isLogin: false,
|
|
isTop: false,
|
|
logoImage: '',
|
|
timestamp: new Date().getTime(),
|
|
// background: {
|
|
// backgroundColor: 'transparent',
|
|
// },
|
|
background: {
|
|
background: 'url(https://www.royaum.com.cn/static/index/index-bg.png) center top no-repeat',
|
|
backgroundSize: '100% auto',
|
|
},
|
|
list: [{
|
|
name: '首页'
|
|
}],
|
|
current: 0,
|
|
tabList: [],
|
|
tabCurrent: 0,
|
|
swiperList: [`${this.$picUrl}/static/index/guanggao.png`],
|
|
gridList: [{
|
|
image: `${this.$picUrl}/static/index/g1.png?n=` + new Date().getTime(),
|
|
text: "预售专区",
|
|
path: '/pages/activity/presale',
|
|
type: 2
|
|
},
|
|
{
|
|
image: `${this.$picUrl}/static/index/g2.png?n=` + new Date().getTime(),
|
|
text: "邀请有礼",
|
|
path: '/pages/invite/index',
|
|
type: 1
|
|
},
|
|
{
|
|
image: `${this.$picUrl}/static/index/g3.png?n=` + new Date().getTime(),
|
|
text: "领券中心",
|
|
path: '/pages/news/coupon/index',
|
|
type: 2
|
|
},
|
|
{
|
|
image: `${this.$picUrl}/static/index/g4.png?n=` + new Date().getTime(),
|
|
text: "安装报修",
|
|
path: '/pages/serve/install',
|
|
type: 3
|
|
},
|
|
{
|
|
image: `${this.$picUrl}/static/index/g5.png?n=` + new Date().getTime(),
|
|
text: "旧物回收",
|
|
path: '/pages/news/recycling/index',
|
|
type: 2
|
|
},
|
|
],
|
|
catagoryList: [],
|
|
paihangList: [],
|
|
dapaiList: [],
|
|
seckillList: [],
|
|
xinpinList: [],
|
|
goodsRecommend: [],
|
|
isToggle: false,
|
|
//第二
|
|
count: 4,
|
|
value: 2,
|
|
weixiuList: [],
|
|
commentList: [],
|
|
bannerList: [],
|
|
cityInfo: {},
|
|
serveList: [],
|
|
couList: [],
|
|
timeData: {},
|
|
tabbar: [],
|
|
curTabIndex: 0,
|
|
wxAppSetting: {},
|
|
storagePageIndex: '',
|
|
tabActiveColor: '',
|
|
navBgColor: '',
|
|
recommendPage: 1,
|
|
recommendFinish: false,
|
|
recommendLoadTitle: ''
|
|
}
|
|
},
|
|
computed: {
|
|
storagePageIndex() {
|
|
const index = uni.getStorageSync('styleIndex') || '';
|
|
return index;
|
|
},
|
|
},
|
|
watch: {
|
|
storagePageIndex: {
|
|
immediate: true,
|
|
handler() {
|
|
this.styleIndex = this.storagePageIndex;
|
|
this.tabActiveColor = this.styleIndex ? (styleColor.indexColor[this.styleIndex - 1] || '') : '';
|
|
this.navBgColor = this.styleIndex ? (styleColor.indexNavBgColor[this.styleIndex - 1] || '') : '';
|
|
},
|
|
},
|
|
},
|
|
onReachBottom() {
|
|
if (!this.recommendFinish) {
|
|
this.getSuggest()
|
|
}
|
|
},
|
|
methods: {
|
|
/**
|
|
* 获取小程序配置
|
|
*/
|
|
async queryWxAppSetting() {
|
|
let {
|
|
status,
|
|
data
|
|
} = await GoodsApi.wxAppSetting({});
|
|
if (status == 200) {
|
|
this.wxAppSetting = data;
|
|
const arr = [{ name: '首页' }];
|
|
if (data.same_city) {
|
|
arr.push({
|
|
name: '同城送'
|
|
});
|
|
}
|
|
if (data.square_dynamic) {
|
|
arr.push({
|
|
name: '广场'
|
|
})
|
|
}
|
|
this.list = [...arr];
|
|
if (data.select_mechant && uni.getStorageSync('storeVersion') == 1) {
|
|
this.gridList.splice(5, 1,
|
|
{
|
|
image: `${this.$picUrl}/static/index/shop-active.png`,
|
|
text: "精选商户",
|
|
path: '/pages/shopList/index',
|
|
type: 2
|
|
});
|
|
}
|
|
}
|
|
},
|
|
async getWxAppStyle() {
|
|
let {
|
|
status,
|
|
data
|
|
} = await GoodsApi.wxAppStyle({});
|
|
if (status == 200) {
|
|
console.log(data, data.style.style);
|
|
uni.setStorageSync('styleIndex', data.style.style || '');
|
|
this.styleIndex = data.style.style;
|
|
this.tabActiveColor = this.styleIndex ? (styleColor.indexColor[this.styleIndex - 1] || '') : '';
|
|
this.navBgColor = this.styleIndex ? (styleColor.indexNavBgColor[this.styleIndex - 1] || '') : '';
|
|
}
|
|
},
|
|
onChangeSeckillCutDownTime(e) {
|
|
this.timeData = e
|
|
},
|
|
// 跳转到秒杀新的商品详情
|
|
handleTargetGoods(item) {
|
|
uni.navigateTo({
|
|
url: '/pages/goods/seckillDetail?sharpGoodsId=' + item.sharp_goods_id +'&activeTimeId='+this.tabbar[this.curTabIndex].active_time_id+ "&isSeckill=" + true + '&isBuy=' + this
|
|
.seckillCutDownTime + '&seckillText=' + (this.tabbar[this.curTabIndex].status == 10 ?
|
|
'结束' : '开始')
|
|
})
|
|
},
|
|
//跳转会话列表
|
|
toChat() {
|
|
if (!uni.getStorageSync("AccessToken")) {
|
|
uni.navigateTo({
|
|
url: "/pages/login/index"
|
|
})
|
|
return;
|
|
}
|
|
uni.navigateTo({
|
|
url: "/pages/news/user/message"
|
|
})
|
|
},
|
|
//查看全部评论
|
|
openPinlun() {
|
|
uni.navigateTo({
|
|
url: "/pages/news/consult/comment"
|
|
})
|
|
},
|
|
//咨询
|
|
openWx() {
|
|
uni.navigateTo({
|
|
url: "/pages/news/consult/index"
|
|
})
|
|
},
|
|
//门店图片预览
|
|
previewImage(i) {
|
|
uni.previewImage({
|
|
current: this.cityInfo.imageList[i],
|
|
urls: this.cityInfo.imageList
|
|
})
|
|
},
|
|
//跳转服务
|
|
openServe(i) {
|
|
uni.navigateTo({
|
|
url: "/pages/activity/intimate?index=" + i
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 获取nanner列表
|
|
*/
|
|
async queryBannerList() {
|
|
let {
|
|
status,
|
|
data
|
|
} = await GoodsApi.getBannerList({});
|
|
if (status == 200) {
|
|
this.bannerList = data
|
|
}
|
|
},
|
|
/**
|
|
* 获取服务列表
|
|
*/
|
|
async getServeList() {
|
|
const {
|
|
status,
|
|
message,
|
|
data
|
|
} = await newFunApi.serverCategoryList({});
|
|
if (status == 200) {
|
|
this.serveList = data.list
|
|
}
|
|
},
|
|
// 获取新人礼包劵
|
|
async getCoupons() {
|
|
const {
|
|
status,
|
|
message,
|
|
data
|
|
} = await activity.couponList();
|
|
if (status == 200) {
|
|
let arr = {}
|
|
if (data.list && data.list.length > 0) {
|
|
arr = data.list.filter(a => a.coupon_type == 10)[0]
|
|
}
|
|
this.couList = arr
|
|
}
|
|
},
|
|
search() {
|
|
// 跳转商品搜索
|
|
uni.navigateTo({
|
|
url: '/pages/search/index'
|
|
})
|
|
},
|
|
getTypeList() {
|
|
GoodsApi.typeList({
|
|
// is_in_store: this.current == 0 ? 0 : 1
|
|
}).then(res => {
|
|
if (res.status == 200) {
|
|
this.tabList = res.data.list;
|
|
|
|
let arr = [],
|
|
total = (this.tabList && this.tabList.length > 0 ? this.tabList[0].children.length : 0)
|
|
if (this.tabList[0].children && this.tabList[0].children.length > 0) {
|
|
this.tabList[0].children.map(a => {
|
|
arr.push(a)
|
|
})
|
|
}
|
|
if (5 - total >= 0 && arr.length > 0) {
|
|
this.tabList[0].children.map(a => {
|
|
if (a.children && a.children.length > 0) {
|
|
a.children.map((b, idx) => {
|
|
if (idx < (20 - arr.length)) {
|
|
arr.push(b)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
this.catagoryList = arr;
|
|
// this.catagoryList = res.data.list[0].children || []
|
|
if (this.current == 0) {
|
|
this.getRankingList(this.tabList[0].category_id)
|
|
// this.getNewGoods(this.tabList[0].category_id)
|
|
this.getNewGoods()
|
|
}
|
|
this.getBigList()
|
|
// this.getBigList(this.tabList[0].category_id)
|
|
}
|
|
})
|
|
},
|
|
goPage(url, type) {
|
|
if (type == 1) {
|
|
if (!uni.getStorageSync("AccessToken")) {
|
|
uni.navigateTo({
|
|
url: "/pages/login/index"
|
|
})
|
|
return;
|
|
}
|
|
uni.navigateTo({
|
|
url
|
|
})
|
|
} else {
|
|
uni.navigateTo({
|
|
url
|
|
})
|
|
}
|
|
},
|
|
changeGoodsType(index) {
|
|
this.tabCurrent = index;
|
|
this.isToggle = false;
|
|
let arr = [],
|
|
total = this.tabList[index].children.length
|
|
if (this.tabList[index].children && this.tabList[index].children.length > 0) {
|
|
this.tabList[index].children.map(a => {
|
|
arr.push(a)
|
|
})
|
|
}
|
|
if (5 - total >= 0 && arr.length > 0) {
|
|
this.tabList[index].children.map(a => {
|
|
if (a.children && a.children.length > 0) {
|
|
a.children.map((b, idx) => {
|
|
if (idx < (20 - arr.length)) {
|
|
arr.push(b)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
// this.catagoryList = this.tabList[index].children || [];
|
|
this.catagoryList = arr
|
|
this.getRankingList(this.tabList[index].category_id)
|
|
// this.getNewGoods(this.tabList[index].category_id)
|
|
this.getNewGoods()
|
|
// this.getBigList(this.tabList[index].category_id)
|
|
this.getBigList()
|
|
},
|
|
getRankingList(val) {
|
|
// 获取首页排行榜
|
|
GoodsApi.chartsGoodsJing().then(result => {
|
|
let arr = result.data;
|
|
let finalArr = arr.filter(item => {
|
|
console.log(val)
|
|
return item.category_id == val
|
|
})
|
|
console.log(finalArr)
|
|
if (finalArr.length > 0) {
|
|
let arr = finalArr[0].goods_list
|
|
if (arr && arr.length > 0) {
|
|
arr.map(a => {
|
|
a.goods_price_min = Number(a.goods_price_min)
|
|
a.goods_price_max = Number(a.goods_price_max)
|
|
a.line_price_min = Number(a.line_price_min)
|
|
a.line_price_max = Number(a.line_price_max)
|
|
})
|
|
}
|
|
this.paihangList = arr
|
|
console.log(this.paihangList)
|
|
}
|
|
})
|
|
},
|
|
getSeckill() {
|
|
// 限时抢购
|
|
this.seckillList = []
|
|
limit.data().then(result => {
|
|
let seckillList = [];
|
|
this.tabbar = result.data.tabbar
|
|
if (result.data.tabbar && result.data.tabbar.length > 0) {
|
|
let count_down_time = result.data.tabbar[0].count_down_time.replace(/-/g, '/');
|
|
this.seckillCutDownTime = Math.ceil((new Date(count_down_time).getTime() - new Date()
|
|
.getTime()));
|
|
console.log(this.seckillCutDownTime)
|
|
} else {
|
|
this.seckillCutDownTime = 0
|
|
}
|
|
if (result.data.goodsList && result.data.goodsList.data && result.data.goodsList.data.length >
|
|
0) {
|
|
seckillList = result.data.goodsList.data;
|
|
for (var i = 0; i < seckillList.length; i++) {
|
|
seckillList[i].original_price = Number(seckillList[i].original_price)
|
|
seckillList[i].seckill_price_max = Number(seckillList[i].seckill_price_max)
|
|
seckillList[i].seckill_price_min = Number(seckillList[i].seckill_price_min)
|
|
if (seckillList[i].spec_type == 10) {
|
|
this.seckillList.push(seckillList[i])
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
},
|
|
getSuggest() {
|
|
// 获取推荐商品
|
|
Api.recommendedNew({ page: this.recommendPage++ }).then(res => {
|
|
console.log(res);
|
|
let arr = res.data.goodsList.data
|
|
if (arr && arr.length > 0) {
|
|
for (let i = 0; i < arr.length; i++) {
|
|
arr[i].goods_price_min = Number(arr[i].goods_price_min);
|
|
arr[i].goods_price_max = Number(arr[i].goods_price_max)
|
|
arr[i].line_price_min = Number(arr[i].line_price_min);
|
|
arr[i].line_price_max = Number(arr[i].line_price_max)
|
|
}
|
|
}
|
|
if (arr.length < res.data.goodsList.per_page) {
|
|
this.recommendFinish = true;
|
|
}
|
|
this.recommendLoadTitle = this.recommendFinish ? "已全部加载完" : "上拉加载更多";
|
|
this.goodsRecommend = [...this.goodsRecommend, ...arr]
|
|
})
|
|
|
|
},
|
|
getNewGoods(val) {
|
|
const that = this
|
|
let param = {
|
|
page: 1,
|
|
per_page: 100,
|
|
categoryId: '',
|
|
is_brand: '',
|
|
is_new: 1,
|
|
order: '',
|
|
is_in_store: ''
|
|
}
|
|
GoodsApi.brandList(param).then(res => {
|
|
let arr = res.data.data
|
|
if (arr && arr.length > 0) {
|
|
arr.map(a => {
|
|
a.goods_price_min = Number(a.goods_price_min)
|
|
a.goods_price_max = Number(a.goods_price_max)
|
|
a.line_price_min = Number(a.line_price_min)
|
|
a.line_price_max = Number(a.line_price_max)
|
|
})
|
|
}
|
|
that.xinpinList = arr;
|
|
// if (that.newGoodsList.length == 4) {
|
|
// that.newGoodsList.pop()
|
|
// }
|
|
})
|
|
},
|
|
toggleItem() {
|
|
this.isToggle = !this.isToggle;
|
|
},
|
|
getBigList(val) {
|
|
const that = this
|
|
let param = {
|
|
page: 1,
|
|
per_page: 100,
|
|
categoryId: '',
|
|
is_brand: this.current == 0 ? 1 : '',
|
|
is_new: '',
|
|
order: '',
|
|
is_in_store: this.current == 0 ? '' : 1
|
|
}
|
|
GoodsApi.brandList(param).then(res => {
|
|
let arr = res.data.data;
|
|
if (arr && arr.length > 0) {
|
|
arr.map(a => {
|
|
a.goods_price_min = Number(a.goods_price_min)
|
|
a.goods_price_max = Number(a.goods_price_max)
|
|
a.line_price_min = Number(a.line_price_min)
|
|
a.line_price_max = Number(a.line_price_max)
|
|
})
|
|
}
|
|
that.dapaiList = arr
|
|
|
|
})
|
|
.finally(() => {})
|
|
},
|
|
goBigGoods() {
|
|
uni.navigateTo({
|
|
url: '/pages/user/vip/goods'
|
|
})
|
|
},
|
|
gotoDetail(index) {
|
|
// if (this.bannerList[index].redirect_url) {
|
|
// uni.navigateTo({
|
|
// url: '/pages/goods/detail?goodsId=' + this.bannerList[index].redirect_url
|
|
// })
|
|
// } else {
|
|
if (!this.bannerList[index].redirect_url) {
|
|
return;
|
|
}
|
|
uni.navigateTo({
|
|
url: '/pages/activity/newsshop?activeid=' + this.bannerList[index].redirect_url + '&type=1'
|
|
})
|
|
// }
|
|
},
|
|
goDetails(item) {
|
|
uni.navigateTo({
|
|
url: '/pages/goods/detail?goodsId=' + item.goods_id
|
|
})
|
|
},
|
|
goNews() {
|
|
// 新年换新
|
|
uni.navigateTo({
|
|
url: '/pages/activity/newsshop'
|
|
})
|
|
},
|
|
goNewUser() {
|
|
// 新人首单礼
|
|
uni.navigateTo({
|
|
url: '/pages/activity/newPeople'
|
|
})
|
|
},
|
|
goNewGoods() {
|
|
uni.navigateTo({
|
|
url: '/pages/activity/newGoods'
|
|
})
|
|
},
|
|
seckill() {
|
|
uni.navigateTo({
|
|
url: '/pages/activity/seckill'
|
|
})
|
|
},
|
|
rankIng() {
|
|
uni.navigateTo({
|
|
url: '/pages/activity/ranking'
|
|
})
|
|
},
|
|
changeHome(val) {
|
|
if (this.list[val].name === '广场') {
|
|
uni.navigateTo({
|
|
url: '/pages/squareDynamic/index'
|
|
});
|
|
} else {
|
|
this.getTypeList()
|
|
}
|
|
this.current = val;
|
|
},
|
|
getCityInfo() {
|
|
const that = this
|
|
GoodsApi.cityInfo().then(res => {
|
|
if (res.status == 200) {
|
|
that.cityInfo = res.data;
|
|
uni.setStorageSync("cityInfo", res.data)
|
|
}
|
|
})
|
|
.finally(() => {})
|
|
},
|
|
async getStore() {
|
|
newFunApi.storeData().then(res => {
|
|
if (res.status == 200) {
|
|
this.logoImage = res.data.storeInfo.logoImage ? res.data.storeInfo.logoImage
|
|
.preview_url : "";
|
|
uni.setStorageSync('storeInfo', JSON.stringify(res.data.storeInfo));
|
|
uni.setStorageSync('storeVersion', res.data.storeInfo.store_version || 0);
|
|
}
|
|
})
|
|
.finally(() => {
|
|
this.queryWxAppSetting();
|
|
})
|
|
},
|
|
goJump(path) {
|
|
uni.navigateTo({
|
|
url: path
|
|
})
|
|
},
|
|
callPhone() {
|
|
uni.makePhoneCall({
|
|
phoneNumber: this.cityInfo.phone
|
|
})
|
|
},
|
|
openMap() {
|
|
uni.openLocation({
|
|
latitude: Number(this.cityInfo.latitude),
|
|
longitude: Number(this.cityInfo.longitude)
|
|
})
|
|
},
|
|
openScrollTo() {
|
|
uni.pageScrollTo({
|
|
scrollTop: 0
|
|
})
|
|
},
|
|
// 用户授权
|
|
getAuthorize() {
|
|
const _this = this
|
|
uni.authorize({
|
|
scope: 'scope.userLocation', // 获取地理信息必填的参数,其它参数见文档
|
|
success(res) {
|
|
_this.getAdressLocation()
|
|
},
|
|
// 授权失败
|
|
fail(err) {
|
|
uni.showModal({
|
|
title: '温馨提示',
|
|
content: '无法获取当前位置,请手动开启授权',
|
|
success: function(res) {
|
|
if (res.confirm) {
|
|
console.log('用户点击确定')
|
|
uni.openSetting({
|
|
success(res) {
|
|
if (res.authSetting['scope.userLocation']) {
|
|
console.log('打开授权设置定位')
|
|
_this.getAdressLocation()
|
|
}
|
|
},
|
|
})
|
|
} else if (res.cancel) {
|
|
console.log('用户点击取消')
|
|
}
|
|
},
|
|
})
|
|
},
|
|
})
|
|
},
|
|
|
|
getAdressLocation() {
|
|
var that = this;
|
|
const tMap = new QQMapWX({
|
|
key: "ZDBBZ-QQX66-YVYSB-M56JB-FGSS5-EIBI4", //开发者密钥
|
|
});
|
|
uni.getLocation({
|
|
type: "gcj02",
|
|
geocode: true,
|
|
success: (res) => {
|
|
that.longitude = res.longitude;
|
|
that.latitude = res.latitude;
|
|
tMap.reverseGeocoder({
|
|
location: {
|
|
latitude: that.latitude,
|
|
longitude: that.longitude,
|
|
},
|
|
success: function(res) {
|
|
uni.setStorageSync("addressResult", res.result);
|
|
console.log("当前地址:", res.result);
|
|
},
|
|
fail: function(res) {
|
|
console.log("定位失败", res);
|
|
},
|
|
});
|
|
},
|
|
fail: () => {
|
|
console.log("获取经纬度失败");
|
|
},
|
|
});
|
|
},
|
|
},
|
|
onLoad() {
|
|
this.getTypeList()
|
|
this.getSeckill()
|
|
this.getCityInfo()
|
|
this.getCoupons();
|
|
this.getServeList();
|
|
this.queryBannerList();
|
|
this.getStore();
|
|
this.getAuthorize();
|
|
},
|
|
onShow() {
|
|
if (this.list[this.current].name === '广场') {
|
|
this.current = 0;
|
|
}
|
|
this.getWxAppStyle();
|
|
this.isLogin = uni.getStorageSync("AccessToken") ? true : false
|
|
this.recommendPage = 1;
|
|
this.recommendFinish = false;
|
|
this.recommendLoadTitle = '';
|
|
this.goodsRecommend = [];
|
|
this.getSuggest()
|
|
},
|
|
onPageScroll(e) {
|
|
if (e.scrollTop <= 200) { // 当滚动到顶部且向下滑动时为true
|
|
this.isTop = false
|
|
} else {
|
|
this.isTop = true
|
|
}
|
|
},
|
|
/**
|
|
* 分享当前页面
|
|
*/
|
|
onShareAppMessage() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 分享到朋友圈
|
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
|
*/
|
|
onShareTimeline() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import './style.scss';
|
|
.index {
|
|
min-height: calc(100vh - 100rpx);
|
|
background: url('https://www.royaum.com.cn/static/index/index-bg.png');
|
|
background-repeat: no-repeat;
|
|
// background-size: contain;
|
|
background-size: 100% auto;
|
|
|
|
.navbarContent {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
// padding-left:36rpx;
|
|
|
|
&::v-deep .u-navbar-inner {
|
|
justify-content: center;
|
|
position: relative;
|
|
margin-right: 0 !important;
|
|
|
|
.logo {
|
|
height: 50rpx;
|
|
max-width: 150rpx;
|
|
position: absolute;
|
|
min-width: 50rpx;
|
|
left: 36rpx;
|
|
top: 25rpx;
|
|
}
|
|
|
|
.u-slot-content {
|
|
flex: none;
|
|
}
|
|
|
|
.u-subsection {
|
|
border-radius: 17px !important;
|
|
background: rgba(255, 255, 255, 0.5) !important;
|
|
padding: 0 !important;
|
|
|
|
.u-item {
|
|
width: 110rpx;
|
|
}
|
|
|
|
.u-item-bg {
|
|
width: 110rpx !important;
|
|
bottom: 0 !important;
|
|
height: 100% !important;
|
|
border-radius: 17px !important;
|
|
// left:100rpx !important;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.searchContentContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 0 36rpx;
|
|
margin-top: 14rpx;
|
|
|
|
.searchContent {
|
|
margin-right: 20rpx;
|
|
flex: 1;
|
|
position: relative;
|
|
|
|
.btn {
|
|
width: 120rpx;
|
|
height: 56rpx;
|
|
line-height: 56rpx;
|
|
background: #F3202A;
|
|
border-radius: 24px 24px 24px 24px;
|
|
opacity: 1;
|
|
position: absolute;
|
|
z-index: 9;
|
|
text-align: center;
|
|
font-size: 29rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
top: 4rpx;
|
|
right: 4rpx;
|
|
|
|
}
|
|
}
|
|
|
|
.chat {
|
|
position: relative;
|
|
|
|
button {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 2;
|
|
opacity: 0;
|
|
}
|
|
|
|
.badge {
|
|
position: absolute;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #F3202A;
|
|
font-size: 25rpx;
|
|
color: #fff;
|
|
top: -10rpx;
|
|
right: -10rpx;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.tabs {
|
|
margin-top: 10rpx;
|
|
width: 100%;
|
|
height: 80rpx;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
|
|
.tabItem {
|
|
margin-right: 30rpx;
|
|
position: relative;
|
|
display: inline-block;
|
|
font-size: 29rpx;
|
|
font-weight: 400;
|
|
padding: 0 20rpx;
|
|
color: #282828;
|
|
|
|
.flag {
|
|
position: absolute;
|
|
bottom: -13px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
|
|
image {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.active {
|
|
color: #F6393D;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
// ::v-deep .u-tab-item{
|
|
// height:76rpx !important;
|
|
// }
|
|
}
|
|
|
|
.main {
|
|
padding: 0 25rpx;
|
|
overflow: hidden;
|
|
|
|
.picContainer {
|
|
// height: 196rpx;
|
|
height: auto;
|
|
|
|
image {
|
|
height: 196rpx;
|
|
width: 695rpx;
|
|
}
|
|
|
|
::v-deep .u-swiper-image {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
.grid {
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
opacity: 1;
|
|
padding: 20rpx;
|
|
margin-top: 20rpx;
|
|
|
|
.gridRows {
|
|
display: flex;
|
|
// justify-content: space-between;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.more {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 30rpx;
|
|
font-size: 23rpx;
|
|
font-weight: 400;
|
|
color: #7D7D7D;
|
|
}
|
|
|
|
.gridItem {
|
|
// flex:1;
|
|
width: 20%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 30rpx;
|
|
|
|
.imageC {
|
|
width: 88rpx;
|
|
height: 88rpx;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
text {
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #5A5A5A;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
}
|
|
|
|
.secondRows {
|
|
.imageC {
|
|
// background-color: #F3F3F3;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
image {
|
|
width: 80%;
|
|
height: 80%;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.firstContent {
|
|
position: relative;
|
|
|
|
.couponNew {
|
|
position: absolute;
|
|
top: -12rpx;
|
|
width: 520rpx;
|
|
left: 25rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
text:nth-child(1) {
|
|
font-family: YouSheBiaoTiYuan, YouSheBiaoTiYuan;
|
|
font-weight: 700;
|
|
font-size: 40rpx;
|
|
color: #FFFFFF;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
|
|
text:nth-child(2) {
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 25rpx;
|
|
color: #FFFFFF;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
.firstBg {
|
|
width: 698rpx;
|
|
height: 230rpx;
|
|
margin-bottom: 20rpx;
|
|
&.firstBgStyle {
|
|
width: 686rpx;
|
|
height: 230rpx;
|
|
}
|
|
}
|
|
|
|
.firstInfo {
|
|
position: absolute;
|
|
width: 97%;
|
|
top: 17%;
|
|
left: 3%;
|
|
|
|
.fTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-right: 27%;
|
|
|
|
.firstTitle {
|
|
width: 180rpx;
|
|
height: auto;
|
|
}
|
|
|
|
text {
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
}
|
|
|
|
.couponInfo {
|
|
display: flex;
|
|
// justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 25rpx;
|
|
|
|
.left {
|
|
width: 67%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 50rpx;
|
|
|
|
.flag {
|
|
font-size: 46rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 600;
|
|
color: #FF0777;
|
|
|
|
}
|
|
|
|
.num {
|
|
font-size: 52rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 600;
|
|
margin-left: 14rpx;
|
|
margin-right: 24rpx;
|
|
color: #FF0777;
|
|
}
|
|
|
|
.couponName {
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 600;
|
|
color: #FF0777;
|
|
|
|
}
|
|
}
|
|
|
|
.line {
|
|
border: 1px dashed #B9B9B9;
|
|
width: 2rpx;
|
|
height: 76rpx;
|
|
margin-top: 24rpx;
|
|
position: relative;
|
|
left: -4rpx;
|
|
}
|
|
|
|
.lingqu {
|
|
width: 25%;
|
|
// margin:0 auto;
|
|
margin-top: 24rpx;
|
|
|
|
.lqBtn {
|
|
text-align: center;
|
|
padding: 10rpx 20rpx;
|
|
margin: 0 16rpx;
|
|
background: linear-gradient(180deg, #FF1C75 0%, #FF470D 100%);
|
|
border-radius: 28px 28px 28px 28px;
|
|
opacity: 1;
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.dapai {
|
|
position: relative;
|
|
background-image: url("https://www.royaum.com.cn/static/index/dapaibg.png");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
padding: 20rpx 24rpx;
|
|
border-radius: 8rpx;
|
|
|
|
.dapaiBox {
|
|
position: relative;
|
|
|
|
.more {
|
|
font-size: 20rpx;
|
|
font-weight: 400;
|
|
color: #8C4D00;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0rpx;
|
|
}
|
|
|
|
.dapaiTitle {
|
|
margin-bottom: 10rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
&>image {
|
|
width: 158rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.goods {
|
|
margin-left: 20rpx;
|
|
position: relative;
|
|
|
|
&>image {
|
|
width: 148rpx;
|
|
}
|
|
|
|
&>view {
|
|
position: absolute;
|
|
// width:100%;
|
|
text-align: center;
|
|
font-size: 25rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
color: #8C4D00;
|
|
z-index: 9;
|
|
top: 6rpx;
|
|
left: 16rpx;
|
|
// margin-left:20rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dapaiContent {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.dapaiItem {
|
|
width: 20%;
|
|
float: left;
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin-top: 20rpx;
|
|
|
|
.picContent {
|
|
width: 134rpx;
|
|
text-align: center;
|
|
|
|
&>image {
|
|
width: 90rpx;
|
|
height: 90rpx;
|
|
}
|
|
}
|
|
|
|
.priceBox {
|
|
position: absolute;
|
|
height: 34rpx;
|
|
width: 134rpx;
|
|
left: 0;
|
|
top: 80rpx;
|
|
z-index: 2;
|
|
|
|
image {
|
|
height: 34rpx;
|
|
width: 134rpx;
|
|
}
|
|
|
|
&>view {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 34rpx;
|
|
line-height: 34rpx;
|
|
width: 90%;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
|
|
text {
|
|
font-size: 24rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.name {
|
|
font-size: 21rpx;
|
|
font-weight: 400;
|
|
line-height: 50rpx;
|
|
color: #505050;
|
|
width: 80%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-top: 10rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.qianggou {
|
|
// width: 694rpx;
|
|
padding: 10rpx 20rpx;
|
|
background: linear-gradient(180deg, #FFF8F8 0%, #FFFFFF 100%);
|
|
border-radius: 8rpx;
|
|
margin-top: 18rpx;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
|
|
.more {
|
|
font-size: 21rpx;
|
|
font-weight: 400;
|
|
color: #8C4D00;
|
|
position: absolute;
|
|
top: 25rpx;
|
|
right: 20rpx;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&>image {
|
|
width: 160rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.rest {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 60rpx;
|
|
}
|
|
|
|
.date-time {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 14rpx;
|
|
|
|
.time {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
background-color: #FF4D4D;
|
|
font-size: 25rpx;
|
|
color: #FFFFFF;
|
|
border-radius: 6rpx;
|
|
}
|
|
|
|
.da {
|
|
font-size: 34rpx;
|
|
color: #212121;
|
|
margin: 0 6rpx;
|
|
color: #FF4D4D;
|
|
}
|
|
}
|
|
}
|
|
|
|
.goods-list {
|
|
display: flex;
|
|
width: 100%;
|
|
margin-top: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
// height: 180rpx;
|
|
overflow: auto;
|
|
|
|
.list {
|
|
width: 20%;
|
|
margin: 0 6rpx;
|
|
|
|
.pictrue {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
text-align: center;
|
|
|
|
image {
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
}
|
|
|
|
.price {
|
|
position: relative;
|
|
|
|
.tip {
|
|
margin-top: -40rpx;
|
|
|
|
&>image {
|
|
width: 100rpx;
|
|
height: 39rpx;
|
|
}
|
|
}
|
|
|
|
.tipPrice {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100rpx;
|
|
left: 0;
|
|
line-height: 42rpx;
|
|
font-size: 20rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.linePrice {
|
|
width: 100rpx;
|
|
text-decoration: line-through;
|
|
text-align: center;
|
|
font-size: 20rpx;
|
|
font-weight: 400;
|
|
color: #8E8E8E;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.activity {
|
|
margin-top: 18rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.left {
|
|
width: 300rpx;
|
|
flex-shrink: 0;
|
|
font-size: 0;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
// flex:1;
|
|
width: 390rpx;
|
|
padding-left: 14rpx;
|
|
// margin-left:14rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
// align-items: ;
|
|
// justify-content: space-around;
|
|
// align-items: s;
|
|
.rightItem1,
|
|
.rightItem2 {
|
|
background: url('https://www.royaum.com.cn/static/index/newFirst.png');
|
|
background-size: cover!important;
|
|
padding: 14rpx;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: 208rpx;
|
|
|
|
.more {
|
|
font-size: 20rpx;
|
|
font-weight: 400;
|
|
color: #8C4D00;
|
|
position: absolute;
|
|
top: 15rpx;
|
|
right: 10rpx;
|
|
}
|
|
|
|
.title {
|
|
width: 165rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.right1Good {
|
|
.right1Item {
|
|
width: 33%;
|
|
text-align: center;
|
|
position: relative;
|
|
margin-top: 15rpx;
|
|
display: inline-block;
|
|
|
|
&>image {
|
|
width: 90rpx;
|
|
height: 100rpx;
|
|
}
|
|
|
|
.priceBox {
|
|
position: absolute;
|
|
height: 34rpx;
|
|
width: 134rpx;
|
|
left: 0;
|
|
top: 80rpx;
|
|
z-index: 2;
|
|
|
|
image {
|
|
height: 34rpx;
|
|
width: 134rpx;
|
|
}
|
|
|
|
&>view {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 34rpx;
|
|
line-height: 34rpx;
|
|
width: 90%;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
|
|
text {
|
|
font-size: 16rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.rightItem2 {
|
|
background: url('https://www.royaum.com.cn/static/index/ranking.png');
|
|
background-size: cover;
|
|
|
|
// padding:14rpx;
|
|
// height:50%;
|
|
.title {
|
|
width: 120rpx;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.goodsRecommend {
|
|
overflow: hidden;
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
.goodsItem {
|
|
width: 345rpx;
|
|
border-radius: 8rpx;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
margin: 0rpx 0 20rpx 0;
|
|
|
|
.pic {
|
|
width: 100%;
|
|
align-items: center;
|
|
display: flex;
|
|
height: 256rpx;
|
|
overflow: hidden;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
}
|
|
|
|
.goodsInfo {
|
|
margin-bottom: 12rpx;
|
|
height: 60rpx;
|
|
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 10rpx;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 2;
|
|
line-height: 33rpx;
|
|
white-space: normal;
|
|
|
|
.ziying {
|
|
padding: 4rpx 10rpx;
|
|
background: #FF4438;
|
|
border-radius: 2px 2px 2px 2px;
|
|
opacity: 1;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.name {
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #2B2B2B;
|
|
line-height: 33rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
.isExpress {
|
|
height: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 10rpx 0;
|
|
|
|
text {
|
|
display: inline-block;
|
|
width: 44rpx;
|
|
height: 30rpx;
|
|
line-height: 28rpx;
|
|
border: 1px solid #F21A1C;
|
|
border-radius: 2px 2px 2px 2px;
|
|
background: #FFFFFF;
|
|
text-align: center;
|
|
font-size: 16rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #F21A1C;
|
|
}
|
|
|
|
}
|
|
|
|
.price {
|
|
color: #F21A1C;
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.comment {
|
|
margin-top: 6rpx;
|
|
font-size: 22rpx;
|
|
font-weight: 400;
|
|
color: #949494;
|
|
|
|
}
|
|
}
|
|
}
|
|
.finished {
|
|
font-size: 28rpx;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
color: #bbb;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.secondSection {
|
|
padding-bottom: 40rpx;
|
|
margin-top: 20rpx;
|
|
|
|
.shopImage {
|
|
height: 484rpx;
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.content {
|
|
margin: 0 26rpx;
|
|
margin-top: -250rpx;
|
|
// width: 349px;
|
|
// height: 186px;
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, #FFFFFF 100%);
|
|
border-radius: 4px 4px 4px 4px;
|
|
opacity: 1;
|
|
padding: 30rpx;
|
|
position: relative;
|
|
z-index: 9;
|
|
|
|
.topcontent {
|
|
position: relative;
|
|
|
|
.shopTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.title {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
}
|
|
|
|
.shopStatus {
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #F3202A;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
.rate {
|
|
margin-top: 20rpx;
|
|
|
|
text {
|
|
font-size: 30rpx;
|
|
font-weight: 500;
|
|
color: #FA8C3D;
|
|
margin-left: 10rpx;
|
|
}
|
|
}
|
|
|
|
.time {
|
|
margin: 24upx 0;
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #818181;
|
|
|
|
}
|
|
|
|
.tags {
|
|
padding-bottom: 20rpx;
|
|
border-bottom: 1px solid #F2F2F2;
|
|
width: 500rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
// justify-content: ;
|
|
.tagsItem {
|
|
margin-bottom: 16rpx;
|
|
padding: 0 10rpx;
|
|
height: 42rpx;
|
|
line-height: 42rpx;
|
|
text-align: center;
|
|
background: #F5F5F5;
|
|
border-radius: 2px 2px 2px 2px;
|
|
opacity: 1;
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #818181;
|
|
margin-right: 10upx;
|
|
|
|
}
|
|
}
|
|
|
|
.zixun {
|
|
position: absolute;
|
|
z-index: 10;
|
|
right: 0rpx;
|
|
bottom: 32rpx;
|
|
display: flex;
|
|
|
|
.zixunItem {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
|
|
&>image {
|
|
width: 32rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.askText {
|
|
|
|
font-size: 20rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #989898;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.shopAddress {
|
|
padding: 24rpx 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.address {
|
|
.ad {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.addrTextFirst {
|
|
margin-right: 24rpx;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #2B2B2B;
|
|
|
|
}
|
|
}
|
|
|
|
.adInfo {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-top: 20rpx;
|
|
|
|
// justify-content: center;
|
|
.addrText {
|
|
margin-left: 20rpx;
|
|
margin-right: 20rpx;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #818181;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.pCar {
|
|
text-align: center;
|
|
flex-shrink: 0;
|
|
margin-left: 10rpx;
|
|
|
|
image {
|
|
width: 54rpx;
|
|
height: auto;
|
|
}
|
|
|
|
.car {
|
|
|
|
font-size: 20upx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #989898;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.diannei {
|
|
padding: 10rpx 26rpx;
|
|
margin: 20rpx 26rpx 0 26rpx;
|
|
background: #fff;
|
|
border-radius: 4px 4px 4px 4px;
|
|
|
|
.dianneiTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 10rpx;
|
|
|
|
text {
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
}
|
|
|
|
.lookMore {
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #909090;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.dianneiContent {
|
|
white-space: nowrap;
|
|
margin-top: 14rpx;
|
|
|
|
.lookMore {
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #909090;
|
|
}
|
|
|
|
.dianneiItem {
|
|
width: 20%;
|
|
text-align: center;
|
|
display: inline-block;
|
|
|
|
image {
|
|
width: 104rpx;
|
|
height: 104rpx;
|
|
}
|
|
|
|
.itemTitle {
|
|
|
|
font-size: 20rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #1E1E1E;
|
|
margin-top: 5rpx;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
|
|
.serviceConent {
|
|
white-space: nowrap;
|
|
margin-top: 26rpx;
|
|
|
|
.serviceItem {
|
|
width: 202rpx;
|
|
height: 202rpx;
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-right: 26rpx;
|
|
|
|
// justify-content: space-between;
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.itemTitle {
|
|
position: absolute;
|
|
bottom: 0;
|
|
z-index: 9;
|
|
width: 100%;
|
|
height: 72rpx;
|
|
background: linear-gradient(180deg, rgba(254, 82, 69, 0) 0%, #FE5039 100%);
|
|
border-radius: 0px 0px 0px 0px;
|
|
opacity: 1;
|
|
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
line-height: 72rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.comment {
|
|
padding: 44rpx 40rpx;
|
|
margin: 20rpx 26rpx 0 26rpx;
|
|
background: #fff;
|
|
border-radius: 4px 4px 4px 4px;
|
|
|
|
.lookMore {
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
color: #909090;
|
|
}
|
|
|
|
.commentTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
text {
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
|
|
}
|
|
}
|
|
|
|
.commentItem {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
margin-top: 28rpx;
|
|
padding-bottom: 30rpx;
|
|
border-bottom: 1px solid #EFEFEF;
|
|
|
|
.left {
|
|
flex: 1;
|
|
|
|
.commentAvatar {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
// justify-content: ;
|
|
image {
|
|
width: 74rpx;
|
|
height: 74rpx;
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
text {
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #515151;
|
|
margin-left: 20rpx;
|
|
}
|
|
}
|
|
|
|
.commentText {
|
|
margin-top: 12rpx;
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #515151;
|
|
|
|
}
|
|
}
|
|
|
|
.right {
|
|
flex-shrink: 0;
|
|
|
|
image {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.commentContent {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
|
|
.serviceItem {
|
|
width: 196rpx;
|
|
height: 140rpx;
|
|
border-radius: 4px;
|
|
opacity: 1;
|
|
margin-right: 16rpx;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.history {
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
margin: 20rpx 26rpx;
|
|
padding: 20rpx 34rpx;
|
|
|
|
.title {
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
|
|
.point {
|
|
width: 9px;
|
|
height: 9px;
|
|
background: #FFFFFF;
|
|
border-radius: 100rpx;
|
|
opacity: 1;
|
|
border: 2px solid #F21C1C;
|
|
margin-top: 10rpx;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.u-order-title {
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #959595;
|
|
|
|
}
|
|
|
|
.u-node {
|
|
|
|
// display: flex;
|
|
// justify-content: center;
|
|
// align-items: center;
|
|
// background: #d0d0d0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.u-order-desc {
|
|
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
color: #000000;
|
|
margin-top: 12rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.toTop {
|
|
position: fixed;
|
|
bottom: 120rpx;
|
|
right: 16rpx;
|
|
width: 99rpx;
|
|
height: 99rpx;
|
|
border-radius: 50%;
|
|
opacity: 1;
|
|
z-index: 999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
}
|
|
|
|
//隐藏滚动条
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
color: transparent;
|
|
display: none;
|
|
}
|
|
|
|
.shenBox {
|
|
overflow: hidden;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
image {
|
|
width: 28rpx;
|
|
height: 28rpx;
|
|
}
|
|
}
|
|
|
|
.goods-price {
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: bold;
|
|
font-size: 32rpx;
|
|
color: #F21A1C !important;
|
|
}
|
|
|
|
.line-price {
|
|
text-decoration: line-through;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 22rpx;
|
|
color: #949494;
|
|
|
|
}
|
|
|
|
.goodsInfo1 {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 18rpx 0 0 0rpx;
|
|
|
|
.oneTip {
|
|
padding: 0 16rpx;
|
|
height: 34rpx;
|
|
background: #F6F6F6;
|
|
border-radius: 4rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 22rpx;
|
|
color: #333333;
|
|
line-height: 34rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
max-width: 300rpx;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 1;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.goodsSend {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 18rpx;
|
|
|
|
.sendLeft {
|
|
width: 120rpx;
|
|
border: 1rpx solid #F21A1C;
|
|
border-radius: 4rpx;
|
|
height: 30rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.left_1 {
|
|
height: 100%;
|
|
width: 48rpx;
|
|
line-height: 25rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: bold;
|
|
font-size: 22rpx;
|
|
color: #F21A1C;
|
|
text-align: center;
|
|
}
|
|
|
|
.left_2 {
|
|
height: 100%;
|
|
width: 72rpx;
|
|
background-color: #F21A1C;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 20rpx;
|
|
color: #FFFFFF;
|
|
line-height: 26rpx;
|
|
text-align: center;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
.sendRight {
|
|
height: 32rpx;
|
|
background: #FDEDED;
|
|
padding: 0 10rpx;
|
|
border-radius: 4rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 20rpx;
|
|
color: #F21A1C;
|
|
line-height: 32rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
.delPrice {
|
|
font-size: 20rpx;
|
|
font-weight: 500;
|
|
color: #F21A1C;
|
|
}
|
|
</style>
|
|
|