You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

539 lines
13 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="profile-container" :class="{ 'wechat-browser': isWeixinBrowser }">
<!-- 顶部个人信息 -->
<view class="profile-header">
<view class="profile-avatar">
<image src="/static/avatar.png" mode="aspectFill" />
</view>
<view class="profile-info" @click="openEditPopup">
<view class="profile-name">Hi, {{ displayName }}</view>
<view class="profile-contact">
手机号{{ userInfo && userInfo.phone ? userInfo.phone : '-' }}
</view>
</view>
<view class="profile-setting" @click="openEditPopup">
<image class="setting-icon" src="/static/icon_setting.png" mode="aspectFit" />
</view>
</view>
<!-- 功能卡片1 -->
<view class="profile-card first-card">
<view class="profile-item" v-for="item in mainList" :key="item.text" @click="onItemClick(item)">
<image :src="item.icon" class="profile-list-icon" mode="aspectFit" />
<text class="item-text">{{ item.text }}</text>
<image src="/static/right_arrow.png" class="profile-arrow-icon" mode="aspectFit" />
</view>
</view>
<!-- 功能卡片2 -->
<view class="profile-card">
<view class="profile-item" v-for="item in helpList" :key="item.text" @click="onItemClick(item)">
<image :src="item.icon" class="profile-list-icon" mode="aspectFit" />
<text class="item-text">{{ item.text }}</text>
<image src="/static/right_arrow.png" class="profile-arrow-icon" mode="aspectFit" />
</view>
</view>
<!-- 编辑信息弹窗 -->
<view v-if="showEditPopup" class="edit-popup-mask" @click="closeEditPopup">
<view class="edit-popup" @click.stop>
<view class="edit-popup-header">
<text>更新信息</text>
<text class="edit-popup-close" @click="closeEditPopup">×</text>
</view>
<view class="edit-popup-content">
<view class="edit-field">
<text class="edit-label">姓名</text>
<input class="edit-input" v-model="editForm.name" placeholder="请输入姓名" />
</view>
<view class="edit-field">
<text class="edit-label">交款人类型</text>
<view class="payer-type-group">
<view
class="payer-type-item"
:class="{ active: Number(editForm.payer_type) === 1 }"
@click="editForm.payer_type = 1"
>
个人
</view>
<view
class="payer-type-item"
:class="{ active: Number(editForm.payer_type) === 2 }"
@click="editForm.payer_type = 2"
>
单位
</view>
</view>
</view>
<view class="edit-field">
<text class="edit-label">手机号</text>
<input
class="edit-input"
v-model="editForm.phone"
type="number"
maxlength="11"
placeholder="请输入手机号"
/>
</view>
<view class="edit-field">
<text class="edit-label">证件号</text>
<input
class="edit-input"
v-model="editForm.id_card"
placeholder="请输入身份证号"
maxlength="18"
/>
</view>
</view>
<view class="edit-popup-footer">
<button class="edit-submit-btn" @click="submitUserInfo">保存</button>
</view>
</view>
</view>
</view>
</template>
<script>
import { API } from '@/config/index.js'
export default {
data() {
return {
isWeixinBrowser: false,
userInfo: null,
editForm: {
name: '',
payer_type: 1,
phone: '',
id_card: ''
},
showEditPopup: false,
mainList: [
{ text: '我的预约', icon: '/static/icon_my1.png' },
// { text: '我的购票', icon: '/static/icon_my2.png' },
{ text: '我的发票', icon: '/static/icon_my3.png' },
{ text: '船舶信息', icon: '/static/icon_my4.png' },
],
helpList: [
{ text: '联系客服', icon: '/static/icon_my5.png' },
{ text: '帮助中心', icon: '/static/icon_my6.png' },
{ text: '关于我们', icon: '/static/icon_my7.png' },
]
}
},
onLoad() {
// #ifdef H5
this.isWeixinBrowser = /MicroMessenger/i.test(navigator.userAgent)
// #endif
},
computed: {
displayName() {
return (this.userInfo && this.userInfo.name) ? this.userInfo.name : '微信用户'
},
payerTypeLabel() {
const map = {
1: '个人',
2: '单位'
}
const type = Number(this.userInfo ? (this.userInfo.payer_type ?? this.userInfo.payerType) : undefined)
return map[type] || '-'
}
},
onShow() {
this.fetchUserInfo()
},
methods: {
async fetchUserInfo() {
const token = uni.getStorageSync('token')
if (!token) {
this.userInfo = null
return
}
try {
const res = await new Promise((resolve, reject) => {
uni.request({
url: `${API.GET_USER_INFO}?token=${token}`,
method: 'POST',
success: resolve,
fail: reject
})
})
console.log(res);
if (res.data) {
const data = res.data || {}
const payerType = Number(data.payer_type ?? data.payerType ?? 1)
this.userInfo = {
...data,
payerType,
payer_type: payerType
}
this.editForm = {
name: data.name || '',
payer_type: payerType,
phone: data.phone || '',
id_card: data.id_card || ''
}
} else {
this.userInfo = null
this.resetEditForm()
}
} catch (e) {
console.error('获取用户信息失败:', e)
this.userInfo = null
this.resetEditForm()
}
},
resetEditForm() {
this.editForm = {
name: '',
payer_type: 1,
phone: '',
id_card: ''
}
},
openEditPopup() {
if (this.userInfo) {
this.editForm = {
name: this.userInfo.name || '',
payer_type: Number(this.userInfo.payer_type ?? this.userInfo.payerType) || 1,
phone: this.userInfo.phone || '',
id_card: this.userInfo.id_card || ''
}
}
this.showEditPopup = true
},
closeEditPopup() {
this.showEditPopup = false
},
validateForm() {
if (!this.editForm.name) {
uni.showToast({ title: '请输入姓名', icon: 'none' })
return false
}
if (![1, 2].includes(Number(this.editForm.payer_type))) {
uni.showToast({ title: '请选择交款人类型', icon: 'none' })
return false
}
const phoneReg = /^1\d{10}$/
if (!phoneReg.test(this.editForm.phone)) {
uni.showToast({ title: '请输入正确的手机号', icon: 'none' })
return false
}
const idReg = /^(?:\d{15}|\d{17}[\dXx])$/
if (!idReg.test(this.editForm.id_card)) {
uni.showToast({ title: '请输入正确的证件号', icon: 'none' })
return false
}
return true
},
async submitUserInfo() {
if (!this.validateForm()) return
const token = uni.getStorageSync('token')
if (!token) {
uni.showToast({ title: '请先登录', icon: 'none' })
return
}
try {
uni.showLoading({ title: '提交中...' })
const res = await new Promise((resolve, reject) => {
uni.request({
url: `${API.UPDATE_USER_INFO}?token=${token}`,
method: 'POST',
data: {
name: this.editForm.name,
payer_type: Number(this.editForm.payer_type),
phone: this.editForm.phone,
id_card: this.editForm.id_card
},
success: resolve,
fail: reject
})
})
uni.hideLoading()
if (res.data && res.data.errcode === 0) {
uni.showToast({ title: '更新成功', icon: 'success' })
this.closeEditPopup()
this.fetchUserInfo()
} else {
uni.showToast({ title: res.data.errmsg || '更新失败', icon: 'none' })
}
} catch (e) {
uni.hideLoading()
console.error('更新用户信息失败:', e)
uni.showToast({ title: '更新失败', icon: 'none' })
}
},
onItemClick(item) {
if (item.text === '船舶信息') {
uni.navigateTo({ url: '/pages/index/ship_manage' });
}
else if (item.text === '我的预约') {
uni.switchTab({ url: '/pages/order/index' });
}
else if (item.text === '我的购票') {
uni.switchTab({ url: '/pages/order/index' });
}
else if (item.text === '我的发票') {
uni.navigateTo({ url: '/pages/index/invoice_manage' });
}
else if (item.text === '关于我们') {
uni.navigateTo({ url: '/pages/my/about' });
}
else {
uni.showToast({ title: item.text, icon: 'none' })
}
}
}
}
</script>
<style lang="scss">
.profile-container {
min-height: 100vh;
background: linear-gradient(180deg, #cbe6ff 0%, #f6faff 100%);
padding-top: 88rpx;
padding-bottom: 100rpx;
}
.wechat-browser {
margin-top: -88rpx;
}
.profile-header {
display: flex;
align-items: center;
padding: 40rpx 30rpx 20rpx 30rpx;
position: relative;
margin-top: 44rpx;
}
.profile-avatar image {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background: #fff;
border: 2rpx solid #e0e0e0;
}
.profile-info {
flex: 1;
margin-left: 24rpx;
}
.profile-name {
font-size: 36rpx;
font-weight: bold;
color: #222;
}
.profile-id {
font-size: 24rpx;
color: #7a8599;
margin-top: 8rpx;
}
.profile-contact {
font-size: 24rpx;
color: #7a8599;
margin-top: 8rpx;
}
.profile-setting {
position: absolute;
right: 30rpx;
top: 40rpx;
}
.setting-placeholder {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
background: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
color: #888;
font-size: 28rpx;
font-weight: bold;
margin-top: 25rpx;
}
.profile-card {
background: #fff;
border-radius: 24rpx;
margin: 20rpx 20rpx 0 20rpx;
box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.03);
overflow: hidden;
}
.profile-item {
display: flex;
align-items: center;
padding: 32rpx 24rpx;
border-bottom: 1rpx solid #f0f0f0;
font-size: 30rpx;
color: #222;
position: relative;
}
.profile-item:last-child {
border-bottom: none;
}
.profile-item .iconfont {
font-size: 40rpx;
margin-right: 24rpx;
color: #3b82f6;
}
.profile-item .icon-arrow-right {
margin-left: auto;
color: #c0c4cc;
font-size: 32rpx;
}
.item-text {
flex: 1;
}
.tabbar {
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 100rpx;
background: #fff;
display: flex;
border-top: 1rpx solid #f0f0f0;
z-index: 10;
}
.tabbar-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #888;
font-size: 24rpx;
}
.tabbar-item .iconfont {
font-size: 40rpx;
margin-bottom: 4rpx;
}
.tabbar-item.active {
color: #3b82f6;
}
.setting-icon {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
background: #e0e0e0;
margin-top: 25rpx;
}
.profile-list-icon {
width: 40rpx;
height: 40rpx;
margin-right: 24rpx;
vertical-align: middle;
}
.first-card {
margin-bottom: 38rpx;
}
.profile-arrow-icon {
width: 38rpx;
height: 38rpx;
margin-left: auto;
display: block;
}
.edit-popup-mask {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.45);
display: flex;
justify-content: center;
align-items: flex-end;
z-index: 9999;
}
.edit-popup {
background: #fff;
width: 100%;
border-top-left-radius: 24rpx;
border-top-right-radius: 24rpx;
padding: 32rpx;
box-sizing: border-box;
max-height: 80vh;
overflow-y: auto;
}
.edit-popup-header {
display: flex;
justify-content: center;
position: relative;
font-size: 32rpx;
font-weight: 600;
color: #222;
}
.edit-popup-close {
position: absolute;
right: 0;
top: 0;
font-size: 44rpx;
color: #999;
padding: 0 16rpx;
}
.edit-popup-content {
margin-top: 32rpx;
}
.edit-field {
margin-bottom: 28rpx;
}
.edit-label {
display: block;
font-size: 28rpx;
color: #666;
margin-bottom: 12rpx;
}
.edit-input {
width: 100%;
height: 80rpx;
border-radius: 12rpx;
border: 1rpx solid #e5e6eb;
padding: 0 24rpx;
font-size: 28rpx;
box-sizing: border-box;
background: #fafafa;
}
.payer-type-group {
display: flex;
gap: 20rpx;
}
.payer-type-item {
flex: 1;
height: 80rpx;
border-radius: 12rpx;
border: 1rpx solid #e5e6eb;
display: flex;
align-items: center;
justify-content: center;
font-size: 28rpx;
color: #666;
}
.payer-type-item.active {
border-color: #3b7cff;
color: #3b7cff;
background: #edf3ff;
}
.edit-popup-footer {
margin-top: 12rpx;
}
.edit-submit-btn {
width: 100%;
height: 88rpx;
line-height: 88rpx;
border-radius: 44rpx;
background: linear-gradient(90deg, #3b7cff 0%, #5bb6ff 100%);
color: #fff;
font-size: 32rpx;
font-weight: 500;
border: none;
}
.edit-submit-btn::after {
border: none;
}
</style>