小程序适配
All checks were successful
Deploy to Server / deploy (push) Successful in 58s

This commit is contained in:
jeremygan2021
2026-02-26 15:10:52 +08:00
parent 66cfbdd75b
commit 9215ec3b42
11 changed files with 453 additions and 150 deletions

View File

@@ -20,10 +20,21 @@ class CommissionLogSerializer(serializers.ModelSerializer):
} }
class WeChatUserSerializer(serializers.ModelSerializer): class WeChatUserSerializer(serializers.ModelSerializer):
is_admin = serializers.SerializerMethodField()
has_web_account = serializers.SerializerMethodField()
class Meta: class Meta:
model = WeChatUser model = WeChatUser
fields = ['id', 'openid', 'nickname', 'avatar_url', 'gender', 'country', 'province', 'city', 'phone_number', 'is_star', 'title', 'skills'] fields = ['id', 'openid', 'nickname', 'avatar_url', 'gender', 'country', 'province', 'city', 'phone_number', 'is_star', 'title', 'skills', 'is_admin', 'has_web_account']
read_only_fields = ['id', 'openid', 'phone_number', 'is_star', 'title', 'skills'] read_only_fields = ['id', 'openid', 'phone_number', 'is_star', 'title', 'skills', 'is_admin', 'has_web_account']
def get_is_admin(self, obj):
# 检查是否关联了系统用户且具有管理员权限
return bool(obj.user and obj.user.is_staff)
def get_has_web_account(self, obj):
# 检查是否关联了系统用户(即网页账号)
return obj.user is not None
class DistributorSerializer(serializers.ModelSerializer): class DistributorSerializer(serializers.ModelSerializer):
user_info = WeChatUserSerializer(source='user', read_only=True) user_info = WeChatUserSerializer(source='user', read_only=True)

View File

@@ -0,0 +1,42 @@
import React, { useState } from 'react'
import { View, Text, ScrollView } from '@tarojs/components'
import Taro from '@tarojs/taro'
import { AtIcon } from 'taro-ui'
import './index.scss'
interface Props {
code: string
language?: string
}
const CodeBlock: React.FC<Props> = ({ code, language }) => {
const [copied, setCopied] = useState(false)
const handleCopy = (e) => {
e.stopPropagation()
Taro.setClipboardData({
data: code,
success: () => {
setCopied(true)
setTimeout(() => setCopied(false), 2000)
}
})
}
return (
<View className='markdown-code-block'>
<View className='code-header'>
<Text className='language'>{language || 'text'}</Text>
<View className='copy-btn' onClick={handleCopy}>
<AtIcon value='copy' size='14' color='#ccc' />
<Text className='copy-text'>{copied ? '已复制' : '复制'}</Text>
</View>
</View>
<ScrollView scrollX scrollY className='code-content'>
<Text userSelect className='code-text'>{code}</Text>
</ScrollView>
</View>
)
}
export default CodeBlock

View File

@@ -0,0 +1,75 @@
.markdown-reader {
.markdown-text {
/* Inherit font styles and color from parent */
font-size: inherit;
line-height: inherit;
color: inherit;
/* Ensure rich text images are responsive */
image {
max-width: 100%;
}
}
}
.markdown-code-block {
margin: 16px 0;
border-radius: 8px;
overflow: hidden;
background-color: #1e1e1e;
border: 1px solid #333;
.code-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 12px;
background-color: #252526;
border-bottom: 1px solid #333;
.language {
color: #9cdcfe;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
}
.copy-btn {
display: flex;
align-items: center;
cursor: pointer;
padding: 4px 8px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
transition: background-color 0.2s;
&:active {
background-color: rgba(255, 255, 255, 0.2);
}
.copy-text {
color: #ccc;
font-size: 12px;
margin-left: 4px;
}
}
}
.code-content {
padding: 12px;
background-color: #1e1e1e;
max-height: 400px;
box-sizing: border-box;
.code-text {
color: #d4d4d4;
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
line-height: 1.5;
white-space: pre;
display: block;
width: max-content;
min-width: 100%;
}
}
}

View File

@@ -0,0 +1,90 @@
import React, { useMemo } from 'react'
import { View, RichText } from '@tarojs/components'
import { marked, Renderer } from 'marked'
import CodeBlock from './CodeBlock'
import './index.scss'
interface Props {
content: string
themeColor?: string
}
const MarkdownReader: React.FC<Props> = ({ content, themeColor = '#00b96b' }) => {
const elements = useMemo(() => {
if (!content) return []
const tokens = marked.lexer(content)
const result: React.ReactNode[] = []
let currentTokens: any[] = []
// Configure renderer
const renderer = new Renderer()
renderer.table = (header, body) => {
return `<div style="overflow-x: auto; width: 100%; -webkit-overflow-scrolling: touch;">
<table style="width: 100%; min-width: 600px; border-collapse: collapse; margin: 16px 0; font-size: 14px;">
<thead>${header}</thead>
<tbody>${body}</tbody>
</table>
</div>`
}
renderer.tablecell = (content, flags) => {
const type = flags.header ? 'th' : 'td'
const style = [
'border: 1px solid rgba(255,255,255,0.1)',
'padding: 10px',
flags.header ? 'background-color: rgba(255,255,255,0.05); font-weight: 700; color: #fff;' : 'color: #ddd;',
flags.align ? `text-align: ${flags.align}` : 'text-align: left'
].join(';')
return `<${type} style="${style}">${content}</${type}>`
}
renderer.image = (href, title, text) => {
return `<img src="${href}" style="max-width:100%;border-radius:8px;margin:10px 0;box-shadow: 0 4px 12px rgba(0,0,0,0.3);" title="${title || ''}" alt="${text || ''}" />`
}
renderer.link = (href, title, text) => {
return `<a href="${href}" style="color: ${themeColor}; text-decoration: none;">${text}</a>`
}
// Process tokens
tokens.forEach((token, index) => {
if (token.type === 'code') {
// Flush accumulated tokens
if (currentTokens.length > 0) {
// preserve links if any
(currentTokens as any).links = (tokens as any).links
const html = marked.parser(currentTokens as any, { renderer, breaks: true })
result.push(<RichText key={`rt-${index}`} nodes={html} className='markdown-text' />)
currentTokens = []
}
// Add code block
result.push(
<View key={`cb-${index}`} className='code-block-wrapper'>
<CodeBlock
code={token.text}
language={token.lang}
/>
</View>
)
} else {
currentTokens.push(token)
}
})
// Flush remaining tokens
if (currentTokens.length > 0) {
(currentTokens as any).links = (tokens as any).links
const html = marked.parser(currentTokens as any, { renderer, breaks: true })
result.push(<RichText key={`rt-end`} nodes={html} className='markdown-text' />)
}
return result
}, [content, themeColor])
return <View className='markdown-reader'>{elements}</View>
}
export default MarkdownReader

View File

@@ -48,9 +48,9 @@
.title { .title {
position: relative; position: relative;
font-size: 36px; /* Increased from 32px */ font-size: 42px; /* Increased from 36px */
font-weight: 800; font-weight: 800;
margin-bottom: 12px; margin-bottom: 16px;
color: #fff; color: #fff;
letter-spacing: -0.5px; letter-spacing: -0.5px;
text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-shadow: 0 2px 10px rgba(0,0,0,0.5);
@@ -67,8 +67,8 @@
.subtitle { .subtitle {
position: relative; position: relative;
color: #aaa; color: #aaa;
font-size: 17px; /* Increased from 16px */ font-size: 19px; /* Increased from 17px */
margin-bottom: 30px; margin-bottom: 36px;
font-weight: 500; font-weight: 500;
z-index: 1; z-index: 1;
} }
@@ -76,8 +76,8 @@
.search-box { .search-box {
position: relative; position: relative;
display: flex; display: flex;
gap: 12px; gap: 14px;
margin-bottom: 24px; margin-bottom: 28px;
z-index: 2; z-index: 2;
.at-search-bar { .at-search-bar {
@@ -90,9 +90,9 @@
.at-search-bar__input-cnt { .at-search-bar__input-cnt {
background-color: rgba(255, 255, 255, 0.08); background-color: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
border-radius: 26px; /* More rounded */ border-radius: 30px; /* More rounded */
transition: all 0.3s ease; transition: all 0.3s ease;
height: 48px; /* Taller touch target (from 44px) */ height: 56px; /* Taller touch target (from 48px) */
display: flex; display: flex;
align-items: center; align-items: center;
@@ -105,11 +105,11 @@
.at-search-bar__input { .at-search-bar__input {
color: #fff; color: #fff;
font-size: 17px; /* Larger input text (from 16px) */ font-size: 18px; /* Larger input text (from 17px) */
} }
.at-search-bar__placeholder { .at-search-bar__placeholder {
font-size: 16px; font-size: 17px;
} }
} }
@@ -117,9 +117,9 @@
background: linear-gradient(135deg, #00b96b 0%, #009456 100%); background: linear-gradient(135deg, #00b96b 0%, #009456 100%);
color: #fff; color: #fff;
border: none; border: none;
border-radius: 26px; border-radius: 30px;
padding: 0 24px; padding: 0 28px;
font-size: 16px; /* Larger button text */ font-size: 18px; /* Larger button text */
font-weight: 600; font-weight: 600;
display: flex; display: flex;
align-items: center; align-items: center;
@@ -135,10 +135,10 @@
} }
.section-container { .section-container {
margin: 0 16px 20px; margin: 0 16px 24px;
background: #1e1e1e; /* Card background */ background: #1e1e1e; /* Card background */
border-radius: 16px; border-radius: 20px;
padding: 16px; padding: 20px;
border: 1px solid rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
animation: fadeInUp 0.6s ease-out forwards; animation: fadeInUp 0.6s ease-out forwards;
@@ -146,13 +146,13 @@
.section-header { .section-header {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px; gap: 10px;
margin-bottom: 16px; margin-bottom: 20px;
padding-bottom: 12px; padding-bottom: 14px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
.section-title { .section-title {
font-size: 16px; font-size: 20px; /* Increased from 16px */
font-weight: 700; font-weight: 700;
color: #fff; color: #fff;
letter-spacing: 0.5px; letter-spacing: 0.5px;
@@ -160,19 +160,19 @@
} }
.announcement-swiper { .announcement-swiper {
height: 40px; height: 48px;
.announcement-item { .announcement-item {
height: 40px; height: 48px;
display: flex; display: flex;
align-items: center; align-items: center;
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
padding: 0 12px; padding: 0 16px;
border-radius: 8px; border-radius: 10px;
border-left: 3px solid #ff4d4f; border-left: 4px solid #ff4d4f;
.item-text { .item-text {
font-size: 14px; font-size: 16px; /* Increased from 14px */
color: #ddd; color: #ddd;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
@@ -184,17 +184,17 @@
.star-users-scroll { .star-users-scroll {
white-space: nowrap; white-space: nowrap;
width: 100%; width: 100%;
padding-bottom: 5px; /* Scrollbar space if visible */ padding-bottom: 8px; /* Scrollbar space if visible */
.star-user-card { .star-user-card {
display: inline-flex; display: inline-flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin-right: 16px; margin-right: 18px;
width: 80px; width: 90px;
background: rgba(255, 255, 255, 0.03); background: rgba(255, 255, 255, 0.03);
padding: 12px 8px; padding: 16px 10px;
border-radius: 12px; border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.05);
transition: transform 0.2s; transition: transform 0.2s;
@@ -203,32 +203,32 @@
} }
.user-avatar { .user-avatar {
width: 48px; width: 60px; /* Increased from 48px */
height: 48px; height: 60px;
border-radius: 50%; border-radius: 50%;
border: 2px solid #ffd700; border: 2px solid #ffd700;
margin-bottom: 8px; margin-bottom: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.3); box-shadow: 0 4px 8px rgba(0,0,0,0.3);
} }
.user-name { .user-name {
font-size: 12px; font-size: 14px; /* Increased from 12px */
font-weight: 600; font-weight: 600;
color: #eee; color: #eee;
max-width: 100%; max-width: 100%;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
margin-bottom: 2px; margin-bottom: 4px;
} }
.user-title { .user-title {
font-size: 10px; font-size: 12px; /* Increased from 10px */
color: #888; color: #888;
background: rgba(255, 215, 0, 0.1); background: rgba(255, 215, 0, 0.1);
color: #ffd700; color: #ffd700;
padding: 2px 6px; padding: 3px 8px;
border-radius: 4px; border-radius: 6px;
} }
} }
} }
@@ -236,8 +236,8 @@
.tabs-wrapper { .tabs-wrapper {
background-color: transparent; /* Changed from black */ background-color: transparent; /* Changed from black */
margin-bottom: 10px; margin-bottom: 16px;
padding: 0 10px; padding: 0 12px;
/* Override Taro UI default white background */ /* Override Taro UI default white background */
.at-tabs { .at-tabs {
@@ -253,37 +253,37 @@
.at-tabs__item { .at-tabs__item {
color: #888; color: #888;
font-size: 17px; /* Increased from 16px */ font-size: 18px; /* Increased from 17px */
padding: 14px 20px; /* Larger touch target */ padding: 16px 24px; /* Larger touch target */
transition: all 0.3s; transition: all 0.3s;
&--active { &--active {
color: #fff; /* White active text */ color: #fff; /* White active text */
font-weight: 700; font-weight: 700;
font-size: 20px; /* Increased from 19px */ font-size: 22px; /* Increased from 20px */
text-shadow: 0 0 10px rgba(0, 185, 107, 0.4); text-shadow: 0 0 10px rgba(0, 185, 107, 0.4);
} }
} }
.at-tabs__item-underline { .at-tabs__item-underline {
background-color: #00b96b; background-color: #00b96b;
height: 4px; /* Slightly thicker */ height: 5px; /* Slightly thicker */
border-radius: 2px; border-radius: 3px;
bottom: 5px; bottom: 6px;
width: 28px !important; /* Short underline style */ width: 32px !important; /* Short underline style */
margin-left: calc(50% - 14px); /* Center specific width underline */ margin-left: calc(50% - 16px); /* Center specific width underline */
} }
} }
.topic-list { .topic-list {
padding: 10px 16px; padding: 12px 18px;
.topic-card { .topic-card {
background: #1e1e1e; background: #1e1e1e;
border: 1px solid rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
border-radius: 16px; border-radius: 20px;
padding: 24px; /* Increased from 20px */ padding: 28px; /* Increased from 24px */
margin-bottom: 24px; /* Increased spacing */ margin-bottom: 28px; /* Increased spacing */
position: relative; position: relative;
box-shadow: 0 4px 12px rgba(0,0,0,0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.2);
transition: transform 0.2s, box-shadow 0.2s; transition: transform 0.2s, box-shadow 0.2s;
@@ -311,13 +311,13 @@
display: flex; display: flex;
align-items: center; align-items: center;
flex-wrap: wrap; flex-wrap: wrap;
gap: 10px; gap: 12px;
margin-bottom: 14px; margin-bottom: 18px;
.tag { .tag {
font-size: 12px; /* Slightly larger */ font-size: 14px; /* Slightly larger */
padding: 4px 10px; padding: 6px 12px;
border-radius: 6px; border-radius: 8px;
font-weight: 600; font-weight: 600;
background: rgba(255,255,255,0.1); background: rgba(255,255,255,0.1);
color: #aaa; color: #aaa;
@@ -336,19 +336,19 @@
} }
.card-title { .card-title {
font-size: 22px; /* Increased from 19px */ font-size: 26px; /* Increased from 22px */
font-weight: 700; font-weight: 700;
color: #fff; color: #fff;
flex: 1; flex: 1;
line-height: 1.4; line-height: 1.5;
} }
} }
.card-content { .card-content {
font-size: 17px; /* Increased from 15px */ font-size: 19px; /* Increased from 17px */
color: #ccc; /* Slightly brighter for better contrast */ color: #ccc; /* Slightly brighter for better contrast */
margin-bottom: 20px; margin-bottom: 24px;
line-height: 1.7; line-height: 1.8;
display: -webkit-box; display: -webkit-box;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* Show 3 lines */ -webkit-line-clamp: 3; /* Show 3 lines */
@@ -356,13 +356,13 @@
} }
.card-image { .card-image {
margin-bottom: 20px; margin-bottom: 24px;
border-radius: 12px; border-radius: 16px;
overflow: hidden; overflow: hidden;
image { image {
width: 100%; width: 100%;
max-height: 220px; /* Taller image preview */ max-height: 240px; /* Taller image preview */
object-fit: cover; object-fit: cover;
display: block; /* Remove inline spacing */ display: block; /* Remove inline spacing */
} }
@@ -372,19 +372,19 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
font-size: 14px; /* Increased from 13px */ font-size: 15px; /* Increased from 14px */
color: #888; color: #888;
padding-top: 16px; padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.05);
.author-info { .author-info {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 10px; gap: 12px;
.avatar { .avatar {
width: 40px; /* Larger avatar */ width: 48px; /* Larger avatar */
height: 40px; height: 48px;
border-radius: 50%; border-radius: 50%;
border: 1px solid rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
} }
@@ -402,16 +402,16 @@
.stats { .stats {
display: flex; display: flex;
gap: 20px; gap: 24px;
.stat-item { .stat-item {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 6px; gap: 8px;
.at-icon { .at-icon {
font-size: 18px; font-size: 20px;
margin-right: 0; margin-right: 0;
} }
} }
} }
@@ -421,25 +421,25 @@
.empty-state { .empty-state {
text-align: center; text-align: center;
padding: 60px 20px; padding: 80px 20px;
color: #666; color: #666;
font-size: 14px; font-size: 16px;
&::before { &::before {
content: '📭'; /* Simple icon */ content: '📭'; /* Simple icon */
display: block; display: block;
font-size: 40px; font-size: 50px;
margin-bottom: 10px; margin-bottom: 12px;
opacity: 0.5; opacity: 0.5;
} }
} }
.fab { .fab {
position: fixed; position: fixed;
right: 24px; right: 30px;
bottom: 50px; bottom: 60px;
width: 56px; width: 64px;
height: 56px; height: 64px;
background: linear-gradient(135deg, #00b96b 0%, #009456 100%); background: linear-gradient(135deg, #00b96b 0%, #009456 100%);
border-radius: 50%; border-radius: 50%;
display: flex; display: flex;
@@ -477,11 +477,11 @@
.layout-header { .layout-header {
background-color: #15191f; background-color: #15191f;
border-bottom: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding: 18px 24px; padding: 20px 28px;
.layout-header__title { .layout-header__title {
color: #00b96b; /* Tech green */ color: #00b96b; /* Tech green */
font-size: 18px; font-size: 20px; /* Increased from 18px */
font-weight: 700; font-weight: 700;
letter-spacing: 1px; letter-spacing: 1px;
text-shadow: 0 0 10px rgba(0, 185, 107, 0.3); text-shadow: 0 0 10px rgba(0, 185, 107, 0.3);
@@ -500,7 +500,7 @@
} }
.expert-modal-content { .expert-modal-content {
padding: 30px 24px 60px; padding: 36px 28px 70px;
color: #fff; color: #fff;
background: radial-gradient(circle at 50% 10%, rgba(0, 185, 107, 0.08), transparent 60%); background: radial-gradient(circle at 50% 10%, rgba(0, 185, 107, 0.08), transparent 60%);
@@ -508,16 +508,16 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin-bottom: 36px; margin-bottom: 40px;
position: relative; position: relative;
.avatar-container { .avatar-container {
position: relative; position: relative;
margin-bottom: 24px; margin-bottom: 28px;
.expert-avatar { .expert-avatar {
width: 100px; width: 120px; /* Increased from 100px */
height: 100px; height: 120px;
border-radius: 50%; border-radius: 50%;
border: 2px solid #ffd700; /* Gold for expert */ border: 2px solid #ffd700; /* Gold for expert */
box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), inset 0 0 10px rgba(255, 215, 0, 0.2); box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), inset 0 0 10px rgba(255, 215, 0, 0.2);
@@ -527,7 +527,7 @@
.avatar-ring { .avatar-ring {
position: absolute; position: absolute;
top: -12px; left: -12px; right: -12px; bottom: -12px; top: -14px; left: -14px; right: -14px; bottom: -14px;
border-radius: 50%; border-radius: 50%;
border: 1px dashed rgba(255, 215, 0, 0.5); border: 1px dashed rgba(255, 215, 0, 0.5);
animation: spin 12s linear infinite; animation: spin 12s linear infinite;
@@ -536,7 +536,7 @@
&::after { &::after {
content: ''; content: '';
position: absolute; position: absolute;
top: -6px; left: -6px; right: -6px; bottom: -6px; top: -8px; left: -8px; right: -8px; bottom: -8px;
border-radius: 50%; border-radius: 50%;
border: 1px solid rgba(0, 185, 107, 0.3); /* Outer green ring */ border: 1px solid rgba(0, 185, 107, 0.3); /* Outer green ring */
animation: spin 8s reverse linear infinite; animation: spin 8s reverse linear infinite;
@@ -548,10 +548,10 @@
text-align: center; text-align: center;
.expert-name { .expert-name {
font-size: 26px; font-size: 30px; /* Increased from 26px */
font-weight: 800; font-weight: 800;
color: #fff; color: #fff;
margin-bottom: 12px; margin-bottom: 14px;
text-shadow: 0 0 15px rgba(0, 185, 107, 0.5); text-shadow: 0 0 15px rgba(0, 185, 107, 0.5);
letter-spacing: 0.5px; letter-spacing: 0.5px;
} }
@@ -559,10 +559,10 @@
.expert-title-badge { .expert-title-badge {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
gap: 8px; gap: 10px;
background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05)); background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
padding: 6px 16px; padding: 8px 20px;
border-radius: 20px; border-radius: 24px;
border: 1px solid rgba(255, 215, 0, 0.4); border: 1px solid rgba(255, 215, 0, 0.4);
box-shadow: 0 0 15px rgba(255, 215, 0, 0.15); box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
@@ -571,7 +571,7 @@
} }
text { text {
font-size: 14px; font-size: 16px; /* Increased from 14px */
color: #ffd700; color: #ffd700;
font-weight: 700; font-weight: 700;
letter-spacing: 1px; letter-spacing: 1px;
@@ -581,10 +581,10 @@
} }
.expert-skills-section { .expert-skills-section {
margin-bottom: 30px; margin-bottom: 36px;
background: rgba(255, 255, 255, 0.02); background: rgba(255, 255, 255, 0.02);
border-radius: 20px; border-radius: 24px;
padding: 24px; padding: 28px;
border: 1px solid rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
@@ -594,9 +594,9 @@
content: ''; content: '';
position: absolute; position: absolute;
top: 0; left: 0; top: 0; left: 0;
width: 10px; height: 10px; width: 12px; height: 12px;
border-top: 2px solid #00b96b; border-top: 3px solid #00b96b;
border-left: 2px solid #00b96b; border-left: 3px solid #00b96b;
border-radius: 4px 0 0 0; border-radius: 4px 0 0 0;
} }
@@ -604,22 +604,22 @@
content: ''; content: '';
position: absolute; position: absolute;
bottom: 0; right: 0; bottom: 0; right: 0;
width: 10px; height: 10px; width: 12px; height: 12px;
border-bottom: 2px solid #00b96b; border-bottom: 3px solid #00b96b;
border-right: 2px solid #00b96b; border-right: 3px solid #00b96b;
border-radius: 0 0 4px 0; border-radius: 0 0 4px 0;
} }
.section-label { .section-label {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 20px; margin-bottom: 24px;
.label-text { .label-text {
font-size: 15px; font-size: 17px; /* Increased from 15px */
font-weight: 700; font-weight: 700;
color: #00b96b; color: #00b96b;
margin-right: 12px; margin-right: 14px;
text-transform: uppercase; text-transform: uppercase;
letter-spacing: 1px; letter-spacing: 1px;
} }
@@ -635,14 +635,14 @@
.skills-grid { .skills-grid {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 12px; gap: 14px;
.skill-tag { .skill-tag {
display: flex; display: flex;
align-items: center; align-items: center;
background: rgba(0, 185, 107, 0.08); background: rgba(0, 185, 107, 0.08);
padding: 8px 16px; padding: 10px 20px;
border-radius: 6px; border-radius: 8px;
border: 1px solid rgba(0, 185, 107, 0.25); border: 1px solid rgba(0, 185, 107, 0.25);
transition: all 0.3s; transition: all 0.3s;
position: relative; position: relative;
@@ -652,7 +652,7 @@
&::before { &::before {
content: ''; content: '';
position: absolute; position: absolute;
top: 0; left: 0; width: 3px; height: 100%; top: 0; left: 0; width: 4px; height: 100%;
background: #00b96b; background: #00b96b;
opacity: 0.6; opacity: 0.6;
} }
@@ -664,14 +664,14 @@
} }
.skill-icon { .skill-icon {
width: 20px; width: 24px; /* Increased from 20px */
height: 20px; height: 24px;
margin-right: 8px; margin-right: 10px;
filter: drop-shadow(0 0 2px rgba(0,0,0,0.5)); filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
} }
.skill-text { .skill-text {
font-size: 13px; font-size: 15px; /* Increased from 13px */
color: #e0e0e0; color: #e0e0e0;
font-weight: 500; font-weight: 500;
letter-spacing: 0.5px; letter-spacing: 0.5px;

View File

@@ -1,3 +1,5 @@
export default definePageConfig({ export default definePageConfig({
navigationBarTitleText: '个人中心' navigationBarTitleText: '个人中心',
enablePullDownRefresh: true,
backgroundTextStyle: 'dark'
}) })

View File

@@ -80,6 +80,58 @@
margin-bottom: 8px; margin-bottom: 8px;
text-shadow: 0 0 10px rgba(0,0,0,0.5); text-shadow: 0 0 10px rgba(0,0,0,0.5);
} }
.badges-row {
display: flex;
gap: 10px;
margin-bottom: 12px;
flex-wrap: wrap;
.badge {
display: flex;
align-items: center;
padding: 4px 16px;
border-radius: 20px;
font-size: 20px;
font-weight: bold;
backdrop-filter: blur(5px);
.badge-icon { margin-right: 6px; font-size: 22px; }
&.star {
background: rgba(255, 215, 0, 0.15);
border: 1px solid rgba(255, 215, 0, 0.6);
color: #ffd700;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}
&.admin {
background: rgba(255, 71, 87, 0.15);
border: 1px solid rgba(255, 71, 87, 0.6);
color: #ff4757;
box-shadow: 0 0 15px rgba(255, 71, 87, 0.1);
}
&.web {
transition: all 0.3s ease;
&.active {
background: rgba(30, 144, 255, 0.15);
border: 1px solid rgba(30, 144, 255, 0.6);
color: #1e90ff;
box-shadow: 0 0 15px rgba(30, 144, 255, 0.1);
}
&.disabled {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #666;
filter: grayscale(1);
opacity: 0.7;
}
}
}
}
.uid { .uid {
font-size: 24px; font-size: 24px;

View File

@@ -1,6 +1,7 @@
import { View, Text, Image, Button, Checkbox, CheckboxGroup, RichText } from '@tarojs/components' import { View, Text, Image, Button, Checkbox, CheckboxGroup, RichText } from '@tarojs/components'
import Taro, { useDidShow } from '@tarojs/taro' import Taro, { useDidShow, usePullDownRefresh } from '@tarojs/taro'
import { useState } from 'react' import { useState } from 'react'
import { login as silentLogin } from '../../utils/request'
import './index.scss' import './index.scss'
export default function UserIndex() { export default function UserIndex() {
@@ -14,6 +15,19 @@ export default function UserIndex() {
if (info) setUserInfo(info) if (info) setUserInfo(info)
}) })
usePullDownRefresh(async () => {
try {
const res = await silentLogin()
if (res) {
setUserInfo(res)
}
Taro.stopPullDownRefresh()
} catch (e) {
Taro.stopPullDownRefresh()
Taro.showToast({ title: '刷新失败', icon: 'none' })
}
})
const goOrders = () => Taro.navigateTo({ url: '/pages/order/list' }) const goOrders = () => Taro.navigateTo({ url: '/pages/order/list' })
const goDistributor = () => Taro.navigateTo({ url: '/subpackages/distributor/index' }) const goDistributor = () => Taro.navigateTo({ url: '/subpackages/distributor/index' })
const goInvite = () => Taro.navigateTo({ url: '/subpackages/distributor/invite' }) const goInvite = () => Taro.navigateTo({ url: '/subpackages/distributor/invite' })
@@ -296,6 +310,33 @@ export default function UserIndex() {
</View> </View>
<View className='info-col'> <View className='info-col'>
<Text className='nickname' onClick={handleNicknameClick}>{userInfo?.nickname || '未登录用户'}</Text> <Text className='nickname' onClick={handleNicknameClick}>{userInfo?.nickname || '未登录用户'}</Text>
{userInfo && (
<View className='badges-row'>
{/* 明星技术用户 */}
{userInfo.is_star && (
<View className='badge star'>
<Text className='badge-icon'>🌟</Text>
<Text className='badge-text'></Text>
</View>
)}
{/* 管理员 */}
{userInfo.is_admin && (
<View className='badge admin'>
<Text className='badge-icon'>🛡</Text>
<Text className='badge-text'></Text>
</View>
)}
{/* 网页用户 */}
<View className={`badge web ${userInfo.has_web_account ? 'active' : 'disabled'}`}>
<Text className='badge-icon'>🌐</Text>
<Text className='badge-text'></Text>
</View>
</View>
)}
<Text className='uid'>ID: {userInfo ? (userInfo.phone_number || userInfo.id || '----') : '----'}</Text> <Text className='uid'>ID: {userInfo ? (userInfo.phone_number || userInfo.id || '----') : '----'}</Text>
{!userInfo && ( {!userInfo && (
<View className='login-btns'> <View className='login-btns'>

View File

@@ -1,9 +1,9 @@
import React, { useState, useEffect } from 'react' import React, { useState, useEffect } from 'react'
import Taro, { useRouter, useShareAppMessage, useShareTimeline, useDidShow } from '@tarojs/taro' import Taro, { useRouter, useShareAppMessage, useShareTimeline, useDidShow } from '@tarojs/taro'
import { View, Text, Image, Button, RichText, Picker } from '@tarojs/components' import { View, Text, Image, Button, Picker } from '@tarojs/components'
import { AtIcon, AtProgress, AtModal, AtModalHeader, AtModalContent, AtModalAction, AtInput, AtTextarea, AtRadio, AtCheckbox } from 'taro-ui' import { AtIcon, AtModal, AtModalHeader, AtModalContent, AtModalAction, AtInput, AtTextarea, AtRadio, AtCheckbox } from 'taro-ui'
import { getActivityDetail, signupActivity } from '../../../api' import { getActivityDetail, signupActivity } from '../../../api'
import { marked } from 'marked' import MarkdownReader from '../../../components/MarkdownReader'
import './detail.scss' import './detail.scss'
const ActivityDetail = () => { const ActivityDetail = () => {
@@ -13,7 +13,6 @@ const ActivityDetail = () => {
const [activity, setActivity] = useState<any>(null) const [activity, setActivity] = useState<any>(null)
const [loading, setLoading] = useState(true) const [loading, setLoading] = useState(true)
const [submitting, setSubmitting] = useState(false) const [submitting, setSubmitting] = useState(false)
const [htmlContent, setHtmlContent] = useState('')
const [signupPercentage, setSignupPercentage] = useState(0) const [signupPercentage, setSignupPercentage] = useState(0)
// Signup Form State // Signup Form State
@@ -51,11 +50,6 @@ const ActivityDetail = () => {
const percent = Math.min(100, Math.round((data.current_signups || 0) / data.max_participants * 100)) const percent = Math.min(100, Math.round((data.current_signups || 0) / data.max_participants * 100))
setSignupPercentage(percent) setSignupPercentage(percent)
} }
if (data.description) {
const html = marked.parse(data.description)
setHtmlContent((html as string).replace(/<img/g, '<img style="max-width:100%;border-radius:8px;"'))
}
} catch (error) { } catch (error) {
console.error(error) console.error(error)
Taro.showToast({ title: '加载失败', icon: 'none' }) Taro.showToast({ title: '加载失败', icon: 'none' })
@@ -130,8 +124,11 @@ const ActivityDetail = () => {
const handleModalConfirm = () => { const handleModalConfirm = () => {
// Validate // Validate
if (activity.signup_form_config) { if (activity.signup_form_config && Array.isArray(activity.signup_form_config)) {
for (const field of activity.signup_form_config) { for (const field of activity.signup_form_config) {
// Defensive programming: skip invalid fields
if (!field || typeof field !== 'object') continue
if (field.required && !formData[field.name]) { if (field.required && !formData[field.name]) {
Taro.showToast({ title: `请填写${field.label}`, icon: 'none' }) Taro.showToast({ title: `请填写${field.label}`, icon: 'none' })
return return
@@ -233,7 +230,7 @@ const ActivityDetail = () => {
<View className='line' /> <View className='line' />
</View> </View>
<View className='rich-text-wrapper'> <View className='rich-text-wrapper'>
<RichText nodes={htmlContent} /> <MarkdownReader content={activity.description} themeColor='#00f0ff' />
</View> </View>
</View> </View>
</View> </View>
@@ -270,7 +267,10 @@ const ActivityDetail = () => {
<AtModalHeader></AtModalHeader> <AtModalHeader></AtModalHeader>
<AtModalContent> <AtModalContent>
<View className='signup-form'> <View className='signup-form'>
{activity.signup_form_config && activity.signup_form_config.map((field, idx) => { {activity.signup_form_config && Array.isArray(activity.signup_form_config) && activity.signup_form_config.map((field, idx) => {
// Defensive programming: skip invalid fields or known bad data
if (!field || typeof field !== 'object' || field.label === '自定义报名配置') return null
if (field.type === 'select') { if (field.type === 'select') {
const currentOption = field.options?.find(opt => opt.value === formData[field.name]) const currentOption = field.options?.find(opt => opt.value === formData[field.name])
return ( return (
@@ -375,4 +375,4 @@ const ActivityDetail = () => {
) )
} }
export default ActivityDetail export default ActivityDetail

View File

@@ -1,9 +1,9 @@
import React, { useState, useEffect } from 'react' import React, { useState, useEffect } from 'react'
import Taro, { useRouter, useShareAppMessage, useDidShow } from '@tarojs/taro' import Taro, { useRouter, useShareAppMessage, useDidShow } from '@tarojs/taro'
import { View, Text, Image, Video, RichText, Input, ScrollView } from '@tarojs/components' import { View, Text, Image, Video, Input, ScrollView } from '@tarojs/components'
import { AtActivityIndicator, AtIcon, AtActionSheet, AtActionSheetItem, AtFloatLayout } from 'taro-ui' import { AtActivityIndicator, AtIcon, AtActionSheet, AtActionSheetItem, AtFloatLayout } from 'taro-ui'
import { getTopicDetail, createReply, uploadMedia, getStarUsers } from '../../../api' import { getTopicDetail, createReply, uploadMedia, getStarUsers } from '../../../api'
import { marked } from 'marked' import MarkdownReader from '../../../components/MarkdownReader'
import './detail.scss' import './detail.scss'
const ForumDetail = () => { const ForumDetail = () => {
@@ -14,7 +14,6 @@ const ForumDetail = () => {
const [loading, setLoading] = useState(true) const [loading, setLoading] = useState(true)
const [replyContent, setReplyContent] = useState('') const [replyContent, setReplyContent] = useState('')
const [sending, setSending] = useState(false) const [sending, setSending] = useState(false)
const [htmlContent, setHtmlContent] = useState('')
const [userInfo, setUserInfo] = useState<any>(null) const [userInfo, setUserInfo] = useState<any>(null)
// Star Users & Mention // Star Users & Mention
@@ -30,14 +29,6 @@ const ForumDetail = () => {
const res = await getTopicDetail(Number(id)) const res = await getTopicDetail(Number(id))
const topicData = res.data || res const topicData = res.data || res
setTopic(topicData) setTopic(topicData)
// Parse markdown
if (topicData.content) {
const html = marked.parse(topicData.content)
// Basic fix for images to fit screen
const styledHtml = (html as string).replace(/<img/g, '<img style="max-width:100%;border-radius:8px;"')
setHtmlContent(styledHtml)
}
} catch (error) { } catch (error) {
console.error(error) console.error(error)
Taro.showToast({ title: '加载失败', icon: 'none' }) Taro.showToast({ title: '加载失败', icon: 'none' })
@@ -207,7 +198,7 @@ const ForumDetail = () => {
</View> </View>
<View className='content'> <View className='content'>
<RichText nodes={htmlContent} /> <MarkdownReader content={topic.content} />
</View> </View>
{topic.media && topic.media.length > 0 && ( {topic.media && topic.media.length > 0 && (
@@ -244,8 +235,7 @@ const ForumDetail = () => {
</View> </View>
</View> </View>
<View className='reply-content'> <View className='reply-content'>
{/* Simple markdown render for replies or just text if complex */} <MarkdownReader content={reply.content} />
<RichText nodes={marked.parse(reply.content) as string} />
</View> </View>
</View> </View>
</View> </View>

View File

@@ -63,7 +63,7 @@ export const login = async () => {
if (res.statusCode === 200 && res.data.token) { if (res.statusCode === 200 && res.data.token) {
Taro.setStorageSync('token', res.data.token) Taro.setStorageSync('token', res.data.token)
Taro.setStorageSync('openid', res.data.openid) Taro.setStorageSync('openid', res.data.openid)
// Save other info if needed Taro.setStorageSync('userInfo', res.data)
return res.data return res.data
} else { } else {
throw new Error(res.data.error || 'Login failed') throw new Error(res.data.error || 'Login failed')