Files
uni-fans-score/constants/help.js
2025-10-30 15:41:25 +08:00

39 lines
824 B
JavaScript

// 帮助中心文案配置
export const HELP_CONTENT = {
// FAQ列表(存储翻译键,由组件动态翻译)
FAQ_LIST: [
{
question: 'help.faq1Question',
answer: 'help.faq1Answer'
},
{
question: 'help.faq2Question',
answer: 'help.faq2Answer'
},
{
question: 'help.faq3Question',
answer: 'help.faq3Answer'
},
{
question: 'help.faq4Question',
answer: 'help.faq4Answer'
},
{
question: 'help.faq5Question',
answer: 'help.faq5Answer'
}
],
// 联系方式
CONTACT: {
TITLE: '联系客服',
PHONE: {
LABEL: '客服电话',
VALUE: '400-077-6018'
},
SERVICE_TIME: {
LABEL: '服务时间',
VALUE: '周一至周日 09:00-22:00'
}
}
}