2024-10-17 05:04:16 +00:00
|
|
|
|
<template>
|
2025-03-24 03:33:28 +00:00
|
|
|
|
<view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-16 16:46:57 +00:00
|
|
|
|
<image class="imgPos_1" :src="mineUrl + '/main/mh.png'" />
|
|
|
|
|
<image class="imgPos_2" :src="mineUrl + '/main/hb.png'" />
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
|
|
|
|
<view class="flex-col group">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-row items-center group_2">
|
2025-03-24 03:33:28 +00:00
|
|
|
|
<button class="avatar_button" open-type="chooseAvatar" @chooseavatar="onChooseAvatar" >
|
2025-03-19 07:16:09 +00:00
|
|
|
|
<image class="avatar_son" mode="aspectFill" :src="publicPath + myAvatar" />
|
2025-03-09 10:55:38 +00:00
|
|
|
|
</button>
|
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="ml-20 flex-col items-start flex-1">
|
2025-03-09 10:55:38 +00:00
|
|
|
|
<!-- <text class="text">微信用户</text> -->
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-23 11:14:41 +00:00
|
|
|
|
<input class="text" type="nickname" v-model="nickName" placeholder="请输入昵称" name="nickname"
|
2025-03-24 03:33:28 +00:00
|
|
|
|
@blur="onUpdateNick" maxlength="10" :disabled="disabledInput"/>
|
2025-03-09 10:55:38 +00:00
|
|
|
|
<text class="mt-18 font text_2">剩余积分:{{ myPoints }}</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-row equal-division">
|
2025-03-11 14:04:30 +00:00
|
|
|
|
<view class="flex-col items-center" @click="goto(0)">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="shrink-0 image_2" :src="mineUrl + '/main/all.png'" />
|
2025-03-11 14:04:30 +00:00
|
|
|
|
<text class="font text_3">全部</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<view class="flex-col items-center ml-1" @click="goto(1)">
|
|
|
|
|
<image class="shrink-0 image_2" :src="mineUrl + '/main/dzf.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<text class="font text_5">待支付</text>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<view class="flex-col items-center ml-1" @click="goto(2)">
|
|
|
|
|
<image class="shrink-0 image_2" :src="mineUrl + '/main/dfh.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<text class="font text_4">待发货</text>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<view class="flex-col items-center ml-1" @click="goto(3)">
|
|
|
|
|
<image class="shrink-0 image_2" :src="mineUrl + '/main/dsh.png'" />
|
2025-03-11 14:04:30 +00:00
|
|
|
|
<text class="font text_6">待收货</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<view class="flex-col items-center ml-1" @click="goto(4)">
|
|
|
|
|
<image class="shrink-0 image_2" :src="mineUrl + '/main/ytk.png'" />
|
2025-03-11 14:04:30 +00:00
|
|
|
|
<text class="font text_7">已退款</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-24 14:42:31 +00:00
|
|
|
|
<view class="flex-col mt-20" v-if="nickName != '未登录'">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-col group_3">
|
2025-03-09 10:55:38 +00:00
|
|
|
|
<view class="flex-row justify-between relative" @click="jump_addressList">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="image_3" :src="mineUrl + '/main/address.png'" />
|
|
|
|
|
<image class="self-start image_4 image_5" :src="mineUrl + '/main/yjt.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<text class="font_2 text_8 pos">地 址 列 表</text>
|
|
|
|
|
<view class="divider pos_2"></view>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-row justify-between relative" @click="goToText">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="image_6" :src="mineUrl + '/main/contact.png'" />
|
|
|
|
|
<image class="self-start image_4 image_7" :src="mineUrl + '/main/yjt.png'" />
|
|
|
|
|
<text class="font_2 pos_3">联系人列表</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="divider pos_4"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<view class="flex-col group_3">
|
|
|
|
|
<view class="flex-row justify-between relative" @click="jumpToBookingOrder">
|
|
|
|
|
<image class="image_33" :src="mineUrl + '/main/wdyy.png'" />
|
|
|
|
|
<image class="self-start image_4 image_5" :src="mineUrl + '/main/yjt.png'" />
|
|
|
|
|
<text class="font_2 text_8 pos">我 的 预 约</text>
|
|
|
|
|
<view class="divider pos_2"></view>
|
|
|
|
|
</view>
|
|
|
|
|
|
2025-03-23 12:01:58 +00:00
|
|
|
|
<view class="flex-row justify-between relative" @click="gotoRentOrder">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="image_6" :src="mineUrl + '/main/rent.png'" />
|
|
|
|
|
<image class="self-start image_4 image_7" :src="mineUrl + '/main/yjt.png'" />
|
|
|
|
|
<text class="font_2 pos_3">我 的 租 赁</text>
|
|
|
|
|
<view class="divider pos_4"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-col group_5">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<!-- <view class="divider view"></view> -->
|
2025-02-28 04:03:29 +00:00
|
|
|
|
<view class="flex-row justify-between items-center group_6" @click="jumpToMyCoupon">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-row items-center">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="shrink-0 image_10" :src="mineUrl + '/main/coupon.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<text class="font_2">我的优惠券</text>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="image_4 image_11" :src="mineUrl + '/main/yjt.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="divider view_2"></view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-24 03:33:28 +00:00
|
|
|
|
<view class="flex-row justify-between group_7" @click="userLogout" v-if="nickName != '未登录'">
|
2024-12-19 07:52:16 +00:00
|
|
|
|
<view class="flex-row self-center">
|
|
|
|
|
<view class="flex-row shrink-0">
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="shrink-0 image_12" :src="mineUrl + '/main/logout.png'" />
|
2025-03-09 10:55:38 +00:00
|
|
|
|
<text class="ml-10 self-start font_3 text_10">退 出 登 录</text>
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
<image class="self-start image_4 image_13" :src="mineUrl + '/main/yjt.png'" />
|
2024-12-19 07:52:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-24 14:42:31 +00:00
|
|
|
|
<view class="flex-col mt-20" v-if="nickName === '未登录'">
|
|
|
|
|
<view class="flex-col group_3">
|
|
|
|
|
<view class="flex-row justify-between relative" @click="gotoLogin">
|
|
|
|
|
<image class="image_3" :src="mineUrl + '/main/logout.png'" />
|
|
|
|
|
<image class="self-start image_4 image_5" :src="mineUrl + '/main/yjt.png'" />
|
|
|
|
|
<text class="font_2 text_8 pos">立 即 登 陆</text>
|
|
|
|
|
<!-- <view class="divider pos_2"></view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-12-02 03:01:34 +00:00
|
|
|
|
</view>
|
2024-10-17 05:04:16 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
import {
|
|
|
|
|
onMounted,
|
|
|
|
|
ref
|
|
|
|
|
} from 'vue';
|
|
|
|
|
import {
|
|
|
|
|
onShow,
|
|
|
|
|
onLoad
|
|
|
|
|
} from "@dcloudio/uni-app";
|
|
|
|
|
import { baseUrl } from '../../../api/request';
|
|
|
|
|
import { getFonts } from '../../../common/globalFont';
|
|
|
|
|
import { mineUrl } from '../../../common/globalImagesUrl';
|
2025-03-24 03:33:28 +00:00
|
|
|
|
import { publicPath,bkgPubilcPath } from '../../../common/globalImagesUrl';
|
2025-03-23 10:32:01 +00:00
|
|
|
|
import { onPullDownRefresh } from '@dcloudio/uni-app';
|
2025-03-23 11:14:41 +00:00
|
|
|
|
import { JudgeIsNullity } from '../../../common/globalFunction';
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
|
|
|
|
onPullDownRefresh(async () => { //下拉刷新
|
|
|
|
|
await getMyUser()
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
uni.stopPullDownRefresh() //停止下拉刷新
|
|
|
|
|
}, 1000)
|
2025-01-09 02:50:05 +00:00
|
|
|
|
})
|
2025-03-24 14:42:31 +00:00
|
|
|
|
|
|
|
|
|
onShow( async ()=>{
|
|
|
|
|
await getMyUser()
|
|
|
|
|
})
|
|
|
|
|
|
2025-02-28 04:03:29 +00:00
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
onLoad(() => {
|
|
|
|
|
getFonts() //启动使从服务器下载字体
|
2025-02-28 04:03:29 +00:00
|
|
|
|
})
|
2025-03-24 14:42:31 +00:00
|
|
|
|
|
|
|
|
|
const gotoLogin = () => {
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
url: '/pages/login/login'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-02-28 04:03:29 +00:00
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
onMounted(() => {
|
|
|
|
|
getMyUser()
|
2025-02-28 04:03:29 +00:00
|
|
|
|
})
|
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const goToText = () => { //跳转到联系人信息
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/mine/Contact/testContact'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const goTo = () => { //跳转到预约
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/mine/bookings/booking'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const goto = (tab) => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/my-order/myOrderList/myOrderList?status=' + tab
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-03-09 10:55:38 +00:00
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const jumpToBookingOrder = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/book/photoProductsOrderDetail/photoProductsOrderDetail'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-03-09 10:55:38 +00:00
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const jumpToMyCoupon = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/coupon/MyCoupon/MyCoupon'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-03-09 10:55:38 +00:00
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const jump_addressList = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/mine/addressList/addressList'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const cookie = wx.getStorageSync('cookie')
|
|
|
|
|
|
2025-03-23 12:01:58 +00:00
|
|
|
|
const gotoRentOrder = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/clothesRent/clotherRentOrderList/clotherRentOrderList'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
|
|
|
|
const logout = async () => {
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/user/mini/logout',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
header: {
|
|
|
|
|
cookie
|
2025-03-09 10:55:38 +00:00
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const userLogout = () => {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '您确定要退出登录吗?',
|
|
|
|
|
success: (res) => {
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
logout()
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '退出成功'
|
|
|
|
|
})
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
url: '/pages/login/login'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let tempFile = ''
|
|
|
|
|
const myAvatar = ref(mineUrl + '/main/avatar.png')
|
|
|
|
|
const onChooseAvatar = (e) => {
|
2025-03-24 03:33:28 +00:00
|
|
|
|
if(nickName.value === '未登录') {
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
url: '/pages/login/login'
|
|
|
|
|
})
|
|
|
|
|
return;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
tempFile = e.detail.avatarUrl
|
|
|
|
|
console.log(tempFile)
|
|
|
|
|
uni.uploadFile({
|
|
|
|
|
url: baseUrl + '/file/uploadFile',
|
|
|
|
|
filePath: tempFile,
|
|
|
|
|
name: 'file',
|
|
|
|
|
formData: {
|
|
|
|
|
biz: 'user_avatar'
|
|
|
|
|
},
|
|
|
|
|
header: {
|
|
|
|
|
cookie
|
|
|
|
|
},
|
|
|
|
|
success: (res) => {
|
|
|
|
|
myAvatar.value = JSON.parse(res.data).data
|
|
|
|
|
updateMyUser()
|
|
|
|
|
},
|
|
|
|
|
fail: (e) => {
|
|
|
|
|
console.log(e)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-03-09 10:55:38 +00:00
|
|
|
|
|
|
|
|
|
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const nickName = ref('非遗雅士')
|
|
|
|
|
const onUpdateNick = (e) => {
|
2025-03-24 03:33:28 +00:00
|
|
|
|
if(nickName.value === '未登录') {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/login/login'
|
|
|
|
|
})
|
|
|
|
|
return;
|
|
|
|
|
}
|
2025-03-23 11:14:41 +00:00
|
|
|
|
if (JudgeIsNullity(nickName.value)) {
|
|
|
|
|
getMyUser()
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '呢称不能为空',
|
|
|
|
|
showCancel: false
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
nickName.value = e.detail.value
|
|
|
|
|
updateMyUser()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const updateMyUser = async () => {
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/user/update/my',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
header: {
|
|
|
|
|
cookie
|
|
|
|
|
},
|
|
|
|
|
data: {
|
|
|
|
|
userName: nickName.value,
|
|
|
|
|
userAvatar: myAvatar.value
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log(res.data.data)
|
|
|
|
|
}
|
2025-03-24 03:33:28 +00:00
|
|
|
|
|
|
|
|
|
const disabledInput = ref(true)
|
2025-03-23 10:32:01 +00:00
|
|
|
|
const myPoints = ref(0)
|
|
|
|
|
const getMyUser = async () => {
|
|
|
|
|
const res = await uni.request({
|
|
|
|
|
url: baseUrl + '/user/get/login',
|
|
|
|
|
method: 'GET',
|
|
|
|
|
header: {
|
|
|
|
|
cookie
|
|
|
|
|
}
|
|
|
|
|
})
|
2025-03-24 03:33:28 +00:00
|
|
|
|
console.log('登陆状态--->',res.data)
|
|
|
|
|
if(res.data.code === 40100) {
|
|
|
|
|
nickName.value = '未登录'
|
|
|
|
|
uni.showToast({
|
2025-03-24 14:42:31 +00:00
|
|
|
|
icon: 'error',
|
2025-03-24 03:33:28 +00:00
|
|
|
|
title: '未登录'
|
|
|
|
|
})
|
|
|
|
|
} else if(res.data.code === 1) {
|
|
|
|
|
disabledInput.value = false
|
|
|
|
|
nickName.value = res.data.data.userName
|
|
|
|
|
myAvatar.value = res.data.data.userAvatar
|
|
|
|
|
myPoints.value = res.data.data.points
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
}
|
2024-10-17 05:04:16 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-03-23 10:32:01 +00:00
|
|
|
|
.pos_99 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 3.75rpx;
|
|
|
|
|
right: 37.5rpx;
|
|
|
|
|
top: 124.69rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button::after {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
2025-03-11 14:04:30 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
.ml-1 {
|
|
|
|
|
margin-left: 1.88rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt-37 {
|
|
|
|
|
margin-top: 69.38rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page {
|
2025-03-09 10:55:38 +00:00
|
|
|
|
padding: 100rpx 0 211.88rpx;
|
2024-12-19 07:52:16 +00:00
|
|
|
|
background-color: #ffffff00;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
height: 100vh;
|
2025-03-16 13:35:20 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-16 13:35:20 +00:00
|
|
|
|
.imgPos_1 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -80rpx;
|
|
|
|
|
right: 0;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-16 13:35:20 +00:00
|
|
|
|
.imgPos_2 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -160rpx;
|
|
|
|
|
right: 0;
|
|
|
|
|
opacity: 0.3;
|
2024-12-19 07:52:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group {
|
|
|
|
|
padding: 0 7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_2 {
|
|
|
|
|
margin: 0 30rpx;
|
|
|
|
|
padding: 0 7.5rpx 37.5rpx;
|
|
|
|
|
border-bottom: solid 0.94rpx #aeaeae;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 150rpx;
|
2025-03-11 14:04:30 +00:00
|
|
|
|
height: 150rpx;
|
2024-12-19 07:52:16 +00:00
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-09 10:55:38 +00:00
|
|
|
|
.avatar_button {
|
|
|
|
|
padding: 0;
|
2025-03-11 14:04:30 +00:00
|
|
|
|
height: 150rpx;
|
|
|
|
|
width: 150rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: #fff;
|
2025-03-09 10:55:38 +00:00
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2025-03-11 14:04:30 +00:00
|
|
|
|
.avatar_son {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 150rpx;
|
|
|
|
|
height: 150rpx;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
.text {
|
|
|
|
|
color: #000000;
|
2025-03-09 10:55:38 +00:00
|
|
|
|
font-size: 40rpx;
|
2024-12-19 07:52:16 +00:00
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 40.61rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font {
|
|
|
|
|
font-size: 28.13rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 27.02rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_2 {
|
|
|
|
|
margin-left: 7.5rpx;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
line-height: 27.9rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.equal-division {
|
|
|
|
|
margin-right: 5.63rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_2 {
|
|
|
|
|
width: 144rpx;
|
|
|
|
|
height: 144rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_3 {
|
|
|
|
|
margin-top: -7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_5 {
|
|
|
|
|
margin-top: -7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_4 {
|
|
|
|
|
margin-top: -7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_6 {
|
|
|
|
|
margin-top: -7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_7 {
|
|
|
|
|
margin-top: -7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_3 {
|
|
|
|
|
padding: 0 35.63rpx;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
|
|
|
|
.image_33 {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 123.75rpx;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
.image_3 {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 123.75rpx;
|
|
|
|
|
}
|
2025-03-23 10:32:01 +00:00
|
|
|
|
|
2024-12-19 07:52:16 +00:00
|
|
|
|
.image_4 {
|
|
|
|
|
width: 39.38rpx;
|
|
|
|
|
height: 41.25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_5 {
|
|
|
|
|
margin-right: 31.88rpx;
|
|
|
|
|
margin-top: 52.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font_2 {
|
|
|
|
|
font-size: 37.5rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 36.47rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_8 {
|
|
|
|
|
line-height: 35.74rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pos {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 121.76rpx;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
|
background-color: #aeaeae;
|
|
|
|
|
height: 0.94rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pos_2 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 3.75rpx;
|
|
|
|
|
right: 37.5rpx;
|
|
|
|
|
top: 117.19rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_6 {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 125.63rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_7 {
|
|
|
|
|
margin-right: 31.88rpx;
|
|
|
|
|
margin-top: 52.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pos_3 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 116.72rpx;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pos_4 {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 3.75rpx;
|
|
|
|
|
right: 37.5rpx;
|
|
|
|
|
top: 124.69rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_4 {
|
|
|
|
|
margin-top: 4rpx;
|
|
|
|
|
padding: 0 28.13rpx 11.25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_8 {
|
|
|
|
|
width: 133.13rpx;
|
|
|
|
|
height: 114.38rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_9 {
|
|
|
|
|
padding-top: 20rpx;
|
|
|
|
|
margin-left: -7.5rpx;
|
|
|
|
|
line-height: 33.99rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_9 {
|
|
|
|
|
margin-right: 41.25rpx;
|
|
|
|
|
margin-top: 45.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_5 {
|
|
|
|
|
padding: 0 39.38rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view {
|
|
|
|
|
margin-right: 33.75rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_6 {
|
|
|
|
|
padding: 22.5rpx 0 7.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_10 {
|
|
|
|
|
width: 118.13rpx;
|
|
|
|
|
height: 101.25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_11 {
|
|
|
|
|
margin-right: 28.13rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view_2 {
|
|
|
|
|
margin-right: 31.88rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group_7 {
|
|
|
|
|
padding: 28.13rpx 7.5rpx 0;
|
2025-03-17 10:10:19 +00:00
|
|
|
|
z-index: 9;
|
2024-12-19 07:52:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_12 {
|
|
|
|
|
width: 91.88rpx;
|
|
|
|
|
height: 91.88rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font_3 {
|
|
|
|
|
font-size: 37.5rpx;
|
|
|
|
|
font-family: FangZhengFonts;
|
|
|
|
|
line-height: 30.47rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_10 {
|
|
|
|
|
margin-top: 26.25rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text_11 {
|
|
|
|
|
margin-top: 22.5rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image_13 {
|
|
|
|
|
margin-right: 20.63rpx;
|
|
|
|
|
margin-top: 16.88rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@import url(../../../common/css/global.css);
|
2024-12-02 03:01:34 +00:00
|
|
|
|
</style>
|