1303 lines
55 KiB
Vue
1303 lines
55 KiB
Vue
|
<template>
|
|||
|
<view :style="viewColor">
|
|||
|
<skeleton :show="showSkeleton" :isNodes="isNodes" ref="skeleton" loading="chiaroscuro" selector="skeleton"
|
|||
|
bgcolor="transparent"></skeleton>
|
|||
|
<!-- 自定义顶部背景颜色 -->
|
|||
|
<view class="top">
|
|||
|
<!-- #ifdef MP || APP-PLUS -->
|
|||
|
<view class="sys-head">
|
|||
|
<view class="sys-bar" :style="{height:sysHeight}"></view>
|
|||
|
<!-- #ifdef MP -->
|
|||
|
<view class="sys-title">个人中心</view>
|
|||
|
<!-- #endif -->
|
|||
|
<view class="bg"></view>
|
|||
|
</view>
|
|||
|
<!-- #endif -->
|
|||
|
</view>
|
|||
|
<!-- 自定义顶部背景颜色 -->
|
|||
|
<view class="new-users skeleton" :style="{visibility: showSkeleton ? 'hidden' : 'visible'}">
|
|||
|
<view class="head">
|
|||
|
<view class="user-card" :class="userInfo.svip_open && svip_switch_status == 1 ? 'svip-card' : ''">
|
|||
|
<view class="bg"></view>
|
|||
|
<view class="user-info">
|
|||
|
<view class="avatar-box" :class="{on:userInfo.is_svip > 0 && svip_switch_status == 1}">
|
|||
|
<image class="avatar skeleton-radius"
|
|||
|
:src="userInfo.avatar ? userInfo.avatar : '/static/images/f.png'" @click="goEdit">
|
|||
|
</image>
|
|||
|
<view class="headwear" v-if="userInfo.is_svip > 0 && svip_switch_status == 1">
|
|||
|
<image src="/static/images/headwear.png"></image>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="info">
|
|||
|
<!--#ifdef MP-->
|
|||
|
<view class="name" v-if="!userInfo.uid" @click="openAuto">
|
|||
|
请点击授权
|
|||
|
</view>
|
|||
|
<!--#endif-->
|
|||
|
<!--#ifdef APP-PLUS-->
|
|||
|
<view class="name" v-if="!userInfo.uid" @click="openAuto">
|
|||
|
请点击登录
|
|||
|
</view>
|
|||
|
<!--#endif-->
|
|||
|
<!--#ifdef H5-->
|
|||
|
<view class="name" v-if="!userInfo.uid" @click="openAuto">
|
|||
|
<text v-if="isWeixin">请点击授权</text>
|
|||
|
<text v-else>请点击登录</text>
|
|||
|
</view>
|
|||
|
<!--#endif-->
|
|||
|
<view class="name" v-if="userInfo.uid">
|
|||
|
{{userInfo.nickname}}
|
|||
|
<image v-if="member_status" class="level_icon" :src="userInfo.member_icon" alt="">
|
|||
|
<view class="vip" v-if="userInfo.is_svip > 0 && svip_switch_status == 1">
|
|||
|
<image src="/static/images/svip.png"></image>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="num" v-if="userInfo.phone" @click="goEdit()">
|
|||
|
<view class="num-txt">ID:{{userInfo.uid}}</view>
|
|||
|
<view class="icon">
|
|||
|
<image src="/static/images/edit.png" mode=""></image>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="phone" v-if="!userInfo.phone && isLogin" @tap="bindPhone">绑定手机号</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="num-wrapper skeleton-rect">
|
|||
|
<view class="num-item" @click="goMenuPage('/pages/users/user_goods_collection/index')">
|
|||
|
<text class="num">{{userInfo.total_collect_product || 0}}</text>
|
|||
|
<view class="txt">我的收藏</view>
|
|||
|
</view>
|
|||
|
<view v-if="hide_mer_status == 0" class="num-item"
|
|||
|
@click="goMenuPage('/pages/users/user_goods_collection/index?tab=2')">
|
|||
|
<text class="num">{{userInfo.total_collect_store || 0}}</text>
|
|||
|
<view class="txt">关注店铺</view>
|
|||
|
</view>
|
|||
|
<view class="num-item" @click="goMenuPage('/pages/users/browsingHistory/index')">
|
|||
|
<text class="num">{{userInfo.total_visit_product || 0}}</text>
|
|||
|
<view class="txt">浏览记录</view>
|
|||
|
</view>
|
|||
|
<view class="num-item" @click="goMenuPage('/pages/users/user_coupon/index')">
|
|||
|
<text class="num">{{userInfo.total_coupon || 0}}</text>
|
|||
|
<view class="txt">优惠券</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<navigator hover-class="none"
|
|||
|
:url="userInfo.is_svip > 0 ? '/pages/annex/vip_center/index' : '/pages/annex/vip_paid/index'"
|
|||
|
class="cardVipA acea-row row-between-wrapper"
|
|||
|
v-if="userInfo.svip_open && svip_switch_status == 1">
|
|||
|
<image class="svip_user" src="/static/images/svip_user.png"></image>
|
|||
|
<view class="left-box">
|
|||
|
<view v-if="userInfo.is_svip > 0" class="small">累计为您节省{{userInfo.svip_save_money}}元</view>
|
|||
|
<view v-else-if="userInfo.is_svip <= 0" class="small">开通享六大特权,省钱又省心
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="acea-row row-middle">
|
|||
|
<view class="btn-open">{{userInfo.is_svip > 0 ? '立即续费' : '立即开通'}}</view>
|
|||
|
</view>
|
|||
|
</navigator>
|
|||
|
<view class="right-btn">
|
|||
|
<view class="iconfont icon-shezhi" v-if="isLogin" @click="goSetting()"></view>
|
|||
|
<view class="btn" @click="authTo('/pages/chat/customer_list/index?type=0')" hover-class="none">
|
|||
|
<view class="iconfont icon-xiaoxi"></view>
|
|||
|
<text class="iconnum" v-if="userInfo.total_unread">{{userInfo.total_unread}}</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="wrapper">
|
|||
|
<view class="order-wrapper">
|
|||
|
<view class="order-hd flex skeleton-rect">
|
|||
|
<view class="left">我的订单</view>
|
|||
|
<view class="right flex"
|
|||
|
@click="authTo('/pages/users/order_list/index?status=-1&product_type=0')" hover-class="none"
|
|||
|
open-type="navigate">
|
|||
|
全部订单
|
|||
|
<text class="iconfont icon-xiangyou"></text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="order-bd">
|
|||
|
<block v-for="(item,index) in orderMenu" :key="index">
|
|||
|
<view class="order-item" @click="authTo(item.url)" hover-class="none">
|
|||
|
<view class="pic">
|
|||
|
<text class="iconfont" :class="item.icon"></text>
|
|||
|
<text class="order-status-num" v-if="item.num > 0">{{ item.num }}</text>
|
|||
|
</view>
|
|||
|
<view class="txt skeleton-rect">{{item.title}}</view>
|
|||
|
</view>
|
|||
|
</block>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<!-- 轮播 -->
|
|||
|
<view class="slider-wrapper skeleton-rect" v-if="imgUrls.length>0">
|
|||
|
<swiper indicator-dots="true" :autoplay="autoplay" :circular="circular" :interval="interval"
|
|||
|
:duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
|
|||
|
<block v-for="(item,index) in imgUrls" :key="index">
|
|||
|
<swiper-item>
|
|||
|
<view @click="goUrl(item.url)" class='slide-navigator acea-row row-between-wrapper'>
|
|||
|
<image :src="item.pic" class="slide-image"></image>
|
|||
|
</view>
|
|||
|
</swiper-item>
|
|||
|
</block>
|
|||
|
</swiper>
|
|||
|
</view>
|
|||
|
<!-- 会员菜单 -->
|
|||
|
<view class="user-menus" style="margin-top: 20rpx;">
|
|||
|
<view class="title skeleton-rect">我的服务</view>
|
|||
|
<view class="menu-box">
|
|||
|
<block v-for="(item,index) in personalMenu" :key="index">
|
|||
|
<view v-if="item.isShow" class="item">
|
|||
|
<view @click="authTo(item.url)" class="item-count">
|
|||
|
<image v-if="showSkeleton" class="skeleton_image skeleton-radius"></image>
|
|||
|
<image v-else :src="item.pic"></image>
|
|||
|
<text>{{item.name}}</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</block>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<!-- <view class="menus-list-item" v-if="!userInfo.topService && userInfo.service" @click="toService(0)">
|
|||
|
<view class="item-text">
|
|||
|
<view class="title">
|
|||
|
<text class="merchant">商家</text>管理
|
|||
|
</view>
|
|||
|
<view class="info">进入商户中心管理店铺</view>
|
|||
|
</view>
|
|||
|
<view class="image merchant-image"></view>
|
|||
|
</view> -->
|
|||
|
<view class="menus-list-item" v-if="!userInfo.service && userInfo.topService" @click="toService(1)">
|
|||
|
<view class="item-text">
|
|||
|
<view class="title">
|
|||
|
<text class="plantform">平台</text>管理
|
|||
|
</view>
|
|||
|
<view class="info">进入平台客服中心</view>
|
|||
|
</view>
|
|||
|
<view class="image plantform-image"></view>
|
|||
|
</view>
|
|||
|
<view class="menu-list-count" v-if="userInfo.topService && userInfo.service">
|
|||
|
<view class="menu-item" @click="toService(0)">
|
|||
|
<view class="image merchant-image"></view>
|
|||
|
<view class="menu-text">
|
|||
|
<view class="title">
|
|||
|
<text class="merchant">商家</text>管理
|
|||
|
</view>
|
|||
|
<view class="info">进入商家管理中心</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="menu-item" @click="toService(1)">
|
|||
|
<view class="menu-text">
|
|||
|
<view class="title">
|
|||
|
<text class="plantform">平台</text>管理
|
|||
|
</view>
|
|||
|
<view class="info">进入平台客服中心</view>
|
|||
|
</view>
|
|||
|
<view class="image plantform-image"></view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view v-if="copyright.status !== -1" class="copy-right">
|
|||
|
<image class="img-copyright" :src="copyright.image" mode="widthFix"></image>
|
|||
|
<view class="text">{{copyright.Copyright}}</view>
|
|||
|
</view>
|
|||
|
<view v-else class="copy-right">
|
|||
|
<view class="iconfont icon-crmeb"></view>
|
|||
|
<view class="text">众邦科技提供技术支持</view>
|
|||
|
</view>
|
|||
|
<view style="height: 50rpx;"></view>
|
|||
|
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"
|
|||
|
:isGoIndex="false"></authorize>
|
|||
|
<!-- #ifndef H5 -->
|
|||
|
<passwordPopup></passwordPopup>
|
|||
|
<!-- #endif -->
|
|||
|
</view>
|
|||
|
<view class="foot" v-if="newData.status && newData.status.status">
|
|||
|
<view class="page-footer" id="target" :style="{'background-color':newData.bgColor.color[0].item}">
|
|||
|
<view class="foot-item" v-for="(item,index) in newData.menuList" :key="index" @click="goRouter(item)">
|
|||
|
<block v-if="item.link == activeRouter">
|
|||
|
<image :src="item.imgList[0]"></image>
|
|||
|
<view class="txt" :style="{color:newData.activeTxtColor.color[0].item}">{{item.name}}
|
|||
|
</view>
|
|||
|
</block>
|
|||
|
<block v-else>
|
|||
|
<image :src="item.imgList[1]"></image>
|
|||
|
<view class="txt" :style="{color:newData.txtColor.color[0].item}">{{item.name}}</view>
|
|||
|
</block>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
<!-- <m-tabbar native>
|
|||
|
<template v-slot:tabbar_index_2>
|
|||
|
<view class="custom_style">
|
|||
|
<view class="custom_style_icon"></view>
|
|||
|
<view class="custom_style-txt" style="color: #282828;">
|
|||
|
发布
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
</m-tabbar> -->
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
<script>
|
|||
|
let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|||
|
import mTabbar from '@/components/m-tabbar/m-tabbar.vue'
|
|||
|
import {
|
|||
|
getMenuList,
|
|||
|
getUserInfo,
|
|||
|
setVisit
|
|||
|
} from '@/api/user.js';
|
|||
|
import {
|
|||
|
getVersion
|
|||
|
} from "@/api/public";
|
|||
|
import {
|
|||
|
orderData
|
|||
|
} from '@/api/order.js'
|
|||
|
import {
|
|||
|
mapGetters
|
|||
|
} from "vuex";
|
|||
|
import authorize from '@/components/Authorize';
|
|||
|
import dayjs from '@/plugin/dayjs/dayjs.min.js';
|
|||
|
import Cache from '@/utils/cache';
|
|||
|
// #ifndef H5
|
|||
|
import passwordPopup from '@/components/passwordPopup';
|
|||
|
// #endif
|
|||
|
import {
|
|||
|
configMap
|
|||
|
} from '@/utils';
|
|||
|
import Auth from '../../libs/wechat';
|
|||
|
import {
|
|||
|
HTTP_REQUEST_URL
|
|||
|
} from '@/config/app';
|
|||
|
const app = getApp();
|
|||
|
export default {
|
|||
|
components: {
|
|||
|
// #ifndef H5
|
|||
|
passwordPopup,
|
|||
|
// #endif
|
|||
|
authorize,
|
|||
|
mTabbar
|
|||
|
},
|
|||
|
computed: configMap({
|
|||
|
mer_intention_open: 0,
|
|||
|
hide_mer_status: 1,
|
|||
|
recharge_switch: 0,
|
|||
|
integral_status: 0,
|
|||
|
member_status: 0,
|
|||
|
balance_func_status: 0,
|
|||
|
svip_switch_status: 0,
|
|||
|
navigation: {}
|
|||
|
}, mapGetters(['isLogin', 'viewColor', 'keyColor'])),
|
|||
|
filters: {
|
|||
|
dateFormat: function(value) {
|
|||
|
return dayjs(value * 1000).format('YYYY-MM-DD');
|
|||
|
}
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
//#ifdef H5
|
|||
|
isWeixin: this.$wechat.isWeixin(),
|
|||
|
//#endif
|
|||
|
domain: HTTP_REQUEST_URL,
|
|||
|
showSkeleton: true, //骨架屏显示隐藏
|
|||
|
isNodes: 0, //控制什么时候开始抓取元素节点,只要数值改变就重新抓取
|
|||
|
orderMenu: [{
|
|||
|
icon: 'icon-daifukuan1',
|
|||
|
title: '待付款',
|
|||
|
url: '/pages/users/order_list/index?status=0',
|
|||
|
num: 0
|
|||
|
},
|
|||
|
{
|
|||
|
icon: 'icon-daifahuo1',
|
|||
|
title: '待发货',
|
|||
|
url: '/pages/users/order_list/index?status=2',
|
|||
|
num: 0
|
|||
|
},
|
|||
|
{
|
|||
|
icon: 'icon-daishouhuo1',
|
|||
|
title: '待收货',
|
|||
|
url: '/pages/users/order_list/index?status=3',
|
|||
|
num: 0
|
|||
|
},
|
|||
|
{
|
|||
|
icon: 'icon-daipingjia1',
|
|||
|
title: '待评价',
|
|||
|
url: '/pages/users/order_list/index?status=4',
|
|||
|
num: 0
|
|||
|
},
|
|||
|
{
|
|||
|
icon: 'icon-a-shouhoutuikuan1',
|
|||
|
title: '售后/退款',
|
|||
|
url: '/pages/users/refund/list',
|
|||
|
num: 0
|
|||
|
},
|
|||
|
],
|
|||
|
imgUrls: [{
|
|||
|
url: '',
|
|||
|
pic: ''
|
|||
|
}],
|
|||
|
userMenu: [],
|
|||
|
skeletonMenu: [],
|
|||
|
personalMenu: [{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
},
|
|||
|
{
|
|||
|
pic: '',
|
|||
|
name: '',
|
|||
|
isShow: true
|
|||
|
}
|
|||
|
],
|
|||
|
autoplay: true,
|
|||
|
circular: true,
|
|||
|
interval: 3000,
|
|||
|
duration: 500,
|
|||
|
isAuto: false, //没有授权的不会自动授权
|
|||
|
isShowAuth: false, //是否隐藏授权
|
|||
|
orderStatusNum: {},
|
|||
|
userInfo: {
|
|||
|
aratar: '/static/f.png'
|
|||
|
},
|
|||
|
MyMenus: [],
|
|||
|
is_promoter: 0, //推广人开关 1开
|
|||
|
extension_status: 0,
|
|||
|
copyright: {
|
|||
|
copyright_status: 1
|
|||
|
},
|
|||
|
newData: {},
|
|||
|
activeRouter: '',
|
|||
|
sysHeight: sysHeight,
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
onLoad() {
|
|||
|
|
|||
|
},
|
|||
|
onReady() {
|
|||
|
this.isNodes++;
|
|||
|
},
|
|||
|
mounted: function() {
|
|||
|
this.getVersion()
|
|||
|
},
|
|||
|
onShow: function() {
|
|||
|
let that = this;
|
|||
|
let routes = getCurrentPages();
|
|||
|
let curRoute = routes[routes.length - 1].route
|
|||
|
this.activeRouter = '/' + curRoute
|
|||
|
this.getNav();
|
|||
|
if (that.isLogin) {
|
|||
|
this.getUserInfo();
|
|||
|
this.orderNum();
|
|||
|
} else {
|
|||
|
this.userInfo = {}
|
|||
|
this.orderMenu.forEach(v => {
|
|||
|
v.num = 0
|
|||
|
})
|
|||
|
this.getMyMenus();
|
|||
|
}
|
|||
|
setTimeout(() => {
|
|||
|
this.showSkeleton = false
|
|||
|
}, 500)
|
|||
|
},
|
|||
|
methods: {
|
|||
|
authTo(url) {
|
|||
|
if (this.isLogin) {
|
|||
|
uni.navigateTo({
|
|||
|
url
|
|||
|
})
|
|||
|
} else {
|
|||
|
this.openAuto()
|
|||
|
}
|
|||
|
},
|
|||
|
goRouter(item) {
|
|||
|
var pages = getCurrentPages();
|
|||
|
var page = (pages[pages.length - 1]).$page.fullPath;
|
|||
|
if (item.link == page) return
|
|||
|
uni.switchTab({
|
|||
|
url: item.link,
|
|||
|
fail(err) {
|
|||
|
uni.redirectTo({
|
|||
|
url: item.link
|
|||
|
})
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
getNav() {
|
|||
|
this.newData = this.navigation
|
|||
|
// if (this.newData.status && this.newData.status.status) {
|
|||
|
// uni.hideTabBar()
|
|||
|
// } else {
|
|||
|
// uni.showTabBar()
|
|||
|
// }
|
|||
|
},
|
|||
|
toService(is_sys) {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/pages/admin/business/index?is_sys=' + is_sys
|
|||
|
})
|
|||
|
},
|
|||
|
getVersion() {
|
|||
|
getVersion().then(data => {
|
|||
|
this.copyright = data.data;
|
|||
|
});
|
|||
|
},
|
|||
|
|
|||
|
// 菜单显示
|
|||
|
filterMenus: function(item) {
|
|||
|
let that = this;
|
|||
|
if (item.url == '/pages/users/user_money/index') {
|
|||
|
// item.isShow = that.balance_func_status == 1
|
|||
|
item.isShow = true
|
|||
|
} else if (item.url == '/pages/users/user_spread_user/index') {
|
|||
|
if (that.extension_status == 0) {
|
|||
|
item.isShow = false
|
|||
|
} else if (that.extension_status == 1) {
|
|||
|
if (that.is_promoter == 1) {
|
|||
|
item.isShow = that.is_promoter == 1 && that.extension_status == 1
|
|||
|
} else if (that.is_promoter == 0) {
|
|||
|
item.isShow = that.is_promoter == 0 && that.extension_status == 1
|
|||
|
item.url = "/pages/users/distributor/index"
|
|||
|
}
|
|||
|
}
|
|||
|
} else if (item.url == '/pages/store/settled/index') item.isShow = that.mer_intention_open == 1
|
|||
|
else if (item.url == '/pages/users/user_grade/index') item.isShow = that.member_status == 1
|
|||
|
else if (item.url == '/pages/users/user_integral/index') item.isShow = that.integral_status == 1
|
|||
|
else item.isShow = true
|
|||
|
|
|||
|
|
|||
|
},
|
|||
|
showMenu(menu) {
|
|||
|
return !menu || ['integral', 'service', 'admin_order', 'verify_order', 'intention', 'promoter', 'balance']
|
|||
|
.indexOf(menu) === -1;
|
|||
|
},
|
|||
|
goUrl(url) {
|
|||
|
if (url.indexOf("http") != -1) {
|
|||
|
// #ifdef H5
|
|||
|
location.href = url
|
|||
|
// #endif
|
|||
|
} else {
|
|||
|
if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart', '/pages/user/index',
|
|||
|
'/pages/plant_grass/index'
|
|||
|
].indexOf(url) == -1) {
|
|||
|
uni.navigateTo({
|
|||
|
url: url
|
|||
|
})
|
|||
|
} else {
|
|||
|
uni.switchTab({
|
|||
|
url: url
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
// 去聊天列表
|
|||
|
goChat() {
|
|||
|
let type = this.userInfo.service ? 1 : 0
|
|||
|
uni.navigateTo({
|
|||
|
url: `/pages/chat/customer_list/index?type=${type}`
|
|||
|
})
|
|||
|
},
|
|||
|
// 记录会员访问
|
|||
|
setVisit() {
|
|||
|
setVisit({
|
|||
|
url: '/pages/user/index'
|
|||
|
}).then(res => {})
|
|||
|
},
|
|||
|
// 打开授权
|
|||
|
openAuto() {
|
|||
|
// console.log('hajhcdsohjcosvjco')
|
|||
|
this.isAuto = true;
|
|||
|
this.isShowAuth = true
|
|||
|
},
|
|||
|
// 授权回调
|
|||
|
onLoadFun(data) {
|
|||
|
this.getUserInfo();
|
|||
|
this.getMyMenus();
|
|||
|
this.orderNum();
|
|||
|
this.isShowAuth = false;
|
|||
|
|
|||
|
},
|
|||
|
Setting: function() {
|
|||
|
uni.openSetting({
|
|||
|
success: function(res) {}
|
|||
|
});
|
|||
|
},
|
|||
|
// 授权关闭
|
|||
|
authColse: function(e) {
|
|||
|
this.isShowAuth = e
|
|||
|
},
|
|||
|
// 绑定手机
|
|||
|
bindPhone() {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/pages/users/user_phone/index'
|
|||
|
})
|
|||
|
},
|
|||
|
/**
|
|||
|
* 获取个人用户信息
|
|||
|
*/
|
|||
|
getUserInfo: function() {
|
|||
|
let that = this;
|
|||
|
getUserInfo().then(res => {
|
|||
|
that.userInfo = res.data;
|
|||
|
that.userInfo.svip_open = true;
|
|||
|
that.userInfo.vip_status = 2;
|
|||
|
that.is_promoter = res.data.is_promoter;
|
|||
|
that.extension_status = res.data.extension_status;
|
|||
|
that.getMyMenus();
|
|||
|
});
|
|||
|
},
|
|||
|
// 订单数字
|
|||
|
orderNum() {
|
|||
|
orderData().then(({
|
|||
|
data
|
|||
|
}) => {
|
|||
|
this.orderMenu.forEach((item, index) => {
|
|||
|
// console.log('item')
|
|||
|
switch (item.title) {
|
|||
|
case '待付款':
|
|||
|
item.num = data.noPay
|
|||
|
break
|
|||
|
case '待发货':
|
|||
|
item.num = data.noPostage
|
|||
|
break
|
|||
|
case '待收货':
|
|||
|
item.num = data.noDeliver
|
|||
|
break
|
|||
|
case '待评价':
|
|||
|
item.num = data.noComment
|
|||
|
break
|
|||
|
case '售后/退款':
|
|||
|
item.num = data.refund
|
|||
|
break
|
|||
|
}
|
|||
|
})
|
|||
|
})
|
|||
|
},
|
|||
|
/**
|
|||
|
*
|
|||
|
* 获取个人中心图标
|
|||
|
*/
|
|||
|
getMyMenus: function() {
|
|||
|
let that = this;
|
|||
|
if (this.MyMenus.length) return;
|
|||
|
getMenuList().then(res => {
|
|||
|
that.personalMenu = []
|
|||
|
res.data.menu.forEach((item, index) => {
|
|||
|
that.filterMenus(item)
|
|||
|
that.personalMenu.push(item)
|
|||
|
})
|
|||
|
|
|||
|
that.imgUrls = res.data.banner
|
|||
|
});
|
|||
|
},
|
|||
|
// 编辑页面
|
|||
|
goEdit() {
|
|||
|
if (this.isLogin) {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/pages/users/user_info/index'
|
|||
|
})
|
|||
|
} else {
|
|||
|
this.openAuto()
|
|||
|
}
|
|||
|
},
|
|||
|
goSetting() {
|
|||
|
if (this.isLogin) {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/pages/users/user_setting/index'
|
|||
|
})
|
|||
|
} else {
|
|||
|
this.openAuto()
|
|||
|
}
|
|||
|
},
|
|||
|
// 签到
|
|||
|
goSignIn() {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/pages/users/user_sgin/index'
|
|||
|
})
|
|||
|
},
|
|||
|
// goMenuPage
|
|||
|
goMenuPage(url) {
|
|||
|
if (this.isLogin) {
|
|||
|
uni.navigateTo({
|
|||
|
url
|
|||
|
})
|
|||
|
} else {
|
|||
|
this.openAuto()
|
|||
|
}
|
|||
|
},
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss">
|
|||
|
.cardVipA {
|
|||
|
position: absolute;
|
|||
|
background: linear-gradient(145deg, #F8E3A8 0%, #E8C077 100%);
|
|||
|
background-size: 100% 100%;
|
|||
|
width: 710rpx;
|
|||
|
height: 84rpx;
|
|||
|
bottom: -2rpx;
|
|||
|
left: 20rpx;
|
|||
|
padding: 0 30rpx 0 105rpx;
|
|||
|
border-radius: 16rpx 16rpx 0 0;
|
|||
|
box-sizing: border-box;
|
|||
|
|
|||
|
.svip_user {
|
|||
|
width: 52rpx;
|
|||
|
height: 52rpx;
|
|||
|
border-radius: 100%;
|
|||
|
position: absolute;
|
|||
|
left: 30rpx;
|
|||
|
top: 17rpx;
|
|||
|
}
|
|||
|
|
|||
|
.left-box {
|
|||
|
font-size: 26rpx;
|
|||
|
color: #905100;
|
|||
|
font-weight: 400;
|
|||
|
}
|
|||
|
|
|||
|
.btn {
|
|||
|
color: #905100;
|
|||
|
font-weight: 400;
|
|||
|
font-size: 24rpx;
|
|||
|
}
|
|||
|
|
|||
|
.btn-open {
|
|||
|
background: #282828;
|
|||
|
border-radius: 40rpx;
|
|||
|
color: #F7E1A6;
|
|||
|
font-size: 24rpx;
|
|||
|
width: 140rpx;
|
|||
|
height: 50rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.new-users {
|
|||
|
.head {
|
|||
|
background: #fff;
|
|||
|
|
|||
|
.user-card {
|
|||
|
position: relative;
|
|||
|
width: 100%;
|
|||
|
padding: 35rpx 0 50rpx;
|
|||
|
background-image: linear-gradient(90deg, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
|
|||
|
|
|||
|
&.svip-card {
|
|||
|
padding: 35rpx 0 120rpx;
|
|||
|
}
|
|||
|
|
|||
|
.bg {
|
|||
|
position: absolute;
|
|||
|
left: 0;
|
|||
|
top: 0;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
background-size: 100% 100%;
|
|||
|
}
|
|||
|
|
|||
|
.user-info {
|
|||
|
z-index: 20;
|
|||
|
position: relative;
|
|||
|
display: flex;
|
|||
|
padding: 0 28rpx;
|
|||
|
|
|||
|
.level_icon {
|
|||
|
width: 34rpx;
|
|||
|
height: 32rpx;
|
|||
|
margin: 4rpx 0 0 6rpx;
|
|||
|
border: none;
|
|||
|
}
|
|||
|
|
|||
|
.avatar-box {
|
|||
|
width: 120rpx;
|
|||
|
height: 120rpx;
|
|||
|
border-radius: 50%;
|
|||
|
position: relative;
|
|||
|
|
|||
|
.avatar,
|
|||
|
image {
|
|||
|
width: 120rpx;
|
|||
|
height: 120rpx;
|
|||
|
border-radius: 50%;
|
|||
|
}
|
|||
|
|
|||
|
&.on {
|
|||
|
.avatar {
|
|||
|
border: 2px solid #FFAC65;
|
|||
|
border-radius: 50%;
|
|||
|
box-sizing: border-box;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.headwear {
|
|||
|
position: absolute;
|
|||
|
right: -4rpx;
|
|||
|
top: -14rpx;
|
|||
|
width: 44rpx;
|
|||
|
height: 44rpx;
|
|||
|
z-index: -1;
|
|||
|
|
|||
|
image {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.info {
|
|||
|
flex: 1;
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
justify-content: space-between;
|
|||
|
margin-left: 20rpx;
|
|||
|
padding: 15rpx 0;
|
|||
|
|
|||
|
.name {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
color: #fff;
|
|||
|
font-size: 31rpx;
|
|||
|
|
|||
|
.vip {
|
|||
|
width: 82rpx;
|
|||
|
height: 36rpx;
|
|||
|
margin-left: 12rpx;
|
|||
|
|
|||
|
image {
|
|||
|
width: 82rpx;
|
|||
|
height: 36rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.num {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
font-size: 26rpx;
|
|||
|
color: rgba(255, 255, 255, 0.6);
|
|||
|
|
|||
|
image {
|
|||
|
width: 22rpx;
|
|||
|
height: 23rpx;
|
|||
|
margin-left: 20rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.num-wrapper {
|
|||
|
z-index: 30;
|
|||
|
position: relative;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
margin: 30rpx 20rpx 0;
|
|||
|
color: #fff;
|
|||
|
|
|||
|
.num-item {
|
|||
|
width: 25%;
|
|||
|
text-align: center;
|
|||
|
|
|||
|
.num {
|
|||
|
font-size: 42rpx;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
|
|||
|
.txt {
|
|||
|
margin-top: 8rpx;
|
|||
|
font-size: 22rpx;
|
|||
|
color: rgba(255, 255, 255, 0.6);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.sign {
|
|||
|
z-index: 200;
|
|||
|
position: absolute;
|
|||
|
right: -12rpx;
|
|||
|
top: 80rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
width: 120rpx;
|
|||
|
height: 60rpx;
|
|||
|
background: linear-gradient(90deg, rgba(255, 225, 87, 1) 0%, rgba(238, 193, 15, 1) 100%);
|
|||
|
border-radius: 29rpx 4rpx 4rpx 29rpx;
|
|||
|
color: #282828;
|
|||
|
font-size: 28rpx;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.wrapper {
|
|||
|
position: relative;
|
|||
|
padding: 0 20rpx;
|
|||
|
margin-top: 20rpx;
|
|||
|
}
|
|||
|
|
|||
|
.order-wrapper {
|
|||
|
background-color: #fff;
|
|||
|
border-radius: 16rpx;
|
|||
|
|
|||
|
.order-hd {
|
|||
|
height: 80rpx;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
border-bottom: 1px dashed #DDDDDD;
|
|||
|
padding: 0 30rpx;
|
|||
|
color: #282828;
|
|||
|
|
|||
|
.left {
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
|
|||
|
.right {
|
|||
|
align-items: center;
|
|||
|
color: #666666;
|
|||
|
font-size: 26rpx;
|
|||
|
|
|||
|
.icon-xiangyou {
|
|||
|
margin-left: 5rpx;
|
|||
|
margin-top: 6rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.order-bd {
|
|||
|
display: flex;
|
|||
|
|
|||
|
.order-item {
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
width: 20%;
|
|||
|
height: 160rpx;
|
|||
|
|
|||
|
.pic {
|
|||
|
position: relative;
|
|||
|
text-align: center;
|
|||
|
|
|||
|
.iconfont {
|
|||
|
font-size: 62rpx;
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.txt {
|
|||
|
margin-top: 8rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
color: #454545;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.slider-wrapper {
|
|||
|
margin: 20rpx 0;
|
|||
|
height: 130rpx;
|
|||
|
|
|||
|
swiper,
|
|||
|
swiper-item {
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
|
|||
|
image {
|
|||
|
width: 100%;
|
|||
|
height: 130rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.user-menus {
|
|||
|
padding-bottom: 30rpx;
|
|||
|
background-color: #fff;
|
|||
|
border-radius: 16rpx;
|
|||
|
|
|||
|
.title {
|
|||
|
height: 80rpx;
|
|||
|
line-height: 80rpx;
|
|||
|
padding: 0 30rpx;
|
|||
|
border-bottom: 1px dashed #DDDDDD;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
|
|||
|
.item {
|
|||
|
position: relative;
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
width: 25%;
|
|||
|
line-height: 28rpx;
|
|||
|
height: 90rpx;
|
|||
|
margin-top: 40rpx;
|
|||
|
text-align: center;
|
|||
|
|
|||
|
.item-count {
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
align-items: center;
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
|
|||
|
image {
|
|||
|
width: 52rpx;
|
|||
|
height: 52rpx;
|
|||
|
}
|
|||
|
|
|||
|
.skeleton_image {
|
|||
|
width: 80rpx;
|
|||
|
height: 80rpx;
|
|||
|
}
|
|||
|
|
|||
|
text {
|
|||
|
margin-top: 10rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
color: #282828;
|
|||
|
text-overflow: ellipsis;
|
|||
|
overflow: hidden;
|
|||
|
white-space: nowrap;
|
|||
|
width: 78%;
|
|||
|
}
|
|||
|
|
|||
|
&:last-child::before {
|
|||
|
display: none;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
button {
|
|||
|
font-size: 28rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.phone {
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
|
|||
|
.order-status-num {
|
|||
|
background-color: #fff;
|
|||
|
color: var(--view-theme);
|
|||
|
border-radius: 200rpx;
|
|||
|
position: absolute;
|
|||
|
right: -12rpx;
|
|||
|
top: -12rpx;
|
|||
|
font-size: 20rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
min-width: 30rpx;
|
|||
|
height: 30rpx;
|
|||
|
padding: 0 8rpx;
|
|||
|
box-sizing: border-box;
|
|||
|
border: 1px solid var(--view-theme);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.sys-head {
|
|||
|
position: relative;
|
|||
|
width: 100%;
|
|||
|
// background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
|
|||
|
|
|||
|
.bg {
|
|||
|
position: absolute;
|
|||
|
left: 0;
|
|||
|
top: 0;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
background-image: linear-gradient(90deg, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
|
|||
|
background-size: 100% auto;
|
|||
|
background-position: left bottom;
|
|||
|
}
|
|||
|
|
|||
|
.sys-title {
|
|||
|
z-index: 10;
|
|||
|
position: relative;
|
|||
|
height: 43px;
|
|||
|
text-align: center;
|
|||
|
line-height: 43px;
|
|||
|
font-size: 32rpx;
|
|||
|
color: #FFFFFF;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.menus-list-item {
|
|||
|
background: #fff;
|
|||
|
border-radius: 12rpx;
|
|||
|
padding: 30rpx 50rpx 30rpx 40rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
margin-top: 20rpx;
|
|||
|
|
|||
|
.title {
|
|||
|
font-size: 34rpx;
|
|||
|
color: #282828;
|
|||
|
font-weight: bold;
|
|||
|
|
|||
|
.merchant {
|
|||
|
color: #E93323;
|
|||
|
}
|
|||
|
|
|||
|
.plantform {
|
|||
|
color: #FFC552;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.info {
|
|||
|
margin-top: 15rpx;
|
|||
|
color: #666666;
|
|||
|
font-size: 22rpx;
|
|||
|
}
|
|||
|
|
|||
|
.image {
|
|||
|
width: 180rpx;
|
|||
|
height: 108rpx;
|
|||
|
background-size: 100%;
|
|||
|
background-repeat: no-repeat;
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.merchant-image {
|
|||
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWgAAADYCAMAAADxhokmAAAC+lBMVEUAAAAvLy/+6ef/6ef/6eb/6ef/8uT+6Of/6ef/6Of/6ef/6ef/rXAzMDP/6+QxMTH/6uf/6ef/6Of96eT/6ef/6ef+6en/6ef/6Ob/6ef/6ef/6uf96OfMPDv/6ef9TVXwurHPusH/6uf/6efkRkb/18D7U1T/6efDs7THPjf1S037UVf8S1O7Qzj8T1fzSU7NRDumPCiPRCbOQTn/gEeUSSxkNzZ4OhkiLFLM1+25yOLHMCshK1IiK039zsq/zOTpg4DsqaXH1u+7uc/aqaeyhHL/6eclLHL////o8Pv8TFRSY8n/0Nv/a2vD0e3NRDv8Wl7cQh4yO2PHMSz/q2v/gWT/0tHqT04wMDHm7vq5yOH/oLL/5+X5qmzrkk95OxshNV8jLVPO3fbV4PVFS4Th6vj45/zK2fLH1O7sUlK+zefTws6bSy7/qaH0+P09QX/7p2f8aGg2MjLc5fb4pGb+095nUFH/398tM3b/u8rS3fLwVlb+5OHyY2P7ZGTu8/yztMz/f0f44/j+3tj/ycf/w9D5VlpFVK0+RIEnLF9KTopPX8H/z8z/eXn34+T/r7/u2drxoGNNW7bqkJOgo8LFalX+1tT/p7jkUjPul1QkGVL/urY9Omb/saz1Xl3/xMGtPCX99vtcasiQaVfRNjT+h4f3SVDLMzDw3uLZOzr/cHH9kGL/3ctiX5I0OXmSWlXhP0D9xpfnYkD/0qLyRkyRRSj+0LT40+ezwd1zYl/YSEPk1OBsdsmvq9rjS0n+l5jgys55gszabmf6elyFQCjWzuD6r3smH0jrQ0fHvtztpZ1CSW1WSVLwb07qeWKjRC6Ym9bvysWGjdH8uYnjhXri3emoeWTPTEN/UeuMUkuZbvfNoZOzqLLctbGKgp85OYrUXldDPT3qsoyNe4BfPXBvSG/inWzIjmqdU2oUEhKdl6hydI5NLlCOYvWcjI1gZYNQVneuWEp/b3C3a16smpu4hINwO0/Dh739cmiKjLnLc4BzXKLQQiaaiK88ZYbPAAAARnRSTlMAYv31MFIHJKFq38P+RxL3DOaXHK17F+7iW0HO1w+67P7+jYMia1hz/vQ9kahazXPYNI2g1MEh2c7W0c+ec8VvzMeXm5fBDOYbpgAAJcxJREFUeNrs3MmL01AcwPHwsidS2po2TVoKtkj9Kzz+9OJFXBBS8aCHImILRYVWEfQgojJFEMQNEUF0FAahIB4UBA9uIIIn9aC4oAfFkwqCL0lrbdIlW9WXmc+cOuLB7/x8eXlph1qy2HHJ7HKe0XXWovWxNl3XGYbns4lEkqOWBMNleV0sp5WinC/kUqqq0sNUUyonFfJ5uagI6XJF0xk+sRTcD45nS0WJBr+QKuWVssbwS7mnyjJsRsmrCEKgVUkWyiK7NODjJRlWrGSCKMuO6TZzKyVRzy7FjhafglFQSi7ry5diRycrwTi0VMQr99JoU8uZCJRpmADRkpxml1OLGLc8I8HfgVICu1jnmtNLBQR/D10QRCZJLTp8WkKTw8hCMQU2VFCEUJQcAkC4NZugFpVsJQeTSSxHUUweWZ3T2dAXA4Hu/cgy/OIZ64RWpGEyVaNMTA6wYpYKjc+DDUnpxTLWvKDCNHJvmyCYaVgqPK70x/16UYvdVCf1TEbnhr7DSjCd0hs6Mw/NUBHIDF0Ainq8UidLKkCqnPzzIqiCBwXe/vtFcwIrVHhJwbE2KWycUmu0NT8s1afLNHhBlzjz/7tIAyZFMNJ6zr215qm44BSwlPqvNQk8otM6//ueL6/x4TBiAdwKsVmqHaETlZSvI+YU+p09J4WSo2EUVWCoeNAQDLYNiTQN/xlUYKlYSKZVhNQSZ413WaWjgPylpCeTxHgcgSS0Url3eU+wkdAEP6VpRWMni83dCxf1xPA58K4Ql0X4H2BS4J2kU4tKQhOjUikisBjtQx6sXjmOOKBlqXjgyjSKDNiM+WfLwrjfbaM+ukTFg5aCyB16tsFSt2zwb9k8/EbHY++hSxC9+WVW5s5pW9N/6S4M5OKwlicEebRU8HHudheszqe39pzuhAqNlLjs8kZhimjwLz1xZc6zpwsLC8/szgOdOn59equnr7ojtPWkIcZEGiyGcfvFq+vefb106dLzKl43tv6paYb3xh0a5DiPdD/03M8ba/x4tGfPnkv1Dc3henhOmx5tcIdGIkU0brwkr9hnTjuv71sTJHTHGTr4Go3JRG+mOU0YL28NtHFwO24XJLRzoWiGCq0SfZDHF2Cau0fXRBa67tGo0KhM8F6aSyOY4sSrMTX37R7rFva86g7t8WLo2nXYFIKft7AqTLNz95jQu7ePZYWuRx06T+47IbMyTGPggQ4auuPctIVaOiBF7JEqp9EwzdzYFXrfjbH22EtHM9JdB6jE3oYvL8JUd/EOOuDF0H3DsqHenKA+JTRN7LbDw0DDzn2BQztvwXG7ziTNaaFJvQvP5mGmoR2HSubr5qTQ9biGFtHMQ+O14vQgM345SVyXjuUyzDR0/1w08MF/XC6GmjrD0NjzjtcTpNGPshb2xmN7lxTQLENjty5583rBrTs/3zZgWIHMGxYmBzMM7cOt1zddum1wK5J5Il1Gswt99lHI0PMGuKASkYdK2QJEHnpg/VnvvrycdzpkmKHjsbvTULDQ0du9EzyRiLwWJhUgLTSZp6RMjrTQhN6uiDRpofNEDnRSQISFpisUiXgJCAudJ/MjWiJNWGhCn8xyChAWOkfk3o7iVZ+h9x2Zhd37vIZGZK7Q0+9W2od33bGd/GD6cTKMB3M7toyy4+Bub6ERoW+84wSYzLhwfF2ULu9dO9LF795Cp8jcQ1N8Hibbe7mfqHHgPHagEbL0ubWjHfQUGglE7qEpSk/9Ht0rc7dvzxngcOqq3efA+dpmS+38gVCh74QITfBn5Co0WNDdj58+f/n86eNdNCp0w87cT21PuF+9tePiRX+hY/Ee9P4SfeXVw222h6uMEaHPbx5ilm60av60GnboTZv2XgwYGqUpQiXygJ1Y9RknHpR2hT5QGw5dO4BD4+/5UvsdetOhi+NCx3ThoBjV7PzRHOdB6buGI3Sj5YzWaoSYaAwChUYVDs8Gkb8PWURm523DPjpCWwuHa6QDCBtaylIUX1Qr5JXmFNz5xXpH6E9XHKFbm13O/4PQKmsdzZC4gGQlMHZ+2ebweW4o9MjVuPX3QyOFs9+CIpN3eqcj4wS+Drom+r8MndIpLCkKBL5LKQPGi20uH9vTQrcet/DFsFXz9RX2YkjwB2Y5Aa58cnVev9OYErp27VorwPYuXGhE6r0Ktjxv7HzoCv2mPSV07XH1SetvbO9i83FZRjJWrXd2vvWuazh3Hc6Brj7Gu44DfvlYo2Pznhkbqxquvd3Dd9X7ZulBaNeN4eNmpzWrfXTMnnz3ZJA79KN31Wp1Yb5tuO8MBwN9rdX4y6ERyb94hhPAWOFco9c/7+DS9xfaY886njSr18yB3u+B79BxO+/vnygZd7+4Nh3vq9izwUQ7Tklb+AfR3Ii/N5PQMXuLweBE6cSr4Svh+0uPrNA3HQf/B1r9heNJFcOpv/3V0KQ+WLFUEMDw/u4sjvzOCtl1P2Fp1awFulm11Dc2PIgsNKGPvi2cDJjxcf3QlsM2mOhDxwfPDLF71b7mt4CPsoKERgTedg+tHNbDlfVDE23rIrAZ5/BID1wLG/r4uSChVZKXaLFXcu7Tn3crdsVn3UPQs/fc5eO2q3jRfVLtu3Y8iMvnjgUJXSD4tjChwKjSvSX4fhf6f2zsPbTpjOnB27dvP3SqtvtnDgeBMwcJLf9i71xj4qiiOK7Dq4IaXkLlWZFgaNVqTTVq4tvRii4kJJBdx5Cwwd2uYmLQrCybatyyTXTdVlT6oSFYpDxMVYhUsTxaTJe0+kFAt1UrSoyPxESNrxg/mHjuvM7M3NllhhmVjf7pIlCa6/nN2f895947u6m31o/OgXeuTP2oKu6k2RAV6ida/vqrr76W/n68yYJM
|
|||
|
}
|
|||
|
|
|||
|
.plantform-image {
|
|||
|
background-image: url('data:image/png;base64,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
|
|||
|
}
|
|||
|
|
|||
|
.copy-right {
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
color: #CCCCCC;
|
|||
|
font-size: 22rpx;
|
|||
|
margin-top: 40rpx;
|
|||
|
margin-bottom: 98rpx;
|
|||
|
margin-bottom: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
|||
|
margin-bottom: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
|||
|
|
|||
|
.iconfont {
|
|||
|
font-size: 60rpx;
|
|||
|
}
|
|||
|
|
|||
|
.img-copyright {
|
|||
|
width: 60rpx;
|
|||
|
height: 60rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.menu-box {
|
|||
|
display: flex;
|
|||
|
flex-wrap: wrap;
|
|||
|
}
|
|||
|
|
|||
|
.right-btn {
|
|||
|
z-index: 99;
|
|||
|
position: absolute;
|
|||
|
right: 30rpx;
|
|||
|
top: 40rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
color: #fff;
|
|||
|
|
|||
|
.iconfont {
|
|||
|
font-size: 40rpx;
|
|||
|
margin-left: 33rpx;
|
|||
|
}
|
|||
|
|
|||
|
.btn {
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
|
|||
|
.iconnum {
|
|||
|
min-width: 6px;
|
|||
|
background-color: #fff;
|
|||
|
color: var(--view-theme);
|
|||
|
border-radius: 15rpx;
|
|||
|
position: absolute;
|
|||
|
right: -10rpx;
|
|||
|
top: -10rpx;
|
|||
|
font-size: 10px;
|
|||
|
padding: 0 4px;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.menu-list-count {
|
|||
|
background-color: #fff;
|
|||
|
margin-top: 20rpx;
|
|||
|
border-radius: 12rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
|
|||
|
.menu-item {
|
|||
|
width: 50%;
|
|||
|
padding: 25rpx 15rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
position: relative;
|
|||
|
|
|||
|
&:first-child {
|
|||
|
&::after {
|
|||
|
content: "";
|
|||
|
display: block;
|
|||
|
border-right: 1rpx solid #E2E2E2;
|
|||
|
height: 56%;
|
|||
|
position: absolute;
|
|||
|
right: 0;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.image {
|
|||
|
width: 106rpx;
|
|||
|
height: 64rpx;
|
|||
|
background-size: 100%;
|
|||
|
background-repeat: no-repeat;
|
|||
|
|
|||
|
&.merchant-image {
|
|||
|
margin-right: 15rpx;
|
|||
|
}
|
|||
|
|
|||
|
&.plantform-image {
|
|||
|
margin-left: 15rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.menu-text {
|
|||
|
margin-left: 10rpx;
|
|||
|
|
|||
|
.title {
|
|||
|
color: #333333;
|
|||
|
font-weight: bold;
|
|||
|
font-size: 26rpx;
|
|||
|
|
|||
|
.merchant {
|
|||
|
color: #E93323;
|
|||
|
}
|
|||
|
|
|||
|
.plantform {
|
|||
|
color: #FFC552;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.info {
|
|||
|
color: #999999;
|
|||
|
font-size: 22rpx;
|
|||
|
margin-top: 5rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.page-footer {
|
|||
|
position: fixed;
|
|||
|
bottom: 0;
|
|||
|
z-index: 30;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-around;
|
|||
|
width: 100%;
|
|||
|
height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
|||
|
height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
|||
|
box-sizing: border-box;
|
|||
|
border-top: solid 1rpx #F3F3F3;
|
|||
|
background-color: #fff;
|
|||
|
box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
|
|||
|
padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
|
|||
|
padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
|
|||
|
|
|||
|
&.filter {
|
|||
|
filter: blur(2rpx);
|
|||
|
}
|
|||
|
|
|||
|
.foot-item {
|
|||
|
display: flex;
|
|||
|
width: max-content;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
flex-direction: column;
|
|||
|
position: relative;
|
|||
|
|
|||
|
.count-num {
|
|||
|
position: absolute;
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
width: 40rpx;
|
|||
|
height: 40rpx;
|
|||
|
top: 0rpx;
|
|||
|
right: -15rpx;
|
|||
|
color: #fff;
|
|||
|
font-size: 20rpx;
|
|||
|
background-color: #FD502F;
|
|||
|
border-radius: 50%;
|
|||
|
padding: 4rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.foot-item image {
|
|||
|
height: 50rpx;
|
|||
|
width: 50rpx;
|
|||
|
text-align: center;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
|
|||
|
.foot-item .txt {
|
|||
|
font-size: 24rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|