import React, { useEffect, useState } from 'react'; import { Card } from 'semantic-ui-react'; import { API, showError } from '../../helpers'; import { marked } from 'marked'; const About = () => { const [about, setAbout] = useState(''); const [aboutLoaded, setAboutLoaded] = useState(false); // ... 其他函数保持不变 ... return (
关于系统 {aboutLoaded && about === '' ? ( <>

可在设置页面设置关于内容,支持 HTML & Markdown

项目仓库地址: https://github.com/songquanpeng/one-api ) : ( <> {about.startsWith('https://') ? (