2023-12-20 21:41:47 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view :data-theme="theme">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<view class="new-users copy-data">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="mid" style="flex:1;overflow: hidden;">
|
|
|
|
|
<scroll-view scroll-y="true">
|
|
|
|
|
<view class="bg"></view>
|
|
|
|
|
<view class="head pad30">
|
|
|
|
|
<view class="user-card">
|
|
|
|
|
<view class="user-info">
|
2024-05-09 17:13:14 +08:00
|
|
|
|
<image class="avatar" :src='userInfo.avatar' v-if="userInfo.avatar "
|
2023-12-20 21:41:47 +08:00
|
|
|
|
@click="goEdit()"></image>
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
|
|
|
|
|
</image>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="info">
|
2024-02-28 11:33:23 +08:00
|
|
|
|
<view class="name" v-if="!isLogin" @tap="openAuto" >
|
2023-12-20 21:41:47 +08:00
|
|
|
|
请点击登录
|
|
|
|
|
</view>
|
2024-02-28 11:33:23 +08:00
|
|
|
|
<!-- <view class="name" v-if="userInfo && uid">
|
|
|
|
|
{{userInfo && userInfo.nickname && uid ? userInfo.nickname : ''}}
|
|
|
|
|
<view class="vip" v-if="userInfo.vip">
|
|
|
|
|
<image :src="userInfo.vipIcon" alt="">
|
|
|
|
|
<view style="margin-left: 10rpx;" class="vip-txt">
|
|
|
|
|
{{userInfo.vipName || ''}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
2024-05-09 17:13:14 +08:00
|
|
|
|
<view class="name" v-if="userInfo ">
|
|
|
|
|
{{userInfo && userInfo.nickname ? userInfo.nickname : ''}}
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="vip" v-if="userInfo.vip">
|
|
|
|
|
<image :src="userInfo.vipIcon" alt="">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<view style="margin-left: 10rpx;" class="vip-txt">
|
|
|
|
|
{{userInfo.vipName || ''}}
|
2023-12-20 21:41:47 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-09 17:13:14 +08:00
|
|
|
|
<view class="num" v-if="userInfo && userInfo.phone ">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="num-txt">{{userInfo.phone}}</view>
|
|
|
|
|
<view class="icon">
|
2024-02-01 21:14:26 +08:00
|
|
|
|
<image src="/static/images/edit.png" mode="" @click="goEdit()"></image>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
</view>
|
2024-03-15 11:34:46 +08:00
|
|
|
|
<!-- <view class="real_name" @click="btnreal">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
{{realname}}
|
2024-03-15 11:34:46 +08:00
|
|
|
|
</view> -->
|
2023-12-20 21:41:47 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="phone" v-if="!userInfo.phone && isLogin" @tap="bindPhone">绑定手机号</view>
|
|
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
|
|
<text class="iconfont icon-shezhi app_set" @click.stop="appUpdate()"></text>
|
|
|
|
|
<!-- #endif -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-03-13 14:47:41 +08:00
|
|
|
|
<view class="num-wrapper" v-if="false">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="num-item" @click="goMenuPage('/pages/users/user_money/index')">
|
|
|
|
|
<text class="num">{{userInfo.nowMoney && uid ? userInfo.nowMoney:0}}</text>
|
|
|
|
|
<view class="txt">余额</view>
|
|
|
|
|
</view>
|
2024-02-01 21:14:26 +08:00
|
|
|
|
<!-- <view class="num-item" @click="goMenuPage('/pages/users/user_integral/index')">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<text class="num">{{userInfo.integral && uid ? userInfo.integral: 0}}</text>
|
|
|
|
|
<view class="txt">积分</view>
|
2024-02-01 21:14:26 +08:00
|
|
|
|
</view> -->
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="num-item" @click="goMenuPage('/pages/users/user_coupon/index')">
|
|
|
|
|
<text class="num">{{userInfo.couponCount && uid ? userInfo.couponCount : 0}}</text>
|
|
|
|
|
<view class="txt">优惠券</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="num-item" @click="goMenuPage('/pages/users/user_goods_collection/index')">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<text
|
|
|
|
|
class="num">{{userInfo.collectCount && uid ? userInfo.collectCount : 0}}</text>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="txt">收藏</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="order-wrapper">
|
|
|
|
|
<view class="order-hd flex">
|
|
|
|
|
<view class="left">订单中心</view>
|
|
|
|
|
<view class="right flex" @click="menusTap('/pages/users/order_list/index')">查看全部
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<text class="iconfont icon-xiangyou"></text>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="order-bd">
|
|
|
|
|
<block v-for="(item,index) in orderMenu" :key="index">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<view class="order-item" @click="menusTap(item.url)">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="pic">
|
|
|
|
|
<text class="iconfont pic_status" :class="item.img"></text>
|
|
|
|
|
<text class="order-status-num" v-if="item.num > 0">{{ item.num }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="txt">{{item.title}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</block>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-01-18 22:27:33 +08:00
|
|
|
|
<!-- 待还款 -->
|
2024-03-13 14:47:41 +08:00
|
|
|
|
<!-- <navigator url="/pages/users/repayment/index" class="repayment" v-if="isLogin">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<view>待还款</view> <uni-text data-v-137d5072=""
|
|
|
|
|
class="iconfont icon-xiangyou"><span></span></uni-text>
|
2024-03-13 14:47:41 +08:00
|
|
|
|
|
|
|
|
|
</navigator> -->
|
|
|
|
|
<!-- <view class="repayment">
|
|
|
|
|
<view>待还款</view> <uni-text data-v-137d5072=""
|
|
|
|
|
class="iconfont icon-xiangyou"><span></span></uni-text>
|
|
|
|
|
</view> -->
|
|
|
|
|
|
|
|
|
|
<view class="newinfo" v-if="isLogin">
|
|
|
|
|
<navigator class="info_li" url="/pages/users/repayment/index">
|
|
|
|
|
<view>待还款</view>
|
|
|
|
|
<view class="iconfont icon-xiangyou"></view>
|
|
|
|
|
</navigator>
|
2024-03-15 11:34:46 +08:00
|
|
|
|
<view class="info_li" @click="toimprove()">
|
2024-03-13 14:47:41 +08:00
|
|
|
|
<view>实名认证</view>
|
2024-03-15 11:34:46 +08:00
|
|
|
|
<view class="right" style="display: flex;flex-wrap: nowrap;align-items: center;color: #979797;" v-if="!isshim">
|
|
|
|
|
未实名
|
|
|
|
|
<view style="margin-left: 10rpx;" class="iconfont icon-xiangyou"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="right" style="display: flex;flex-wrap: nowrap;align-items: center;color: #979797;" v-if="isshim">
|
|
|
|
|
已实名
|
2024-03-13 14:47:41 +08:00
|
|
|
|
<view style="margin-left: 10rpx;" class="iconfont icon-xiangyou"></view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info_li" @click="onClickService">
|
|
|
|
|
<view>联系客服</view>
|
|
|
|
|
<view class="iconfont icon-xiangyou"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-03-15 11:34:46 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="contenBox" id="pageIndex">
|
|
|
|
|
<!-- 轮播 -->
|
2024-03-13 14:47:41 +08:00
|
|
|
|
<!-- <view class="slider-wrapper" @click.native="bindEdit('userBanner')"
|
2024-01-23 17:17:47 +08:00
|
|
|
|
v-if="imgUrls != null && imgUrls.length > 0">
|
|
|
|
|
<swiper v-if="imgUrls.length>0" indicator-dots="true" :autoplay="autoplay"
|
|
|
|
|
:circular="circular" :interval="interval" :duration="duration"
|
|
|
|
|
indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<block v-for="(item,index) in imgUrls" :key="index">
|
|
|
|
|
<swiper-item class="borRadius14">
|
|
|
|
|
<image :src="item.pic" class="slide-image" @click="navito(item.url)"></image>
|
|
|
|
|
</swiper-item>
|
|
|
|
|
</block>
|
|
|
|
|
</swiper>
|
2024-03-13 14:47:41 +08:00
|
|
|
|
</view> -->
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<!-- 会员菜单 -->
|
|
|
|
|
<view class="user-menus" style="margin-top: 20rpx;" @click.native="bindEdit('userMenus')">
|
|
|
|
|
<view class="menu-title">我的服务</view>
|
|
|
|
|
<view class="list-box">
|
2024-01-23 17:17:47 +08:00
|
|
|
|
<block v-for="(item,index) in MyMenus" :key="index"
|
2024-02-01 21:14:26 +08:00
|
|
|
|
v-if="item.id != 1751 && item.id != 1754 && item.id !=1752 &&item.id !=1744">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<view class="item" @click="menusTap(item.url)"
|
|
|
|
|
v-if="!(item.url =='/pages/service/index' || (item.url =='/pages/users/user_spread_user/index' && !userInfo.isPromoter))">
|
|
|
|
|
<image :src="item.pic"></image>
|
|
|
|
|
<text>{{item.name}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</block>
|
|
|
|
|
<!-- #ifndef MP -->
|
2024-02-28 18:05:44 +08:00
|
|
|
|
<view class="item" @click="onClickService">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<image :src="servicePic"></image>
|
|
|
|
|
<text>联系客服</text>
|
2024-02-28 18:05:44 +08:00
|
|
|
|
</view>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<!-- #endif -->
|
|
|
|
|
<!-- #ifdef MP -->
|
|
|
|
|
<!-- v-if="chatConfig.telephone_service_switch" -->
|
2024-02-28 18:05:44 +08:00
|
|
|
|
<button class="item" hover-class='none' @click="onClickService"
|
2024-01-23 17:17:47 +08:00
|
|
|
|
v-if="chatConfig.telephone_service_switch === '1'">
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<image :src="servicePic"></image>
|
|
|
|
|
<text>联系客服</text>
|
|
|
|
|
</button>
|
|
|
|
|
<button class="item" open-type='contact' hover-class='none' v-else>
|
|
|
|
|
<image :src="servicePic"></image>
|
|
|
|
|
<text>联系客服</text>
|
2024-02-28 18:05:44 +08:00
|
|
|
|
</button>
|
2023-12-20 21:41:47 +08:00
|
|
|
|
<!-- #endif -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<image :src="copyImage" alt="" class='support'>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
2024-01-23 17:17:47 +08:00
|
|
|
|
import{
|
|
|
|
|
getidentity
|
|
|
|
|
}from '@/api/myapi.js';
|
2023-12-20 21:41:47 +08:00
|
|
|
|
let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
|
|
|
import Cache from '@/utils/cache';
|
2024-01-23 17:17:47 +08:00
|
|
|
|
import {
|
|
|
|
|
goPage
|
|
|
|
|
} from '@/libs/iframe.js'
|
|
|
|
|
import {
|
|
|
|
|
BACK_URL
|
|
|
|
|
} from '@/config/cache';
|
|
|
|
|
import {
|
|
|
|
|
getMenuList,
|
2024-02-27 09:45:51 +08:00
|
|
|
|
copyrightApi,
|
2024-02-27 15:35:03 +08:00
|
|
|
|
getUserInfo
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} from '@/api/user.js';
|
|
|
|
|
import {
|
2024-02-27 09:45:51 +08:00
|
|
|
|
orderData,
|
|
|
|
|
sendwxcodes
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} from '@/api/order.js';
|
|
|
|
|
import {
|
|
|
|
|
getCity,
|
2024-03-15 11:34:46 +08:00
|
|
|
|
tokenIsExistApi,getshim
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} from '@/api/api.js';
|
|
|
|
|
import {
|
|
|
|
|
toLogin
|
|
|
|
|
} from '@/libs/login.js';
|
|
|
|
|
import {
|
|
|
|
|
mapGetters
|
|
|
|
|
} from "vuex";
|
2023-12-20 21:41:47 +08:00
|
|
|
|
import {
|
|
|
|
|
getCityList
|
|
|
|
|
} from "@/utils";
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
import Auth from '@/libs/wechat';
|
|
|
|
|
// #endif
|
2024-01-23 17:17:47 +08:00
|
|
|
|
import {
|
|
|
|
|
getShare
|
|
|
|
|
} from '@/api/public.js';
|
|
|
|
|
import {
|
|
|
|
|
setThemeColor
|
|
|
|
|
} from '@/utils/setTheme.js'
|
2023-12-20 21:41:47 +08:00
|
|
|
|
import animationType from '@/utils/animationType.js'
|
|
|
|
|
const app = getApp();
|
2024-02-27 09:51:54 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
export default {
|
|
|
|
|
computed: mapGetters(['isLogin', 'chatUrl', 'uid']),
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-01-23 17:17:47 +08:00
|
|
|
|
orderMenu: [{
|
|
|
|
|
img: 'icon-daifukuan',
|
|
|
|
|
title: '审核中',
|
|
|
|
|
url: '/pages/users/order_list/index?status=6',
|
|
|
|
|
num: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
img: 'icon-a-shouhoutuikuan',
|
|
|
|
|
title: '待签约',
|
|
|
|
|
url: '/pages/users/order_list/index?status=7',
|
|
|
|
|
num: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
img: 'icon-daifahuo',
|
|
|
|
|
title: '待发货',
|
|
|
|
|
url: '/pages/users/order_list/index?status=2',
|
|
|
|
|
num: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
img: 'icon-daishouhuo',
|
|
|
|
|
title: '使用中',
|
|
|
|
|
url: '/pages/users/order_list/index?status=8',
|
|
|
|
|
num: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
img: 'icon-daipingjia',
|
|
|
|
|
title: '已完成',
|
|
|
|
|
url: '/pages/users/order_list/index?status=4',
|
|
|
|
|
num: 0
|
|
|
|
|
},
|
|
|
|
|
// {img: 'icon-a-shouhoutuikuan',title: '已完成',url: '/pages/users/user_return_list/index',num: 0},
|
2023-12-20 21:41:47 +08:00
|
|
|
|
],
|
|
|
|
|
imgUrls: [],
|
|
|
|
|
userMenu: [],
|
|
|
|
|
autoplay: true,
|
|
|
|
|
circular: true,
|
|
|
|
|
interval: 3000,
|
|
|
|
|
duration: 500,
|
|
|
|
|
isAuto: false, //没有授权的不会自动授权
|
|
|
|
|
isShowAuth: false, //是否隐藏授权
|
|
|
|
|
orderStatusNum: {},
|
|
|
|
|
MyMenus: [],
|
|
|
|
|
wechatUrl: [],
|
2024-01-23 17:17:47 +08:00
|
|
|
|
realname:'未实名',
|
2023-12-20 21:41:47 +08:00
|
|
|
|
servicePic: '/static/images/customer.png',
|
|
|
|
|
sysHeight: sysHeight,
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
pageHeight: '100%',
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef H5 || APP-PLUS
|
|
|
|
|
pageHeight: app.globalData.windowHeight,
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
isWeixin: Auth.isWeixin(),
|
|
|
|
|
//#endif
|
|
|
|
|
configApi: {}, //分享类容配置
|
|
|
|
|
theme: '',
|
2024-01-23 17:17:47 +08:00
|
|
|
|
bgColor: '#e93323',
|
|
|
|
|
chatConfig: {
|
|
|
|
|
consumer_hotline: '',
|
|
|
|
|
telephone_service_switch: '0'
|
|
|
|
|
}, //客服配置
|
2023-12-20 21:41:47 +08:00
|
|
|
|
userInfo: {},
|
2024-01-27 17:03:34 +08:00
|
|
|
|
copyImage: '', //版权图片
|
2024-03-15 11:34:46 +08:00
|
|
|
|
identification:{},
|
|
|
|
|
isshim:false
|
2023-12-20 21:41:47 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
2024-03-15 11:34:46 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
app.globalData.theme = this.$Cache.get('theme')
|
2024-01-23 17:17:47 +08:00
|
|
|
|
if (app.globalData.isIframe) {
|
|
|
|
|
setTimeout(() => {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
let active;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
document.getElementById('pageIndex').children.forEach(dom => {
|
|
|
|
|
dom.addEventListener('click', (e) => {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
e.stopPropagation();
|
|
|
|
|
e.preventDefault();
|
2024-01-23 17:17:47 +08:00
|
|
|
|
if (dom === active) return;
|
2023-12-20 21:41:47 +08:00
|
|
|
|
dom.classList.add('borderShow');
|
|
|
|
|
active && active.classList.remove('borderShow');
|
|
|
|
|
active = dom;
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
let that = this;
|
|
|
|
|
// #ifdef H5 || APP-PLUS
|
|
|
|
|
that.$set(that, 'pageHeight', app.globalData.windowHeight);
|
|
|
|
|
// #endif
|
|
|
|
|
that.$set(that, 'MyMenus', app.globalData.MyMenus);
|
2024-02-27 09:51:54 +08:00
|
|
|
|
|
2024-01-23 17:17:47 +08:00
|
|
|
|
that.$set(that, 'chatConfig', Cache.getItem('chatConfig'));
|
2023-12-20 21:41:47 +08:00
|
|
|
|
// #ifdef H5
|
|
|
|
|
that.shareApi();
|
|
|
|
|
// #endif
|
|
|
|
|
that.bgColor = setThemeColor();
|
2024-01-23 17:17:47 +08:00
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
uni.setNavigationBarColor({
|
|
|
|
|
frontColor: '#ffffff',
|
|
|
|
|
backgroundColor: that.bgColor,
|
|
|
|
|
});
|
|
|
|
|
}, 500)
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
uni.setNavigationBarColor({
|
|
|
|
|
frontColor: '#ffffff',
|
|
|
|
|
backgroundColor: that.bgColor,
|
|
|
|
|
});
|
|
|
|
|
// #endif
|
2023-12-20 21:41:47 +08:00
|
|
|
|
},
|
2024-05-09 17:13:14 +08:00
|
|
|
|
computed: {
|
|
|
|
|
isLogin() {
|
|
|
|
|
return this.$store.getters.isLogin;
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-03-15 11:34:46 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
onShow: function() {
|
2024-02-28 11:33:23 +08:00
|
|
|
|
|
2024-01-23 17:17:47 +08:00
|
|
|
|
// 调用查询是否实名
|
2024-02-28 11:33:23 +08:00
|
|
|
|
|
|
|
|
|
|
2024-05-09 17:13:14 +08:00
|
|
|
|
|
2024-02-28 11:33:23 +08:00
|
|
|
|
|
|
|
|
|
// this.checj()
|
|
|
|
|
this.getTokenIsExist();
|
|
|
|
|
this.getidentityq()
|
2024-03-15 11:34:46 +08:00
|
|
|
|
this.getshiminfo()
|
2024-02-28 11:33:23 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
|
|
|
|
}, 1000);
|
2023-12-20 21:41:47 +08:00
|
|
|
|
this.copyrightImage();
|
|
|
|
|
this.theme = this.$Cache.get('theme')
|
|
|
|
|
app.globalData.theme = this.$Cache.get('theme')
|
|
|
|
|
if (!this.$Cache.getItem('cityList')) getCityList();
|
|
|
|
|
uni.showTabBar();
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
let that = this;
|
|
|
|
|
uni.getSystemInfo({
|
|
|
|
|
success: function(res) {
|
|
|
|
|
that.pageHeight = res.windowHeight + 'px'
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-02-27 09:45:51 +08:00
|
|
|
|
|
2024-02-27 10:11:56 +08:00
|
|
|
|
|
|
|
|
|
|
2024-02-27 09:45:51 +08:00
|
|
|
|
// 判断id是否存在
|
2024-02-27 10:11:56 +08:00
|
|
|
|
|
2024-02-27 09:45:51 +08:00
|
|
|
|
// 打印code的值
|
2024-02-27 10:11:56 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP
|
2024-01-23 17:17:47 +08:00
|
|
|
|
let query = uni.createSelectorQuery();
|
2023-12-20 21:41:47 +08:00
|
|
|
|
let dom = query.select('.new-users');
|
|
|
|
|
// #endif
|
2024-05-09 17:13:14 +08:00
|
|
|
|
// this.importAliPayScript()
|
2024-02-27 10:11:56 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-03-15 11:34:46 +08:00
|
|
|
|
gelogin(){
|
|
|
|
|
this.sendMessageToMiniProgram()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
// 导入 my 对象所需的脚本
|
|
|
|
|
importAliPayScript() {
|
|
|
|
|
|
|
|
|
|
if (navigator.userAgent.indexOf('AliApp') > -1) {
|
|
|
|
|
const scriptElement = document.createElement('script');
|
|
|
|
|
scriptElement.src = 'https://appx/web-view.min.js';
|
|
|
|
|
document.head.appendChild(scriptElement);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
sendMessageToMiniProgram() {
|
|
|
|
|
my.postMessage({
|
|
|
|
|
data: {
|
|
|
|
|
action: 'getphone'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-05-09 17:13:14 +08:00
|
|
|
|
// getPhoneNumber() {
|
|
|
|
|
// console.log('点击了');
|
|
|
|
|
// this.sendMessageToMiniProgram()
|
|
|
|
|
// // my.getPhoneNumber({
|
|
|
|
|
// // success: (res) => {
|
|
|
|
|
// // let encryptedData = res.response;
|
|
|
|
|
// // console.log(res);
|
|
|
|
|
// // // my.request({
|
|
|
|
|
// // // //你的服务器地址
|
|
|
|
|
// // // url: 'https://xxxxxxx',
|
|
|
|
|
// // // data: encryptedData,
|
|
|
|
|
// // // });
|
|
|
|
|
// // },
|
|
|
|
|
// // fail: (res) => {
|
|
|
|
|
// // console.log(res);
|
|
|
|
|
// // },
|
|
|
|
|
// // });
|
|
|
|
|
// },
|
2024-03-15 11:34:46 +08:00
|
|
|
|
getshiminfo(){
|
|
|
|
|
let data={
|
|
|
|
|
uid: this.$store.getters.uid,
|
|
|
|
|
}
|
|
|
|
|
if(this.isLogin){
|
|
|
|
|
getshim(data).then(res => {
|
|
|
|
|
|
|
|
|
|
if (res.code== '200') {
|
|
|
|
|
|
|
|
|
|
this.isshim=res.data
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
|
|
this.$util.Tips({
|
|
|
|
|
title: error
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
toimprove(){
|
|
|
|
|
if(this.isshim==false){
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url:'/pages/users/order_improve/index'
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url:'/pages/users/userInfo/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
2024-02-28 11:33:23 +08:00
|
|
|
|
checj(){
|
|
|
|
|
let currentUrl = window.location.href;
|
|
|
|
|
|
|
|
|
|
// 解析URL,提取参数
|
|
|
|
|
let urlParams = new URLSearchParams(currentUrl);
|
|
|
|
|
|
|
|
|
|
// 获取名为code的参数的值
|
|
|
|
|
let codeValue = urlParams.get('code');
|
|
|
|
|
console.log(currentUrl,'codeValuecodeValuecodeValue');
|
|
|
|
|
|
|
|
|
|
if(codeValue){
|
|
|
|
|
|
|
|
|
|
console.log('进入判断2');
|
|
|
|
|
uni.setStorageSync('openid', codeValue);
|
|
|
|
|
|
|
|
|
|
if(uni.getStorageSync('loginstause')){
|
|
|
|
|
console.log('判断3');
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: '进入判断3'
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: '进入判断4'
|
|
|
|
|
});
|
|
|
|
|
this.sendwxcode(codeValue)
|
|
|
|
|
console.log('判断4');
|
|
|
|
|
}
|
|
|
|
|
// if(){
|
|
|
|
|
// uni.navigateTo({
|
|
|
|
|
// url:'/pages/users/logins/index'
|
|
|
|
|
// })
|
|
|
|
|
// console.log('进入判断4');
|
|
|
|
|
// }
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
sendwxcode(code){
|
2024-02-27 09:45:51 +08:00
|
|
|
|
let data={
|
|
|
|
|
spread_spid: '',
|
|
|
|
|
code: code,
|
|
|
|
|
channel_id:''
|
|
|
|
|
}
|
|
|
|
|
console.log(code,'wxcodewxcodewxcodewxcode');
|
|
|
|
|
// sendwxcodes(code).then(res => {
|
|
|
|
|
// console.log('wxcodewxcodewxcodewxcode');
|
2024-02-27 15:35:03 +08:00
|
|
|
|
// //
|
2024-02-27 10:11:56 +08:00
|
|
|
|
|
2024-02-27 09:45:51 +08:00
|
|
|
|
// })
|
|
|
|
|
uni.request({
|
2024-02-28 11:33:23 +08:00
|
|
|
|
// url: 'https://yruibao.com/prod/api/front/login/wxpublic',
|
2024-02-27 09:45:51 +08:00
|
|
|
|
url: 'http://192.168.2.26:20411/api/front/login/wxpublic', //仅为示例,并非真实接口地址。
|
|
|
|
|
data: data,
|
|
|
|
|
method:'POST',
|
2024-02-27 09:51:54 +08:00
|
|
|
|
|
2024-02-27 09:45:51 +08:00
|
|
|
|
success: (res) => {
|
|
|
|
|
console.log(res.data);
|
2024-02-27 15:35:03 +08:00
|
|
|
|
|
|
|
|
|
if(res.data.data.isBandPhone==false){
|
2024-02-28 11:33:23 +08:00
|
|
|
|
console.log('调换 aaaaaaaaaa');
|
|
|
|
|
uni.setStorageSync('loginopen', res.data.data.openid);
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url:'/pages/users/logins/index'
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
let login = true
|
|
|
|
|
uni.setStorageSync('loginstause',login);
|
|
|
|
|
uni.setStorageSync('loginopen', res.data.data.openid);
|
|
|
|
|
this.$store.commit("LOGIN", {
|
|
|
|
|
'token': res.data.data.token
|
|
|
|
|
});
|
|
|
|
|
// this.$store.commit("SET_LOGIN_STATUS", true);
|
|
|
|
|
|
|
|
|
|
// uni.switchTab({
|
|
|
|
|
// url:'/pages/index/index'
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
let data = res.data.data
|
|
|
|
|
this.getUserInfo(data)
|
|
|
|
|
}
|
2024-02-27 09:45:51 +08:00
|
|
|
|
// this.text = 'request success';
|
2024-02-28 11:33:23 +08:00
|
|
|
|
},
|
|
|
|
|
fail:(err)=>{
|
|
|
|
|
uni.showModal({content: JSON.stringify(err)});
|
|
|
|
|
}
|
2024-02-27 09:45:51 +08:00
|
|
|
|
});
|
2024-02-28 11:33:23 +08:00
|
|
|
|
// let ceshidata ={
|
|
|
|
|
// isBandPhone:true,
|
|
|
|
|
// nikeName:'55b1d6600c5d',
|
|
|
|
|
// phone:'17795402553',
|
|
|
|
|
// token:'2118e52ef3a740d59d5bf6814778fbf0',
|
|
|
|
|
// uid:20
|
|
|
|
|
// }
|
|
|
|
|
// if(ceshidata.isBandPhone==false){
|
|
|
|
|
// console.log('调换 aaaaaaaaaa');
|
|
|
|
|
// uni.setStorageSync('loginopen', ceshidata.openid);
|
|
|
|
|
// uni.navigateTo({
|
|
|
|
|
// url:'/pages/users/logins/index'
|
|
|
|
|
// })
|
|
|
|
|
// }else{
|
|
|
|
|
// let login = true
|
|
|
|
|
// uni.setStorageSync('loginstause',login);
|
|
|
|
|
// uni.setStorageSync('loginopen', ceshidata.openid);
|
|
|
|
|
// this.$store.commit("LOGIN", {
|
|
|
|
|
// 'token': ceshidata.token
|
|
|
|
|
// });
|
|
|
|
|
// this.$store.commit("SET_LOGIN_STATUS", true);
|
|
|
|
|
|
|
|
|
|
// // uni.switchTab({
|
|
|
|
|
// // url:'/pages/index/index'
|
|
|
|
|
// // })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// let data = ceshidata
|
|
|
|
|
// this.getUserInfo(data)
|
|
|
|
|
// }
|
|
|
|
|
// this.text = 'request success';
|
|
|
|
|
|
|
|
|
|
|
2024-02-27 09:45:51 +08:00
|
|
|
|
},
|
2024-05-09 17:13:14 +08:00
|
|
|
|
|
2024-01-23 17:17:47 +08:00
|
|
|
|
// 查询是否进行过身份保存
|
|
|
|
|
getidentityq:function(){
|
|
|
|
|
let data = {
|
|
|
|
|
uid: this.$store.getters.uid
|
|
|
|
|
}
|
|
|
|
|
getidentity(data).then(res=>{
|
2024-03-13 14:47:41 +08:00
|
|
|
|
if ( res.data != null) {
|
2024-01-23 17:17:47 +08:00
|
|
|
|
this.realname = '已实名'
|
2024-01-27 17:03:34 +08:00
|
|
|
|
this.identification = res.data
|
2024-01-23 17:17:47 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-01-27 17:03:34 +08:00
|
|
|
|
// 点击跳转到身份信息
|
|
|
|
|
btnreal(){
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/users/order_improves/index?identification=' + JSON.stringify(this.identification),
|
|
|
|
|
})
|
|
|
|
|
},
|
2023-12-20 21:41:47 +08:00
|
|
|
|
//校验token是否有效,true为有效,false为无效
|
2024-02-01 21:14:26 +08:00
|
|
|
|
getTokenIsExist(){
|
2023-12-20 21:41:47 +08:00
|
|
|
|
tokenIsExistApi().then(res => {
|
|
|
|
|
let tokenIsExist = res.data;
|
2024-02-28 11:33:23 +08:00
|
|
|
|
console.log(this.isLogin,'this.isLoginthis.isLoginthis.isLoginthis.isLogin');
|
2023-12-20 21:41:47 +08:00
|
|
|
|
if (this.isLogin && tokenIsExist) {
|
2024-02-28 11:33:23 +08:00
|
|
|
|
console.log('1111111111111111111111');
|
2023-12-20 21:41:47 +08:00
|
|
|
|
this.getMyMenus();
|
|
|
|
|
this.getOrderData();
|
2024-05-09 17:13:14 +08:00
|
|
|
|
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
this.$store.dispatch('USERINFO').then(res => {
|
|
|
|
|
this.userInfo = res;
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
this.uid=this.$store.getters.uid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},100)
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
console.log(this.uid,'this.userInfo2222222222');
|
|
|
|
|
},3000)
|
|
|
|
|
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} else {
|
2024-02-28 11:33:23 +08:00
|
|
|
|
|
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
this.$store.commit("LOGOUT");
|
|
|
|
|
this.$store.commit('UPDATE_LOGIN', '');
|
|
|
|
|
this.$store.commit('UPDATE_USERINFO', {});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//获取授权图片
|
2024-02-01 21:14:26 +08:00
|
|
|
|
copyrightImage(){
|
2023-12-20 21:41:47 +08:00
|
|
|
|
copyrightApi().then(res => {
|
|
|
|
|
if (res.data) {
|
|
|
|
|
this.copyImage = res.data.companyImage;
|
|
|
|
|
} else {
|
|
|
|
|
this.copyImage = '/static/images/support.png';
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
bindEdit(name) {
|
|
|
|
|
if (app.globalData.isIframe) {
|
2024-01-23 17:17:47 +08:00
|
|
|
|
window.parent.postMessage({
|
2023-12-20 21:41:47 +08:00
|
|
|
|
name: name
|
|
|
|
|
},
|
|
|
|
|
'*'
|
|
|
|
|
);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
menusTap(url) {
|
|
|
|
|
if (!this.isLogin) {
|
2024-01-23 17:17:47 +08:00
|
|
|
|
this.openAuto();
|
|
|
|
|
} else {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
goPage().then(res => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
url: url
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
navito(url) {
|
2024-01-23 17:17:47 +08:00
|
|
|
|
if (url.indexOf("http") !== -1) {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
// #ifdef H5
|
|
|
|
|
location.href = url
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef APP-PLUS || MP
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/users/web_page/index?webUel=' + url
|
|
|
|
|
})
|
|
|
|
|
// #endif
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} else {
|
|
|
|
|
if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart', '/pages/user/index']
|
|
|
|
|
.indexOf(url) == -1) {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
uni.navigateTo({
|
2024-01-23 17:17:47 +08:00
|
|
|
|
url: url
|
2023-12-20 21:41:47 +08:00
|
|
|
|
})
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} else {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
uni.switchTab({
|
2024-01-23 17:17:47 +08:00
|
|
|
|
url: url
|
2023-12-20 21:41:47 +08:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-23 17:17:47 +08:00
|
|
|
|
onClickService() {
|
|
|
|
|
if (this.chatConfig.telephone_service_switch === '1') {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
uni.makePhoneCall({
|
2024-01-23 17:17:47 +08:00
|
|
|
|
phoneNumber: this.chatConfig.consumer_hotline //仅为示例
|
2023-12-20 21:41:47 +08:00
|
|
|
|
});
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} else {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
url: '/pages/users/web_page/index?webUel=' + this.chatUrl + '&title=客服'
|
|
|
|
|
})
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifndef APP-PLUS
|
|
|
|
|
if (!app.globalData.isIframe) {
|
|
|
|
|
location.href = this.chatUrl;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
} else {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
// #endif
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getOrderData() {
|
|
|
|
|
let that = this;
|
|
|
|
|
orderData().then(res => {
|
|
|
|
|
that.orderMenu.forEach((item, index) => {
|
|
|
|
|
switch (item.title) {
|
2024-01-18 22:27:33 +08:00
|
|
|
|
case '审核中':
|
2024-01-22 14:30:38 +08:00
|
|
|
|
item.num = res.data.notAuditCount
|
2023-12-20 21:41:47 +08:00
|
|
|
|
break
|
2024-01-23 17:17:47 +08:00
|
|
|
|
case '待签约':
|
|
|
|
|
item.num = res.data.unsignedCount
|
2023-12-20 21:41:47 +08:00
|
|
|
|
break
|
2024-01-23 17:17:47 +08:00
|
|
|
|
case '待发货':
|
2023-12-20 21:41:47 +08:00
|
|
|
|
item.num = res.data.receivedCount
|
|
|
|
|
break
|
2024-01-23 17:17:47 +08:00
|
|
|
|
case '使用中':
|
|
|
|
|
item.num = res.data.inUseCount
|
2023-12-20 21:41:47 +08:00
|
|
|
|
break
|
2024-01-23 17:17:47 +08:00
|
|
|
|
case '已完成':
|
|
|
|
|
item.num = res.data.completeCount
|
2023-12-20 21:41:47 +08:00
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
that.$set(that, 'orderMenu', that.orderMenu);
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 打开授权
|
|
|
|
|
openAuto() {
|
|
|
|
|
Cache.set(BACK_URL, '')
|
|
|
|
|
toLogin();
|
|
|
|
|
},
|
|
|
|
|
// 绑定手机
|
|
|
|
|
bindPhone() {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
url: '/pages/users/app_login/index'
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
/**
|
2024-02-27 09:51:54 +08:00
|
|
|
|
*
|
2023-12-20 21:41:47 +08:00
|
|
|
|
* 获取个人中心图标
|
|
|
|
|
*/
|
|
|
|
|
getMyMenus: function() {
|
|
|
|
|
let that = this;
|
|
|
|
|
// if (this.MyMenus.length) return;
|
|
|
|
|
getMenuList().then(res => {
|
|
|
|
|
that.$set(that, 'MyMenus', res.data.routine_my_menus);
|
2024-02-06 21:00:54 +08:00
|
|
|
|
// console.log(this.MyMenus,11)
|
2023-12-20 21:41:47 +08:00
|
|
|
|
that.wechatUrl = res.data.routine_my_menus.filter((item) => {
|
|
|
|
|
return item.url.indexOf('service') !== -1
|
|
|
|
|
})
|
|
|
|
|
res.data.routine_my_menus.map((item) => {
|
|
|
|
|
if (item.url.indexOf('service') !== -1) that.servicePic = item.pic
|
|
|
|
|
})
|
2024-01-23 17:17:47 +08:00
|
|
|
|
if (res.data.routine_my_banner) {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
that.imgUrls = res.data.routine_my_banner
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 编辑页面
|
|
|
|
|
goEdit() {
|
|
|
|
|
if (this.isLogin == false) {
|
|
|
|
|
this.openAuto();
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
url: '/pages/users/user_info/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
goMenuPage(url) {
|
|
|
|
|
if (this.isLogin) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
url
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
this.openAuto()
|
|
|
|
|
// #endif
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-23 17:17:47 +08:00
|
|
|
|
appUpdate() {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
uni.navigateTo({
|
2024-01-23 17:17:47 +08:00
|
|
|
|
url: '/pages/users/app_update/app_update',
|
2023-12-20 21:41:47 +08:00
|
|
|
|
animationType: animationType.type,
|
|
|
|
|
animationDuration: animationType.duration,
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
shareApi: function() {
|
|
|
|
|
getShare().then(res => {
|
|
|
|
|
this.$set(this, 'configApi', res.data);
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
this.setOpenShare(res.data);
|
|
|
|
|
// #endif
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 微信分享;
|
|
|
|
|
setOpenShare: function(data) {
|
|
|
|
|
let that = this;
|
|
|
|
|
if (that.$wechat.isWeixin()) {
|
|
|
|
|
let configAppMessage = {
|
|
|
|
|
desc: data.synopsis,
|
|
|
|
|
title: data.title,
|
|
|
|
|
link: location.href,
|
|
|
|
|
imgUrl: data.img
|
|
|
|
|
};
|
|
|
|
|
that.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"],
|
|
|
|
|
configAppMessage);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2024-01-23 17:17:47 +08:00
|
|
|
|
// 实名样式
|
|
|
|
|
.real_name{
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
padding: 10rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 20rpx;
|
2024-02-27 09:51:54 +08:00
|
|
|
|
font-size: 12px;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
color: #fff;
|
2024-01-27 17:03:34 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: -10rpx;
|
|
|
|
|
right: 0;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
}
|
2023-12-20 21:41:47 +08:00
|
|
|
|
page,
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
|
|
|
|
.mp-header {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
@include main_bg_color(theme);
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.bg {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
width: 100%;
|
2023-12-20 21:41:47 +08:00
|
|
|
|
height: 420rpx;
|
|
|
|
|
background-image: url('~@/static/images/user_bg.png');
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.contenBox {
|
|
|
|
|
padding: 0 30rpx 100rpx 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.support {
|
|
|
|
|
width: 219rpx;
|
|
|
|
|
height: 74rpx;
|
|
|
|
|
margin: 54rpx auto;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.new-users {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
.sys-head {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
|
|
|
|
|
|
|
|
|
|
.sys-title {
|
|
|
|
|
z-index: 10;
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 43px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 43px;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.head {
|
|
|
|
|
@include index-gradient(theme);
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.user-card {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 35rpx 0 30rpx 0;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.user-info {
|
|
|
|
|
z-index: 20;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
padding: 15rpx 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 31rpx;
|
|
|
|
|
|
|
|
|
|
.vip {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 6rpx 20rpx;
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
margin-left: 12rpx;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 27rpx;
|
|
|
|
|
height: 27rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
|
|
|
|
.app_set {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
top: 40rpx;
|
|
|
|
|
right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.num {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 0.6);
|
2024-01-27 17:03:34 +08:00
|
|
|
|
position: relative;
|
2023-12-20 21:41:47 +08:00
|
|
|
|
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-top: 30rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
.num-item {
|
|
|
|
|
width: 33.33%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.num {
|
|
|
|
|
font-size: 42rpx;
|
|
|
|
|
font-weight: bold;
|
2024-02-27 09:51:54 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.txt {
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-wrapper {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
padding: 30rpx 16rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 11;
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.order-hd {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
margin-bottom: 40rpx;
|
|
|
|
|
padding: 0 16rpx;
|
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
|
color: #282828;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #666666;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
|
|
|
|
.icon-xiangyou {
|
|
|
|
|
margin-left: 5rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-bd {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.order-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.pic {
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 48rpx;
|
|
|
|
|
height: 48rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.txt {
|
|
|
|
|
margin-top: 15rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #454545;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider-wrapper {
|
|
|
|
|
margin: 20rpx 0;
|
|
|
|
|
height: 138rpx;
|
|
|
|
|
|
|
|
|
|
swiper,
|
|
|
|
|
swiper-item {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-menus {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
|
|
|
|
|
.menu-title {
|
|
|
|
|
padding: 30rpx 30rpx 40rpx;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin-bottom: 47rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #333333;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 52rpx;
|
|
|
|
|
height: 52rpx;
|
|
|
|
|
margin-bottom: 18rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&:last-child::before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.phone {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
|
|
|
|
.pic_status {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
font-size: 43rpx;
|
|
|
|
|
@include main_color(theme);
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
.order-status-num {
|
|
|
|
|
min-width: 13rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
@include main_color(theme);
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -14rpx;
|
|
|
|
|
top: -15rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
padding: 0 8rpx;
|
|
|
|
|
@include coupons_border_color(theme);
|
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
2023-12-20 21:41:47 +08:00
|
|
|
|
}
|
2024-01-23 17:17:47 +08:00
|
|
|
|
|
|
|
|
|
.sub_btn {
|
2023-12-20 21:41:47 +08:00
|
|
|
|
width: 690rpx;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
line-height: 86rpx;
|
|
|
|
|
margin-top: 60rpx;
|
|
|
|
|
background: $theme-color;
|
|
|
|
|
border-radius: 43rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2024-03-13 14:47:41 +08:00
|
|
|
|
.newinfo{
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 0 36rpx;
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin: 0 34rpx;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
.info_li{
|
|
|
|
|
width: 100%;
|
|
|
|
|
line-height: 96rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-18 22:27:33 +08:00
|
|
|
|
// 待还款
|
2024-01-23 17:17:47 +08:00
|
|
|
|
.repayment {
|
2024-01-18 22:27:33 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin: 0 34rpx;
|
2024-03-13 14:47:41 +08:00
|
|
|
|
// margin-top: 20rpx;
|
2024-01-18 22:27:33 +08:00
|
|
|
|
box-sizing: border-box;
|
2024-03-13 14:47:41 +08:00
|
|
|
|
// height: 96rpx;
|
2024-01-18 22:27:33 +08:00
|
|
|
|
line-height: 96rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0 36rpx;
|
2024-03-13 14:47:41 +08:00
|
|
|
|
border-radius: 20 20 0 0rpx;
|
2024-01-18 22:27:33 +08:00
|
|
|
|
}
|
2024-02-27 09:51:54 +08:00
|
|
|
|
</style>
|