2025-04-14 08:45:22 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="myBox">
|
|
|
|
|
<view class="box flex justify-start align-items flex-column">
|
|
|
|
|
<view class="con-center flex flex-start flex-column">
|
|
|
|
|
<view class="header flex align-items">
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<view class="hea-left flex align-items" >
|
|
|
|
|
<image :src="avatar" mode="" class="avatar" @click="clickTop(1)"></image>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<view class="first-header flex justify-center align-items">
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<view class="flex flex-column" @click="clickTop(1)">
|
|
|
|
|
<span style="margin-bottom: 20rpx;">
|
|
|
|
|
{{userName}}
|
|
|
|
|
</span>
|
|
|
|
|
<span style="color: #909090; font-size: 24rpx;">带着热爱,在搭子圈里撒野~</span>
|
|
|
|
|
</view>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<image src="../../static/shezhi.png" mode=""
|
2025-04-24 09:31:50 +08:00
|
|
|
|
style="width: 50rpx; height: 50rpx;position: absolute;right: 0;" @click="clickTop(2)"></image>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<!-- <view class="hea-right flex flex-column align-items" @click="out()" v-if="token">
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<image src="../../static/my/Leave.png" mode="" style="width: 64rpx; height: 64rpx;"></image>
|
|
|
|
|
<span>退出登录</span>
|
2025-04-24 09:31:50 +08:00
|
|
|
|
</view> -->
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="top_box flex">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<view class="flex align-items justify-start" @click="toMycy">
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<image src="/static/my/wcyd.png" mode=""></image>
|
|
|
|
|
<span class="flex flex-column align-items">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<span class="p1">我参与的</span>
|
|
|
|
|
<span class="p2">{{actives}}个活动</span>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top_box_right flex align-items justify-start" @click="toMyfb">
|
|
|
|
|
<image src="/static/my/wdfb.png" mode=""></image>
|
|
|
|
|
<span class="flex flex-column align-items justify-start">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<span class="p1">我发布的</span>
|
|
|
|
|
<span class="p2">{{pushActives}}个活动</span>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</span>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <view class="first flex flex-column flex-start justify-center" style="margin-top: 42rpx;">
|
|
|
|
|
<view class="centerBox flex justify-start align-items" style="margin-left: 60rpx;">
|
|
|
|
|
<view class="flex flex-column align-items justify-center" v-for="(item,index) in list2"
|
|
|
|
|
:key="index" @click="jump(item.url,item.auth_status)" v-if="item.auth_status == 1">
|
|
|
|
|
<image :src="item.image" mode="" style="width: 64rpx; height: 64rpx;margin-bottom: 24rpx;">
|
|
|
|
|
</image>
|
|
|
|
|
<span class="text">{{item.text}}</span>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
|
|
|
|
|
<view class="first service flex justify-center align-items"
|
|
|
|
|
@click="callPhone(init.mobile)">
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="flex justify-center align-items" style="margin-top: 50rpx;width: 100%;">
|
|
|
|
|
<image src="/static/my/hotac.png" mode="" style="width: 327rpx; height: 38rpx;">
|
|
|
|
|
</image>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 热门活动 -->
|
|
|
|
|
<view class="hot flex flex-column">
|
|
|
|
|
<view class="content flex align-items flex-column">
|
|
|
|
|
<view
|
|
|
|
|
class="flex flex-column w-100 bbb"
|
|
|
|
|
v-for="(item, index) in hotList"
|
|
|
|
|
:key="index"
|
|
|
|
|
@click="detail(item.id)"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="flex "
|
2025-04-24 09:31:50 +08:00
|
|
|
|
style="margin-top: 30rpx"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="right flex flex-column"
|
|
|
|
|
style="align-items: self-start"
|
|
|
|
|
>
|
|
|
|
|
<span class="title white-space">{{ item.title }}</span>
|
|
|
|
|
<span class="first-image flex align-items" style="margin-top: 20rpx;width: 100%;">
|
|
|
|
|
<image :src="item.user.avatar" style="width: 36rpx;height: 36rpx;"></image>
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<span style="color: #9C9C9C;margin-left: 10rpx;">{{ item.user.nickname }}</span>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<view class="white-space" style="width: 60%;">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<span style="color:#0CA013;margin-left: 20rpx;" v-for="items_t in item.classes_cate">#{{ items_t }}</span>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<view class="flex flex-column" style="margin-top: 20rpx;">
|
|
|
|
|
<view class="time flex align-items white-space">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<span class="time_tex" v-if="item.status == 2">{{ '报名中' }}</span>
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<span style="margin:0 20rpx;"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
>{{ dateWeeks(item.sign_start_time) }}
|
|
|
|
|
</span>|<span class="white-space"
|
2025-04-24 09:31:50 +08:00
|
|
|
|
style="margin-left: 20rpx;width: 260rpx;"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
>{{ item.address_detail }}</span
|
|
|
|
|
>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="flex align-items" style="margin-top: 20rpx;">
|
2025-04-18 18:12:42 +08:00
|
|
|
|
<image class="imgs_con" v-for="(items_img,index) in item.images.slice(0,3)" :key="index" :src="items_img"></image>
|
2025-04-14 08:45:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bottom flex align-items">
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<view class="flex align-items toptext">
|
|
|
|
|
<span class="flex align-items">
|
2025-04-14 08:45:22 +08:00
|
|
|
|
<u-avatar-group
|
|
|
|
|
:urls="item.join_info.users"
|
2025-04-18 18:12:42 +08:00
|
|
|
|
keyName="avatar"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
size="30"
|
2025-04-18 18:12:42 +08:00
|
|
|
|
maxCount="5"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
gap="0.4"
|
|
|
|
|
></u-avatar-group>
|
|
|
|
|
<image
|
2025-04-24 09:31:50 +08:00
|
|
|
|
:class="item.join_info.users.length > 0 ? '' :'smalld'"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
src="/static/index/dian.png"
|
2025-04-18 18:12:42 +08:00
|
|
|
|
style="width: 60rpx;height: 60rpx;margin-left:-20rpx;z-index: 1;"
|
2025-04-14 08:45:22 +08:00
|
|
|
|
></image>
|
|
|
|
|
</span>
|
2025-04-24 09:31:50 +08:00
|
|
|
|
<view class="number flex align-items" >
|
2025-04-14 08:45:22 +08:00
|
|
|
|
{{ Number(item.join_info.people_number)+"人已上车" }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<span v-if="item.status == 5" class="part1 flex justify-center align-items">
|
|
|
|
|
已结束
|
|
|
|
|
</span>
|
|
|
|
|
<span v-else class="part flex justify-center align-items">
|
|
|
|
|
上车
|
|
|
|
|
</span>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 授权登录 -->
|
|
|
|
|
<u-popup :show="showPopup" mode="center" round="20" :customStyle="{'width':'690rpx','height':'630rpx'}" :closeable="true"
|
|
|
|
|
@close="close">
|
|
|
|
|
<!-- 隐私协议 -->
|
|
|
|
|
<lsl-protocol-popup
|
|
|
|
|
title="用户协议和隐私政策提示"
|
|
|
|
|
predesc="感谢您使用洛阳青年夜校。为保护您的个人信息安全,在您洛阳青年夜校的服务前,请务必仔细阅读"
|
|
|
|
|
subdesc='以了解详细内容。如您同意,请点击“同意并继续”并开始使用我们的服务。'
|
|
|
|
|
top_img='https://xxx.xxx.com/images/home/zcts@2x.png'
|
|
|
|
|
color="#C9935C"
|
|
|
|
|
hideTabBar="true"
|
|
|
|
|
:onNeed='false'
|
|
|
|
|
@agree="getList"
|
|
|
|
|
:other="other"
|
|
|
|
|
:title_style="'padding-top:60rpx;'"
|
|
|
|
|
open_type='agreePrivacyAuthorization'>
|
|
|
|
|
</lsl-protocol-popup>
|
|
|
|
|
<view class="popup">
|
|
|
|
|
<img src="https://naweigetetest2.hschool.com.cn/dyqc/shou1.png" alt="" />
|
|
|
|
|
<text id="txt2">为您授权登陆,授权成功后可参加多种户外活动</text>
|
|
|
|
|
<button class="texbut" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
|
|
|
|
|
<u-icon
|
|
|
|
|
label="授权登录"
|
|
|
|
|
labelColor="#fff"
|
|
|
|
|
size="28"
|
|
|
|
|
name="/static/wechat1.png"
|
|
|
|
|
></u-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</view>
|
|
|
|
|
</u-popup>
|
|
|
|
|
|
|
|
|
|
<u-toast ref="uToast"></u-toast>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<tab-bar :tabBarShow="3"></tab-bar>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
mapActions
|
|
|
|
|
} from 'vuex';
|
|
|
|
|
import {
|
|
|
|
|
dateWeek
|
|
|
|
|
} from '../../utils/dateFormat'
|
|
|
|
|
export default {
|
|
|
|
|
...mapActions(['number']),
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
topHeight: '',
|
|
|
|
|
hotList: [],
|
|
|
|
|
showPopup: false,
|
|
|
|
|
userName: '请登录',
|
2025-04-18 18:12:42 +08:00
|
|
|
|
actives: 0,
|
|
|
|
|
pushActives: 0,
|
2025-04-14 08:45:22 +08:00
|
|
|
|
show: false,
|
|
|
|
|
avatar: '',
|
|
|
|
|
agree: false,
|
|
|
|
|
other: [{
|
|
|
|
|
tit: '《用户协议》',
|
|
|
|
|
type: 'page', // doc自行下载打开文档 page跳转页面
|
|
|
|
|
content: '/pages/Negotiate/agreement', // 文档地址/页面跳转地址
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
tit: '《隐私政策》',
|
|
|
|
|
type: 'page', // doc自行下载打开文档 page跳转页面
|
|
|
|
|
content: '/pages/Negotiate/privacy', // 文档地址/页面跳转地址
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
protocolArr: ["<隐私协议>"],
|
|
|
|
|
userinfo: {},
|
|
|
|
|
shop_id:'',
|
|
|
|
|
openidInfo: null,
|
|
|
|
|
token: '',
|
|
|
|
|
src: '',
|
|
|
|
|
openid_code: '',
|
|
|
|
|
code: '',
|
|
|
|
|
unread_number: '',
|
|
|
|
|
init:{},
|
|
|
|
|
timer: null, // 定时器
|
|
|
|
|
list: [{
|
|
|
|
|
image: '../../static/my/class.png',
|
|
|
|
|
text: '我的课程',
|
|
|
|
|
url: '/packageA/my/orderList'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/make.png',
|
|
|
|
|
text: '预约课程',
|
|
|
|
|
url: '/packageA/my/makeList'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/start.png',
|
|
|
|
|
text: '收藏课程',
|
|
|
|
|
url: '/packageA/my/Collect'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/afterSales.png',
|
|
|
|
|
text: '售后订单',
|
|
|
|
|
url: '/pages/afterSales/list'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Course.png',
|
|
|
|
|
text: '课程表',
|
|
|
|
|
url: '/packageA/my/timetable',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Feedback.png',
|
|
|
|
|
text: '课程反馈',
|
|
|
|
|
url: '/packageA/my/Feedback',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/station.png',
|
|
|
|
|
text: '消息通知',
|
|
|
|
|
url: '/packageA/my/station'
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// image: '../../static/my/orderList.png',
|
|
|
|
|
// text: '订单管理',
|
|
|
|
|
// url: '/packageA/my/orderList'
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Personal.png',
|
|
|
|
|
text: '修改信息',
|
|
|
|
|
url: "/packageA/my/person-detail"
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/exercise.png',
|
|
|
|
|
text: '我的活动',
|
|
|
|
|
url: "/packageA/activity/exercise"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Help.png',
|
|
|
|
|
text: '帮助',
|
|
|
|
|
url: "/packageA/my/help"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
list2: [{
|
|
|
|
|
image: '../../static/my/Platform.png',
|
|
|
|
|
text: '申请入驻',
|
|
|
|
|
url: "/pages/index/Apply",
|
|
|
|
|
auth_status: 1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Check.png',
|
|
|
|
|
text: '报名审核',
|
|
|
|
|
url: "/packageA/my/classCheck",
|
|
|
|
|
auth_status: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/Manage.png',
|
|
|
|
|
text: '课程管理',
|
|
|
|
|
auth_status: 0,
|
|
|
|
|
url: '/packageA/my/management',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/activity.png',
|
|
|
|
|
text: '活动管理',
|
|
|
|
|
auth_status: 0,
|
|
|
|
|
url: '/packageA/my/ac-management',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/verification.png',
|
|
|
|
|
text: '核销课程',
|
|
|
|
|
url: '/packageA/my/cancel',
|
|
|
|
|
auth_status: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/cancal.png',
|
|
|
|
|
text: '核销活动',
|
|
|
|
|
url: '/packageA/my/cancelActivity',
|
|
|
|
|
auth_status: 0
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// image: '../../static/my/list.png',
|
|
|
|
|
// text: '订单管理',
|
|
|
|
|
// auth_status: 0
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// image: '../../static/my/phone.png',
|
|
|
|
|
// text: '学员管理',
|
|
|
|
|
// auth_status: 0
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/organization.png',
|
|
|
|
|
text: '我的机构',
|
|
|
|
|
auth_status: 0,
|
|
|
|
|
url: '/pages/center/MechanismDetail',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
image: '../../static/my/addClass.png',
|
|
|
|
|
text: '创建课程',
|
|
|
|
|
auth_status: 0,
|
|
|
|
|
url: '/packageA/my/addManagement',
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
// watch: {
|
|
|
|
|
// showPopup: {
|
|
|
|
|
// handler(newVal, oldVal) {
|
|
|
|
|
// if (newVal == true) {
|
|
|
|
|
// uni.hideTabBar()
|
|
|
|
|
// } else {
|
|
|
|
|
// uni.showTabBar()
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// immediate: true,
|
|
|
|
|
// deep: true
|
|
|
|
|
// },
|
|
|
|
|
// },
|
|
|
|
|
// onLoad() {
|
|
|
|
|
// this.token = uni.getStorageSync('token')
|
|
|
|
|
// const userinfo = uni.getStorageSync('userInfo')
|
|
|
|
|
// const niName = uni.getStorageSync('niName')
|
|
|
|
|
// if (niName) {
|
|
|
|
|
// this.userName = niName
|
|
|
|
|
// } else {
|
|
|
|
|
// this.userName = userinfo.name
|
|
|
|
|
// }
|
|
|
|
|
// this.avatar = uni.getStorageSync('avatar');
|
|
|
|
|
// let openidInfo = uni.getStorageSync('openidInfo')
|
|
|
|
|
// let _this = this;
|
|
|
|
|
// if (!openidInfo) {
|
|
|
|
|
// _this.miniLogin();
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
onLoad() {
|
|
|
|
|
uni.hideTabBar()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onShow() {
|
|
|
|
|
this.getStatus()
|
2025-04-24 09:31:50 +08:00
|
|
|
|
this.token = uni.getStorageSync('token');
|
|
|
|
|
if (this.token) {
|
|
|
|
|
this.getUserInfo();
|
|
|
|
|
}
|
2025-04-14 08:45:22 +08:00
|
|
|
|
this.unread_number = this.number
|
|
|
|
|
const userinfo = uni.getStorageSync('userInfo')
|
2025-04-18 18:12:42 +08:00
|
|
|
|
const activityInfo = uni.getStorageSync('activityInfo')
|
2025-04-14 08:45:22 +08:00
|
|
|
|
const niName = uni.getStorageSync('niName')
|
|
|
|
|
if (niName) {
|
|
|
|
|
console.log(1,'niName',niName)
|
|
|
|
|
this.userName = niName
|
|
|
|
|
} else {
|
|
|
|
|
console.log(2)
|
|
|
|
|
this.userName = userinfo.name
|
|
|
|
|
}
|
2025-04-18 18:12:42 +08:00
|
|
|
|
this.actives = activityInfo.join_num;
|
|
|
|
|
this.pushActives = activityInfo.release_num;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
this.avatar = uni.getStorageSync('userInfo').avatar || '../../static/moren.png';
|
2025-04-24 09:31:50 +08:00
|
|
|
|
let openidInfo = uni.getStorageSync('openidInfo');
|
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
let _this = this;
|
|
|
|
|
if (!openidInfo) {
|
|
|
|
|
_this.miniLogin();
|
|
|
|
|
}
|
|
|
|
|
this.number();
|
|
|
|
|
this.getinit();
|
|
|
|
|
this.getHotList();
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
const systemInfo = uni.getSystemInfoSync();
|
|
|
|
|
const statusBarHeightPx = systemInfo.statusBarHeight;
|
|
|
|
|
const windowWidthPx = systemInfo.windowWidth;
|
|
|
|
|
// 将 statusBarHeight 从 px 转换为 rpx
|
|
|
|
|
const statusBarHeightRpx = statusBarHeightPx * (750 / windowWidthPx);
|
|
|
|
|
|
|
|
|
|
this.topHeight = statusBarHeightRpx;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
this.stopTimer();
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.startTimer();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
dateWeeks(e){
|
|
|
|
|
return dateWeek(e);
|
|
|
|
|
},
|
|
|
|
|
// 获取热门课程
|
|
|
|
|
getHotList() {
|
|
|
|
|
uni.$u.http
|
|
|
|
|
.get("/api/school.new_activity/activity_list", {
|
|
|
|
|
params: {
|
|
|
|
|
page: 1,
|
2025-04-24 09:31:50 +08:00
|
|
|
|
limit: 3,
|
|
|
|
|
order: "hot",
|
|
|
|
|
status: "2", //5已结束
|
2025-04-18 18:12:42 +08:00
|
|
|
|
auth_status: 1,
|
2025-04-14 08:45:22 +08:00
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
const list = res.data.list.data || [];
|
|
|
|
|
this.hotList = list;
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: "none",
|
|
|
|
|
duration: 2000,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: "请求失败,请稍后再试",
|
|
|
|
|
icon: "none",
|
|
|
|
|
duration: 2000,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 跳转详情
|
|
|
|
|
detail(id) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/pages/center/detail?id=" + id,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
callPhone(phone) {
|
|
|
|
|
console.log(phone)
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '开发中,暂未开放',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
});
|
|
|
|
|
// uni.makePhoneCall({
|
|
|
|
|
// phoneNumber: phone
|
|
|
|
|
// })
|
|
|
|
|
},
|
|
|
|
|
getinit() {
|
|
|
|
|
uni.$u.http.get('/api/index/init', {}).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
this.init = res.data.customer_service
|
|
|
|
|
uni.setStorageSync('init',res.data.customer_service)
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '请求失败,请稍后再试',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 查看自己的状态
|
|
|
|
|
getStatus() {
|
|
|
|
|
uni.$u.http.get('/api/school/shop/auth_info', {}).then(res => {
|
|
|
|
|
console.log(this.list2.length,'this.list2.length')
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
let have_auth = false;
|
|
|
|
|
let have_shop = false;
|
|
|
|
|
|
|
|
|
|
if(res.data.verification_auth.verification){
|
|
|
|
|
have_auth = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(res.data.auth_status == 1 && res.data.shop_id){
|
|
|
|
|
have_shop = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(have_auth){
|
|
|
|
|
for (let i = 1; i < this.list2.length; i++) {
|
|
|
|
|
this.list2[i].auth_status = 1;
|
|
|
|
|
}
|
|
|
|
|
this.list2[this.list2.length - 1].auth_status = 0;
|
|
|
|
|
this.list2[this.list2.length - 2].auth_status = 0;
|
|
|
|
|
}
|
|
|
|
|
if(have_shop){
|
|
|
|
|
this.list2[0].auth_status = 0;
|
|
|
|
|
for (let i = 1; i < this.list2.length; i++) {
|
|
|
|
|
this.list2[i].auth_status = 1;
|
|
|
|
|
}
|
|
|
|
|
this.shop_id = res.data.shop_id
|
|
|
|
|
uni.setStorageSync('shop_id',res.data.shop_id)
|
|
|
|
|
uni.setStorageSync('apply_info',res.data.apply_info)
|
|
|
|
|
this.list2[this.list2.length - 2].url = `/pages/center/MechanismDetail?id=${res.data.shop_id}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
2025-04-18 18:12:42 +08:00
|
|
|
|
toMycy(){
|
|
|
|
|
// if (!this.token) {
|
|
|
|
|
// this.miniLogin()
|
|
|
|
|
// this.showPopup = true
|
|
|
|
|
// } else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/packageA/my/exercise",
|
|
|
|
|
})
|
|
|
|
|
// }
|
|
|
|
|
},
|
2025-04-14 08:45:22 +08:00
|
|
|
|
toMyfb(){
|
|
|
|
|
// if (!this.token) {
|
|
|
|
|
// this.miniLogin()
|
|
|
|
|
// this.showPopup = true
|
|
|
|
|
// } else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/packageA/my/orderList",
|
|
|
|
|
})
|
|
|
|
|
// }
|
|
|
|
|
},
|
2025-04-18 18:12:42 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
|
|
|
|
|
// 退出登录
|
|
|
|
|
out() {
|
|
|
|
|
let _this = this;
|
|
|
|
|
uni.clearStorageSync()
|
|
|
|
|
uni.reLaunch({
|
|
|
|
|
url: '/pages/my/index'
|
|
|
|
|
})
|
|
|
|
|
// uni.$u.http.post('/api/user/logout', {}).then(res => {
|
|
|
|
|
// if (res.code == 1) {
|
|
|
|
|
// uni.reLaunch({
|
|
|
|
|
// url: '/pages/my/index'
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// }).catch(error => {
|
|
|
|
|
// uni.showToast({
|
|
|
|
|
// title: res.msg,
|
|
|
|
|
// icon: 'none',
|
|
|
|
|
// duration: 2000
|
|
|
|
|
// })
|
|
|
|
|
// })
|
|
|
|
|
},
|
|
|
|
|
to(url) {
|
|
|
|
|
console.log(url)
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
jump(url, type) {
|
|
|
|
|
console.log(url)
|
|
|
|
|
if (url == '/packageA/my/cancel') {
|
|
|
|
|
uni.scanCode({
|
|
|
|
|
success: (res) => {
|
|
|
|
|
console.log('扫码结果:' + res.result);
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: url + '?res=' + encodeURIComponent(res.result)
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
fail: (err) => {
|
|
|
|
|
console.error('扫码失败:' + err);
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '扫码已取消',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else if (url == '/packageA/my/addManagement') {
|
|
|
|
|
uni.$u.http.get('/api/school/shop/auth_info', ).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
if (res.data.check_full){
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/packageA/my/addManagement?shop_id=" + this.shop_id
|
|
|
|
|
})
|
|
|
|
|
} else{
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '必要展示信息未完善,请先在机构完善展示信息',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.error('请求失败', error);
|
|
|
|
|
});
|
|
|
|
|
} else if (url == '/packageA/my/cancelActivity') {
|
|
|
|
|
uni.scanCode({
|
|
|
|
|
success: (res) => {
|
|
|
|
|
console.log('扫码结果:' + res.result);
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: url + '?res=' + encodeURIComponent(res.result)
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
fail: (err) => {
|
|
|
|
|
console.error('扫码失败:' + err);
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '扫码已取消',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
close() {
|
|
|
|
|
this.showPopup = false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//小程序静默登录
|
|
|
|
|
miniLogin() {
|
|
|
|
|
let _this = this;
|
|
|
|
|
uni.login({
|
|
|
|
|
provider: 'weixin',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
console.log('res.code',res.code)
|
|
|
|
|
_this.getOpenidByCode(res.code)
|
|
|
|
|
_this.code = res.code
|
|
|
|
|
uni.setStorageSync('code', res.code)
|
|
|
|
|
},
|
|
|
|
|
fail: function(error) {
|
|
|
|
|
console.log('authError', error);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//根据code获取openid
|
|
|
|
|
getOpenidByCode(code) {
|
|
|
|
|
let _this = this;
|
|
|
|
|
uni.$u.http.post('/api/user/getOpenid ', {
|
|
|
|
|
code: code,
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
_this.openidInfo = res.data;
|
|
|
|
|
uni.setStorageSync('openidInfo', res.data)
|
|
|
|
|
// _this.$api.setCache('openidInfo', res.data);
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.log('获取openid失败:', error);
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取手机号
|
|
|
|
|
getPhoneNumber(e) {
|
|
|
|
|
var _this = this;
|
|
|
|
|
_this.miniLogin()
|
|
|
|
|
console.log('e.detail', e.detail)
|
|
|
|
|
if (!e.detail.iv) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '授权失败,请重新授权',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
_this.miniLogin();
|
|
|
|
|
// this.$api.toast('授权失败,请重新点击授权');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if (e.detail.errMsg !== "getPhoneNumber:ok") {
|
|
|
|
|
// uni.showToast({
|
|
|
|
|
// title: '授权失败,请重新点击授权',
|
|
|
|
|
// icon: 'none',
|
|
|
|
|
// duration: 2000
|
|
|
|
|
// })
|
|
|
|
|
// _this.miniLogin();
|
|
|
|
|
// return false;
|
|
|
|
|
// }
|
|
|
|
|
var openidInfo = uni.getStorageSync('openidInfo');
|
|
|
|
|
if (!openidInfo) {
|
|
|
|
|
_this.miniLogin();
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '未获取到信息,请重新点击授权',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
// this.$api.toast('未获取到信息,请重新点击授权');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
_this.decodeMobile({
|
|
|
|
|
encryptedData: e.detail.encryptedData,
|
|
|
|
|
iv: e.detail.iv,
|
|
|
|
|
sessionKey: openidInfo.session_key,
|
|
|
|
|
}, openidInfo);
|
|
|
|
|
},
|
|
|
|
|
//解析手机号
|
|
|
|
|
decodeMobile(data, openidInfo) {
|
|
|
|
|
var _this = this;
|
|
|
|
|
uni.$u.http.post('/api/user/decodeData', {
|
|
|
|
|
encryptedData: data.encryptedData,
|
|
|
|
|
iv: data.iv,
|
|
|
|
|
sessionKey: data.sessionKey,
|
|
|
|
|
}).then(res => {
|
|
|
|
|
console.log('res', res)
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
_this.userRegister(res.data.phoneNumber, openidInfo.openid);
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg || '解析手机号失败',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
// _this.$api.toast(res.msg || '解析手机号失败')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//用户注册
|
|
|
|
|
userRegister(mobile, openid) {
|
|
|
|
|
var _this = this;
|
|
|
|
|
console.log(uni.getStorageInfoSync("code"))
|
|
|
|
|
uni.$u.http.post('/api/user/registerLogin', {
|
|
|
|
|
mobile: mobile,
|
|
|
|
|
openid: openid,
|
|
|
|
|
code: _this.code,
|
|
|
|
|
apptype: 'miniapp',
|
|
|
|
|
platform: 'wechat'
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
uni.setStorageSync('token', res.data.token)
|
|
|
|
|
_this.getUserInfo()
|
|
|
|
|
this.token = res.data.token
|
2025-04-24 09:31:50 +08:00
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '登陆成功',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
2025-04-14 08:45:22 +08:00
|
|
|
|
// _this.$api.setCache('token', res.data.token);
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
uni.clearStorageSync()
|
|
|
|
|
_this.miniLogin()
|
|
|
|
|
// _this.$api.toast(res.msg);
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.log('error', error);
|
|
|
|
|
// _this.$api.modal('温馨提示', error.data.msg, function() {
|
|
|
|
|
|
|
|
|
|
// }, false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
// 获取个人信息
|
|
|
|
|
getUserInfo() {
|
|
|
|
|
uni.$u.http.get('/api/user/index', {}).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
uni.setStorageSync('userInfo', res.data.user_info)
|
2025-04-18 18:12:42 +08:00
|
|
|
|
uni.setStorageSync('settleInfo', res.data.settle_info)
|
|
|
|
|
uni.setStorageSync('activityInfo', res.data.activity_info)
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
this.showPopup = false
|
2025-04-18 18:12:42 +08:00
|
|
|
|
this.userName = res.data.user_info.nickname;
|
|
|
|
|
this.avatar = res.data.user_info.avatar;
|
|
|
|
|
this.actives = res.data.activity_info.join_num;
|
|
|
|
|
this.pushActives = res.data.activity_info.release_num;
|
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
uni.setStorageSync("niName", res.data.user_info.nickname)
|
|
|
|
|
this.userinfo = res.data.user_info
|
|
|
|
|
this.token = res.data.user_info.token
|
|
|
|
|
} else {
|
|
|
|
|
this.showPopup = false
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '登陆失败',
|
|
|
|
|
icon: 'error',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.log('error', error);
|
|
|
|
|
this.showPopup = false
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '登陆失败',
|
|
|
|
|
icon: 'error',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// getPhoneNumber(e) {
|
|
|
|
|
// var that = this
|
|
|
|
|
// if (e.detail.errMsg == 'getPhoneNumber:ok') {
|
|
|
|
|
// wx.login({
|
|
|
|
|
// success: function(res) {
|
|
|
|
|
// uni.$u.http.post('/Loginye/wx_getcode', {
|
|
|
|
|
// code: e.detail.code,
|
|
|
|
|
// openid_code: res.code
|
|
|
|
|
// }).then(res => {
|
|
|
|
|
// if (res.code == 0) {
|
|
|
|
|
// uni.setStorageSync('token', res.data)
|
|
|
|
|
// uni.setStorageSync('userInfo', res.userinfo)
|
|
|
|
|
// uni.setStorageSync('avatar', res.userinfo.head_img)
|
|
|
|
|
// that.userName = res.userinfo.name
|
|
|
|
|
// that.token = res.data
|
|
|
|
|
// that.src = res.userinfo.head_img
|
|
|
|
|
// that.showPopup = false
|
|
|
|
|
// console.log(that, "sdad")
|
|
|
|
|
// that.$refs.uToast.show({
|
|
|
|
|
// type: 'success',
|
|
|
|
|
// message: '授权成功'
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// }).catch(err => {
|
|
|
|
|
// console.log(err);
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// type: 'error',
|
|
|
|
|
// message: '授权失败,请重试'
|
|
|
|
|
// })
|
|
|
|
|
// this.showPopup = false
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
|
2025-04-24 09:31:50 +08:00
|
|
|
|
clickTop(val) {
|
2025-04-14 08:45:22 +08:00
|
|
|
|
// uni.navigateTo({
|
|
|
|
|
// url: '/packageA/my/person-detail'
|
|
|
|
|
// })
|
|
|
|
|
// console.log(this.token)
|
|
|
|
|
if (!this.token) {
|
|
|
|
|
this.miniLogin()
|
|
|
|
|
this.showPopup = true
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
2025-04-24 09:31:50 +08:00
|
|
|
|
url: "/packageA/my/person-detail?type="+val,
|
2025-04-14 08:45:22 +08:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
checkTokenAndRequest() {
|
|
|
|
|
if (uni.getStorageSync('token')) {
|
|
|
|
|
this.number();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 定时器
|
|
|
|
|
startTimer() {
|
|
|
|
|
if (!this.timer) { // 确保定时器只启动一次
|
|
|
|
|
this.timer = setInterval(() => {
|
|
|
|
|
this.checkTokenAndRequest();
|
|
|
|
|
}, 10000); // 每隔 10 秒执行一次
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
stopTimer() {
|
|
|
|
|
if (this.timer) {
|
|
|
|
|
clearInterval(this.timer);
|
|
|
|
|
this.timer = null;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 未读消息
|
|
|
|
|
number() {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.$u.http.get('/api/school/message/message_count', {
|
|
|
|
|
params: {},
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.code == 1) {
|
|
|
|
|
that.$store.commit('setNumber', res.data.unread_number);
|
|
|
|
|
that.unread_number = res.data.unread_number
|
|
|
|
|
uni.setStorageSync('unread_number', res.data.unread_number)
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.myBox {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background-color: #F1F2F8;
|
|
|
|
|
background-image: url("https://naweigetetest2.hschool.com.cn/dyqc/bgx2.png");
|
|
|
|
|
background-size: 750rpx 797rpx;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
|
|
|
|
// padding-top: env(safe-area-inset-top);
|
2025-04-24 09:31:50 +08:00
|
|
|
|
padding-top: 200rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
|
|
|
|
|
/* 顶部安全距离 */
|
|
|
|
|
.backImg {
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w-100 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex-start {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.justify-center {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.align-items {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex-column {
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.justify-start {
|
|
|
|
|
justify-content: start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.con-center {
|
|
|
|
|
margin-bottom: 100rpx;
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.hea-left {
|
2025-04-24 09:31:50 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
position: relative;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
.avatar {
|
2025-04-24 09:31:50 +08:00
|
|
|
|
width: 140rpx;
|
|
|
|
|
height: 140rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
|
|
|
|
|
.first-header {
|
|
|
|
|
margin-left: 18rpx;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
color: #181818;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
// line-height: 26rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line {
|
|
|
|
|
width: 320rpx;
|
|
|
|
|
height: 1rpx;
|
|
|
|
|
background: #BABDC7;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
margin: 19rpx 0 7rpx 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.red {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #FF4949;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-24 09:31:50 +08:00
|
|
|
|
.hea-right {
|
|
|
|
|
// width: 20%;
|
|
|
|
|
}
|
2025-04-14 08:45:22 +08:00
|
|
|
|
|
|
|
|
|
.line {}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.top_box{
|
|
|
|
|
width: 690rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-top: 32rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
view{
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 18rpx;
|
|
|
|
|
width: 330rpx;
|
2025-04-18 18:12:42 +08:00
|
|
|
|
padding: 20rpx 0;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
image{
|
|
|
|
|
width: 70rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
span{
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.p1{
|
2025-04-18 18:12:42 +08:00
|
|
|
|
width: 100%;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
font-weight: bold;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.p2{
|
2025-04-18 18:12:42 +08:00
|
|
|
|
width: 100%;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #9C9C9C;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.top_box_right{
|
2025-04-18 18:12:42 +08:00
|
|
|
|
margin-left:30rpx ;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.first {
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
padding-bottom: 32rpx;
|
|
|
|
|
margin-top: 52rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
|
|
|
|
|
|
|
|
.centerBox {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
view {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
margin: 42rpx 90rpx 0 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.numberPos {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0%;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #181818;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popup {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding-left: 73rpx;
|
|
|
|
|
padding-right: 73rpx;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -40rpx;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 1140rpx;
|
|
|
|
|
top: -460rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#txt2 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 340rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #525252;
|
|
|
|
|
margin-bottom: 90rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
.texbut{
|
|
|
|
|
width: 317rpx;
|
|
|
|
|
height: 90rpx;
|
|
|
|
|
border-radius: 45rpx;
|
|
|
|
|
background: #323232;
|
|
|
|
|
font-size: 34rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: bold;
|
2025-04-18 18:12:42 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jifen {
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
margin-top: 41rpx;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
|
margin-left: 32rpx;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
width: 104rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #181818;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
margin: 0 12rpx 0 6rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scoring {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 42rpx;
|
|
|
|
|
color: #FFB134;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
margin-right: 32rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #9E9E9E;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
margin-right: 8rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.service{
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-top: 30rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
height: 206rpx;
|
|
|
|
|
background: url("https://naweigetetest2.hschool.com.cn/dyqc/zhuliren.png");
|
|
|
|
|
background-size: 690rpx 206rpx;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.hot {
|
|
|
|
|
// margin-top: 30rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-bottom: 100rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
}
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
|
|
|
|
.part {
|
|
|
|
|
width: 162rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
background: url(@/static/index/shangche.png);
|
|
|
|
|
background-size: 162rpx 70rpx ;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
font-family: 'YouSheBiaoTiHei';
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 42rpx;
|
|
|
|
|
color: #BBFC5B;
|
|
|
|
|
}
|
|
|
|
|
.part1{
|
|
|
|
|
width: 162rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
background: url(@/static/index/shangchew.png);
|
|
|
|
|
background-size: 162rpx 70rpx;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
font-family: 'YouSheBiaoTiHei';
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 42rpx;
|
|
|
|
|
color: #9C9C9C;
|
|
|
|
|
}
|
2025-04-14 08:45:22 +08:00
|
|
|
|
.content {
|
|
|
|
|
// height: 462rpx;
|
|
|
|
|
// overflow-x: auto;
|
|
|
|
|
/* 允许横向滚动 */
|
|
|
|
|
// white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
|
|
|
|
|
.bbb {
|
|
|
|
|
background: #ffffff;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-top: 24rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
border-radius: 36rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-left: 30rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
width: 95%;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
font-weight: bold;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #323232;
|
|
|
|
|
}
|
|
|
|
|
.first-image {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #9C9C9C ;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #222222;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.row {
|
|
|
|
|
margin: 10rpx 0 26rpx 0;
|
|
|
|
|
|
|
|
|
|
.remen {
|
|
|
|
|
// width: 136rpx;
|
|
|
|
|
height: 40rpx;
|
|
|
|
|
background: #ebfaf5;
|
|
|
|
|
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
|
|
|
|
|
|
|
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #14bc84;
|
|
|
|
|
line-height: 28rpx;
|
|
|
|
|
padding: 2rpx 8rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line-colum {
|
|
|
|
|
width: 1rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
background: #7a7a7a;
|
|
|
|
|
margin: 0 13rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
width: 110rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #7a7a7a;
|
|
|
|
|
line-height: 32rpx;
|
|
|
|
|
margin-left: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.jigou {
|
|
|
|
|
width: 312rpx;
|
|
|
|
|
// height: 32rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #7a7a7a;
|
|
|
|
|
margin: 4rpx 0 14rpx 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.time {
|
|
|
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #323232 ;
|
|
|
|
|
line-height: 30rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
|
|
|
|
|
.time_tex{
|
|
|
|
|
width: 116rpx;
|
|
|
|
|
height: 42rpx;
|
|
|
|
|
background: #BBFC5B;
|
|
|
|
|
border-radius: 159rpx;
|
|
|
|
|
font-weight: 400;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
font-size: 24rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
color: #323232;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.time_texs{
|
|
|
|
|
background: #FF4810;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-14 08:45:22 +08:00
|
|
|
|
}
|
|
|
|
|
.imgs_con{
|
|
|
|
|
width: 202rpx;
|
|
|
|
|
height: 202rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
margin-right: 12rpx;
|
2025-04-14 08:45:22 +08:00
|
|
|
|
&:first-child{
|
|
|
|
|
border-radius: 18rpx 0 0 18rpx;
|
|
|
|
|
}
|
2025-04-24 09:31:50 +08:00
|
|
|
|
&:nth-child(3){
|
2025-04-14 08:45:22 +08:00
|
|
|
|
border-radius: 0 18rpx 18rpx 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
margin: 32rpx 0 32rpx 24rpx;
|
2025-04-24 09:31:50 +08:00
|
|
|
|
width: 655rpx;
|
|
|
|
|
.toptext{
|
|
|
|
|
width: 480rpx;
|
|
|
|
|
.smalld{
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-04-14 08:45:22 +08:00
|
|
|
|
.number {
|
|
|
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
line-height: 30rpx;
|
|
|
|
|
width: 242rpx;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #7a7a7a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.money {
|
|
|
|
|
width: 150rpx;
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #ff2323;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ovr {
|
|
|
|
|
width: 312rpx;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
margin-top: 18rpx;
|
|
|
|
|
margin-right: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|