初始提交:彩票推测系统前端代码
30
.gitignore
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
.DS_Store
|
||||
dist
|
||||
dist-ssr
|
||||
coverage
|
||||
*.local
|
||||
|
||||
/cypress/videos/
|
||||
/cypress/screenshots/
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
*.tsbuildinfo
|
||||
3
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"recommendations": ["Vue.volar"]
|
||||
}
|
||||
195
DEPLOY.md
Normal file
@@ -0,0 +1,195 @@
|
||||
# 部署说明文档
|
||||
|
||||
## 🚀 打包部署流程
|
||||
|
||||
### 1. 打包前准备
|
||||
|
||||
确保已安装依赖:
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
### 2. 执行打包
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
打包完成后,会在项目根目录生成 `dist` 文件夹。
|
||||
|
||||
### 3. 缓存控制策略
|
||||
|
||||
本项目已配置完善的缓存控制策略,避免浏览器缓存导致更新不生效:
|
||||
|
||||
#### ✅ 已配置的缓存方案
|
||||
|
||||
1. **文件名 Hash 化**(`vite.config.js` 已配置)
|
||||
- 所有 JS、CSS、图片等资源文件名都会带上 hash 值
|
||||
- 例如:`index.a1b2c3d4.js`、`style.e5f6g7h8.css`
|
||||
- 每次构建后,修改过的文件 hash 会变化,自动避免缓存
|
||||
|
||||
2. **HTML 文件不缓存**
|
||||
- `index.html` 设置为不缓存,每次都会获取最新版本
|
||||
- 通过服务器配置实现(见下方)
|
||||
|
||||
#### 📝 服务器配置
|
||||
|
||||
##### Apache 服务器(使用 .htaccess)
|
||||
|
||||
项目已包含 `public/.htaccess` 文件,打包后会自动复制到 `dist` 目录。
|
||||
|
||||
##### Nginx 服务器
|
||||
|
||||
参考项目根目录的 `nginx.conf.example` 文件,配置说明:
|
||||
|
||||
```nginx
|
||||
# HTML 文件不缓存
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
||||
}
|
||||
|
||||
# 静态资源长期缓存
|
||||
location ~* \.(js|css|png|jpg|jpeg|gif|svg|ico|woff|woff2|ttf|eot)$ {
|
||||
expires 1y;
|
||||
add_header Cache-Control "public, immutable";
|
||||
}
|
||||
```
|
||||
|
||||
### 4. 部署步骤
|
||||
|
||||
#### 方法一:手动部署
|
||||
|
||||
1. 将 `dist` 目录下的所有文件上传到服务器
|
||||
2. 配置服务器(Apache 或 Nginx)
|
||||
3. 重启服务器
|
||||
|
||||
#### 方法二:使用 FTP/SFTP
|
||||
|
||||
```bash
|
||||
# 上传 dist 目录到服务器
|
||||
scp -r dist/* user@your-server:/var/www/html/
|
||||
```
|
||||
|
||||
#### 方法三:使用 Docker(可选)
|
||||
|
||||
创建 `Dockerfile`:
|
||||
```dockerfile
|
||||
FROM nginx:alpine
|
||||
COPY dist /usr/share/nginx/html
|
||||
COPY nginx.conf.example /etc/nginx/conf.d/default.conf
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
```
|
||||
|
||||
### 5. 更新部署注意事项
|
||||
|
||||
#### ⚠️ 每次更新部署时:
|
||||
|
||||
1. **清理旧文件**
|
||||
```bash
|
||||
# 删除服务器上的旧文件
|
||||
rm -rf /var/www/html/*
|
||||
```
|
||||
|
||||
2. **上传新文件**
|
||||
```bash
|
||||
# 上传新的 dist 文件
|
||||
scp -r dist/* user@your-server:/var/www/html/
|
||||
```
|
||||
|
||||
3. **清理服务器缓存**(如果使用了缓存服务器)
|
||||
```bash
|
||||
# Nginx
|
||||
nginx -s reload
|
||||
|
||||
# Apache
|
||||
systemctl reload apache2
|
||||
```
|
||||
|
||||
4. **通知用户清理浏览器缓存**(可选)
|
||||
- 可以在系统中添加版本提示
|
||||
- 或者使用 Service Worker 强制更新
|
||||
|
||||
### 6. 验证部署
|
||||
|
||||
部署完成后,验证步骤:
|
||||
|
||||
1. **清除浏览器缓存**
|
||||
- Chrome: `Ctrl + Shift + Delete` 或 `Cmd + Shift + Delete`
|
||||
- 或使用隐身模式访问
|
||||
|
||||
2. **检查文件版本**
|
||||
- 打开浏览器开发者工具(F12)
|
||||
- 查看 Network 标签
|
||||
- 确认 JS/CSS 文件名带有新的 hash 值
|
||||
|
||||
3. **检查 HTML 缓存**
|
||||
- 查看 `index.html` 的响应头
|
||||
- 确认 `Cache-Control: no-cache`
|
||||
|
||||
### 7. 常见问题
|
||||
|
||||
#### Q1: 用户反馈看到的还是旧版本?
|
||||
|
||||
**解决方案:**
|
||||
1. 确认服务器配置正确(.htaccess 或 nginx 配置)
|
||||
2. 清理 CDN 缓存(如果使用了 CDN)
|
||||
3. 通知用户强制刷新(Ctrl + F5 或 Cmd + Shift + R)
|
||||
|
||||
#### Q2: 静态资源 404 错误?
|
||||
|
||||
**解决方案:**
|
||||
1. 检查资源路径配置
|
||||
2. 确认 `vite.config.js` 中的 `base` 配置正确
|
||||
3. 检查服务器的静态文件路径
|
||||
|
||||
#### Q3: SPA 路由刷新 404?
|
||||
|
||||
**解决方案:**
|
||||
- Apache: 确保 `.htaccess` 中的 rewrite 规则生效
|
||||
- Nginx: 确保配置了 `try_files $uri $uri/ /index.html;`
|
||||
|
||||
### 8. 自动化部署(可选)
|
||||
|
||||
#### 使用 GitHub Actions
|
||||
|
||||
创建 `.github/workflows/deploy.yml`:
|
||||
|
||||
```yaml
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Deploy to server
|
||||
uses: easingthemes/ssh-deploy@main
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
|
||||
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
|
||||
REMOTE_USER: ${{ secrets.REMOTE_USER }}
|
||||
TARGET: /var/www/html/
|
||||
```
|
||||
|
||||
### 9. 性能优化建议
|
||||
|
||||
1. **启用 Gzip/Brotli 压缩**
|
||||
2. **使用 CDN 加速静态资源**
|
||||
3. **配置 HTTP/2**
|
||||
4. **启用 HTTPS**
|
||||
|
||||
## 📞 技术支持
|
||||
|
||||
如有部署问题,请联系技术团队。
|
||||
|
||||
|
||||
155
Home步骤 - 副本.md
Normal file
@@ -0,0 +1,155 @@
|
||||
现在大乐透也开放了,预测流程由双色球的5步(推测准备、推测首球、推测随球、推测蓝球、确认结果)变为6步(推测准备、推测前区首球、推测前区随球、推测后区首球、推测前区随球、确认结果)。推测准备(第一步)这一页和双色球的流程一样,只不过是上期红球号码,变为了上期前区号码,上期蓝球号码,变成了上次后区号码,仅10期开奖号码是通过GET http://localhost:8123/api/dlt-draw/recent-10-draw-ids这个接口获取,根据期号获取中奖号码的接口路径是GET http://localhost:8123/api/dlt-draw/draw/{{drawId}}/numbers,响应示例为
|
||||
|
||||
{
|
||||
"code": 0,
|
||||
"success": true,
|
||||
"message": "操作成功",
|
||||
"data": [
|
||||
1,
|
||||
7,
|
||||
9,
|
||||
16,
|
||||
30,
|
||||
2,
|
||||
5
|
||||
]
|
||||
}
|
||||
|
||||
然后点击继续,调用这个接口POST http://localhost:8123/api/dlt/ball-analysis/predict-first-ball,入参为
|
||||
|
||||
```
|
||||
public class FirstBallPredictionRequest {
|
||||
private String level; high/middle/low:高位/中位/低位
|
||||
private List<Integer> redBalls; 5个前区号码
|
||||
private List<Integer> blueBalls; 2个后期号码
|
||||
}
|
||||
```
|
||||
|
||||
响应示例为
|
||||
|
||||
```
|
||||
{
|
||||
"code": 0,
|
||||
"success": true,
|
||||
"message": "操作成功",
|
||||
"data": [
|
||||
29,
|
||||
20,
|
||||
22,
|
||||
33,
|
||||
35,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
11,
|
||||
30
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
然后进入第二步,解析出12个球号作为推荐的12个前区球号,
|
||||
|
||||
第二步的布局和双色球的的一样,先选择1个球号,在选择2个球号。然后拿上一步选择的位(high/middle/low)+ 3个号码(第二步选择的) + 5个号码(第一步的5个上期前区) + 2个号码(第一步的2个上期后区)去调用接口:POST http://localhost:8123/api/dlt/ball-analysis/predict-follower-ball
|
||||
|
||||
入参为:
|
||||
|
||||
```
|
||||
@Data
|
||||
public class FollowerBallPredictionRequest {
|
||||
private String level;
|
||||
private List<Integer> wellRegardedBalls;
|
||||
private List<Integer> previousFrontBalls;
|
||||
private List<Integer> previousBackBalls;
|
||||
}
|
||||
```
|
||||
|
||||
响应示例为
|
||||
|
||||
```
|
||||
{
|
||||
"code": 0,
|
||||
"success": true,
|
||||
"message": "操作成功",
|
||||
"data": [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
35,
|
||||
29
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
然后进入第三步,解析出8个球号作为推荐的8个前区球号,
|
||||
|
||||
先选择4个前区球号,再选择2个后区球号。然后拿第一步选择的位(high/middle/low)+ 5个号码(第二步选择的首球球号+这一步选择的4个球号)+ 5个号码(第一步选择5个上期前区球号) + 2个号码(第一步选择的2个上期后区球号)+ 2个号码(这一步选择的2个下期后区)。去调用接口:POST http://localhost:8123/api/dlt/ball-analysis/predict-back-ball
|
||||
|
||||
入参为
|
||||
|
||||
```
|
||||
{
|
||||
"level": "high",
|
||||
"nextFrontBalls": [1,2,3,4,5],
|
||||
"previousFrontBalls": [1,2,3,4,5],
|
||||
"previousBackBalls": [6,7],
|
||||
"nextBackBalls": [8,9]
|
||||
}
|
||||
```
|
||||
|
||||
响应为
|
||||
|
||||
```
|
||||
{
|
||||
"code": 0,
|
||||
"success": true,
|
||||
"message": "操作成功",
|
||||
"data": [
|
||||
1,
|
||||
2,
|
||||
9,
|
||||
7
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
然后进入第四步,解析出4个球号作为推荐的4个后区球号,
|
||||
|
||||
选择一个推荐的后区首球。然后拿第一步选择的位(high/middle/low)+ 1个号码(这一步选择的一个后区首球)+ 5个号码(第二步选择的前区首球球号+第三步选择的4个前区随球)+ 5个号码(第一步选择5个上期前区球号) + 2个号码(第一步选择的2个上期后区球号)。去调用接口:POST http://localhost:8123/api/dlt/ball-analysis/predict-follow-back-ball
|
||||
|
||||
入参
|
||||
|
||||
```
|
||||
{
|
||||
"level": "high",
|
||||
"backFirstBall": 6,
|
||||
"nextFrontBalls": [1,2,3,4,5],
|
||||
"previousFrontBalls": [1,2,3,4,5],
|
||||
"previousBackBalls": [6,7]
|
||||
}
|
||||
```
|
||||
|
||||
响应示例为
|
||||
|
||||
```
|
||||
{
|
||||
"code": 0,
|
||||
"success": true,
|
||||
"message": "操作成功",
|
||||
"data": [
|
||||
1,
|
||||
3,
|
||||
5
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
然后进入第五步,解析出3个球号作为推荐的3个后区球号,
|
||||
|
||||
选择一个推荐的后区随球,点击继续,进入下一步。
|
||||
|
||||
第六步:确认推测,这一步跟双色球的第五步一样。
|
||||
134
README.md
Normal file
@@ -0,0 +1,134 @@
|
||||
# 双色球智能推测系统
|
||||
|
||||
这是一个基于Vue 3开发的双色球智能推测前端应用,提供智能算法分析、开奖信息查询等功能。
|
||||
|
||||
## 功能特性
|
||||
|
||||
### 🎯 主要功能
|
||||
- **智能推测**: 5步推测流程,包含首球算法、跟随球分析、蓝球分析
|
||||
- **开奖查询**: 支持期号查询和日期范围查询
|
||||
- **用户中心**: 个人信息管理和会员权益展示
|
||||
|
||||
### 📱 页面结构
|
||||
1. **首页** - 智能推测功能
|
||||
- 选择算法级别(高位/中位/低位)
|
||||
- 输入上期开奖号码
|
||||
- 首球算法分析
|
||||
- 跟随球分析
|
||||
- 蓝球分析
|
||||
- 最终号码确认
|
||||
|
||||
2. **开奖信息** - 查询历史开奖
|
||||
- 期号精确查询
|
||||
- 日期范围查询
|
||||
- 近期开奖记录展示
|
||||
|
||||
3. **我的页面** - 用户信息管理
|
||||
- 用户信息展示
|
||||
- 会员权益介绍
|
||||
- 功能菜单导航
|
||||
- 使用统计数据
|
||||
|
||||
## 技术栈
|
||||
|
||||
- **框架**: Vue 3
|
||||
- **路由**: Vue Router 4
|
||||
- **HTTP客户端**: Axios
|
||||
- **构建工具**: Vite
|
||||
- **CSS**: 原生CSS + Scoped Styles
|
||||
|
||||
## 后端接口
|
||||
|
||||
应用连接到SpringBoot后端服务,接口前缀:`http://localhost:8123/api`
|
||||
|
||||
### 主要接口
|
||||
- `GET /ball-analysis/recent-draws` - 获取近期开奖信息
|
||||
- `GET /ball-analysis/query-draws` - 按日期范围查询
|
||||
- `GET /ball-analysis/draw/{drawId}` - 根据期号查询
|
||||
- `POST /ball-analysis/analyze` - 首球算法分析
|
||||
- `POST /ball-analysis/fallow` - 跟随球分析
|
||||
- `POST /ball-analysis/blue-ball` - 蓝球分析
|
||||
- `POST /ball-analysis/create-predict` - 创建推测记录
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 安装依赖
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
### 开发环境运行
|
||||
```bash
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### 构建生产版本
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
### 预览生产构建
|
||||
```bash
|
||||
npm run preview
|
||||
```
|
||||
|
||||
## 项目结构
|
||||
|
||||
```
|
||||
src/
|
||||
├── api/
|
||||
│ └── index.js # API接口封装
|
||||
├── components/ # 公共组件
|
||||
├── router/
|
||||
│ └── index.js # 路由配置
|
||||
├── views/
|
||||
│ ├── Home.vue # 主页 - 智能推测
|
||||
│ ├── LotteryInfo.vue # 开奖信息页
|
||||
│ └── Profile.vue # 我的页面
|
||||
├── App.vue # 根组件
|
||||
└── main.js # 入口文件
|
||||
```
|
||||
|
||||
## 使用说明
|
||||
|
||||
### 推测流程
|
||||
|
||||
1. **第一步**: 选择推测级别(高位/中位/低位),输入开奖期号、日期和上期中奖号码
|
||||
2. **第二步**: 查看首球算法推荐的11个红球号码,选择1个首球和2个随球
|
||||
3. **第三步**: 查看跟随球分析推荐的8个号码,组合完整的6个红球
|
||||
4. **第四步**: 选择2个蓝球进行分析,获得4个推荐蓝球,选择最终蓝球
|
||||
5. **第五步**: 确认推测号码并提交
|
||||
|
||||
### 开奖查询
|
||||
|
||||
- **期号查询**: 输入具体期号(如2025056)进行精确查询
|
||||
- **日期查询**: 设置日期范围进行批量查询
|
||||
- **历史记录**: 自动加载最近15期开奖信息
|
||||
|
||||
## 注意事项
|
||||
|
||||
⚠️ **重要提醒**: 彩票开奖系统随机,本应用提供的推测结果仅供参考,不保证中奖。投注需谨慎,请理性购彩。
|
||||
|
||||
## 浏览器支持
|
||||
|
||||
- Chrome >= 87
|
||||
- Firefox >= 78
|
||||
- Safari >= 14
|
||||
- Edge >= 88
|
||||
|
||||
## 开发指南
|
||||
|
||||
### 代码规范
|
||||
- 使用ES6+语法
|
||||
- 组件采用SFC(Single File Component)格式
|
||||
- CSS使用scoped样式避免污染
|
||||
- 遵循Vue 3 Composition API最佳实践
|
||||
|
||||
### API集成
|
||||
所有API调用都封装在`src/api/index.js`中,统一处理请求和响应。
|
||||
|
||||
### 样式规范
|
||||
- 采用移动端优先的响应式设计
|
||||
- 主色调:红色(#e53e3e),蓝色(#3182ce)
|
||||
- 遵循Material Design设计原则
|
||||
|
||||
13
index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>精彩数据</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
8
jsconfig.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
41
nginx.conf.example
Normal file
@@ -0,0 +1,41 @@
|
||||
# Nginx 服务器配置示例
|
||||
# 使用方法:将此配置添加到你的 Nginx 配置文件中
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name your-domain.com; # 修改为你的域名
|
||||
root /path/to/lottery-app/dist; # 修改为你的项目路径
|
||||
index index.html;
|
||||
|
||||
# Gzip 压缩配置
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_min_length 1024;
|
||||
gzip_types text/plain text/css text/xml text/javascript application/javascript application/json application/xml+rss image/svg+xml;
|
||||
|
||||
# HTML 文件不缓存
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
||||
add_header Pragma "no-cache";
|
||||
add_header Expires "0";
|
||||
}
|
||||
|
||||
# 静态资源长期缓存(带hash的JS、CSS、图片等)
|
||||
location ~* \.(js|css|png|jpg|jpeg|gif|svg|ico|woff|woff2|ttf|eot)$ {
|
||||
expires 1y;
|
||||
add_header Cache-Control "public, immutable";
|
||||
access_log off;
|
||||
}
|
||||
|
||||
# 代理 API 请求(如果需要)
|
||||
location /api/ {
|
||||
proxy_pass http://localhost:8123; # 修改为你的后端地址
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
3760
package-lock.json
generated
Normal file
28
package.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "lottery-app",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build:clean": "rm -rf dist && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.3.1",
|
||||
"axios": "^1.10.0",
|
||||
"echarts": "^6.0.0",
|
||||
"element-plus": "^2.11.8",
|
||||
"qrcode": "^1.5.4",
|
||||
"vue": "^3.5.13",
|
||||
"vue-router": "^4.5.1",
|
||||
"vue-toastification": "^2.0.0-rc.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "^5.2.3",
|
||||
"terser": "^5.44.0",
|
||||
"vite": "^6.2.4",
|
||||
"vite-plugin-vue-devtools": "^7.7.2"
|
||||
}
|
||||
}
|
||||
32
public/.htaccess
Normal file
@@ -0,0 +1,32 @@
|
||||
# 缓存控制配置(Apache服务器)
|
||||
|
||||
# 禁用 HTML 文件的缓存
|
||||
<FilesMatch "\.(html|htm)$">
|
||||
FileETag None
|
||||
Header unset ETag
|
||||
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
|
||||
Header set Pragma "no-cache"
|
||||
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
|
||||
</FilesMatch>
|
||||
|
||||
# 静态资源长期缓存(带hash的文件)
|
||||
<FilesMatch "\.(js|css|png|jpg|jpeg|gif|svg|ico|woff|woff2|ttf|eot)$">
|
||||
Header set Cache-Control "max-age=31536000, public, immutable"
|
||||
</FilesMatch>
|
||||
|
||||
# 启用 Gzip 压缩
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/json application/xml
|
||||
</IfModule>
|
||||
|
||||
# SPA 路由支持
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
RewriteRule ^index\.html$ - [L]
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule . /index.html [L]
|
||||
</IfModule>
|
||||
|
||||
|
||||
1
public/assets/admin/logo.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1764145401887" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7812" width="32" height="32"><path d="M378.5 613.6l23.7-12.8 90.9 51V526.3l-18.2-9.1-90.9-52.8v103.7L364 579l-76.4-43.6-91 50.9v105.5l91 50.9 90.9-50.9zM656.9 579l-18.2-10.9V464.4l-109.2 61.9v125.5l91-51 23.6 12.8v78.2l91 50.9 91-50.9V586.3l-91-50.9z" fill="#1296db" p-id="7813"></path><path d="M656.9 251.6v83.6l96.4 52.8v94.6l9.1 5.5 63.7 36.3V344.3zM602.3 730l-91 49.1-90.9-49.1-14.6 9.1-60 32.8 165.5 90.9 165.6-90.9-60.1-32.8zM269.4 482.6V388l96.4-52.8v-83.6l-169.2 92.7v180.1l63.7-36.3z" fill="#1296db" p-id="7814"></path><path d="M402.2 433.5l109.1 61.8 18.2-10.9 91-50.9-91-51v-12.7l72.8-41.8V224.3l-91-52.8-90.9 52.8V328l72.7 41.8v12.7z" fill="#1296db" p-id="7815"></path></svg>
|
||||
|
After Width: | Height: | Size: 802 B |
BIN
public/assets/banner/banner.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
9
public/assets/banner/banner.svg
Normal file
|
After Width: | Height: | Size: 490 KiB |
BIN
public/assets/banner/banner1.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
5
public/assets/bottom/faxian-0.svg
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
5
public/assets/bottom/faxian-1.svg
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
5
public/assets/bottom/home-0.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 34 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="34.000000" height="32.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 6">
|
||||
<path id="矢量 2" d="M33.6376 12.1729C33.0976 10.8747 32.0622 9.91164 31.2913 9.32996L20.4162 1.15565C18.3678 -0.385217 15.6118 -0.385217 13.5596 1.15565L2.68827 9.32996C1.92105 9.90779 0.893132 10.867 0.356826 12.1729C-0.209275 13.5519 -0.101269 14.985 0.67712 16.3178C1.20225 17.2192 2.23762 17.747 3.75716 17.8779C3.96572 17.8972 4.17056 17.9049 4.36423 17.9088L4.36423 25.7518C4.36423 29.1956 7.07555 32 10.4051 32L23.5781 32C26.9077 32 29.619 29.1956 29.619 25.7518L29.619 17.9434C29.7941 17.9434 29.9766 17.9396 30.1665 17.9242C31.1982 17.851 32.5762 17.5158 33.2913 16.3371C34.0994 15.0081 34.2186 13.5674 33.6376 12.1729L33.6376 12.1729ZM21.5856 22.4505C20.3491 23.5175 18.7179 24.1069 16.986 24.1069C15.2654 24.1069 13.6416 23.5252 12.4088 22.4697C11.9321 22.0614 11.8688 21.3333 12.2598 20.8441C12.6546 20.351 13.3585 20.2855 13.8315 20.69C14.6658 21.4027 15.7831 21.7956 16.9823 21.7956C18.189 21.7956 19.3138 21.3988 20.148 20.6785C20.621 20.2701 21.3249 20.3356 21.7234 20.8248C22.1219 21.3141 22.0586 22.0421 21.5856 22.4505Z" fill="rgba(125, 127, 129, 1)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
5
public/assets/bottom/home-1.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 34 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="34.000000" height="32.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 6">
|
||||
<path id="矢量 2" d="M33.6376 12.1729C33.0976 10.8747 32.0622 9.91164 31.2913 9.32996L20.4162 1.15565C18.3678 -0.385217 15.6118 -0.385217 13.5596 1.15565L2.68827 9.32996C1.92105 9.90779 0.893132 10.867 0.356826 12.1729C-0.209275 13.5519 -0.101269 14.985 0.67712 16.3178C1.20225 17.2192 2.23762 17.747 3.75716 17.8779C3.96572 17.8972 4.17056 17.9049 4.36423 17.9088L4.36423 25.7518C4.36423 29.1956 7.07555 32 10.4051 32L23.5781 32C26.9077 32 29.619 29.1956 29.619 25.7518L29.619 17.9434C29.7941 17.9434 29.9766 17.9396 30.1665 17.9242C31.1982 17.851 32.5762 17.5158 33.2913 16.3371C34.0994 15.0081 34.2186 13.5674 33.6376 12.1729L33.6376 12.1729ZM21.5856 22.4505C20.3491 23.5175 18.7179 24.1069 16.986 24.1069C15.2654 24.1069 13.6416 23.5252 12.4088 22.4697C11.9321 22.0614 11.8688 21.3333 12.2598 20.8441C12.6546 20.351 13.3585 20.2855 13.8315 20.69C14.6658 21.4027 15.7831 21.7956 16.9823 21.7956C18.189 21.7956 19.3138 21.3988 20.148 20.6785C20.621 20.2701 21.3249 20.3356 21.7234 20.8248C22.1219 21.3141 22.0586 22.0421 21.5856 22.4505Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
5
public/assets/bottom/kaijiang-0.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 33 31" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="33.000000" height="31.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 7">
|
||||
<path id="矢量 3" d="M22.43 1.44478e-06C24.3598 1.44478e-06 26.1129 1.16653 26.8974 2.9807L30.1494 2.9807L30.3041 2.98449C31.7552 3.06781 32.9153 4.25706 32.9963 5.75309L33 5.91216L32.9963 6.26818C32.9079 12.8772 31.0444 16.6836 27.2509 17.1267C26.2455 21.7208 22.5846 25.031 18.2719 25.6863L18.2719 28.4852L22.7504 28.4852C23.4244 28.4852 23.9731 29.0495 23.9731 29.7426C23.9731 30.4357 23.4244 31 22.7504 31L10.5341 31C9.86008 31 9.31132 30.4357 9.31132 29.7426C9.31132 29.0495 9.86008 28.4852 10.5341 28.4852L15.8301 28.4852L15.8301 25.762C11.1381 25.3719 7.22678 21.9064 6.16241 17.1873C1.94175 17.0358 -0.0470348 13.0439 0.000843521 5.89322C0.0118925 4.34417 1.19412 3.07159 2.69676 2.98827L2.85144 2.98448L6.48282 2.98448C7.26729 1.1741 9.013 0.00378736 10.9392 0.00378736C10.9392 0 22.43 0 22.43 0L22.43 1.44478e-06ZM22.43 2.51485L10.9429 2.51485C9.65015 2.51863 8.5821 3.55639 8.50844 4.88577L8.50476 5.03348L8.52317 16.5548L8.57473 16.782C9.34447 19.9256 11.7678 22.3533 14.8394 23.0729L15.0751 23.126C19.4615 24.016 23.7264 21.2057 24.8128 16.8048L24.8681 16.5586L24.8681 5.0259C24.8681 3.69652 23.8589 2.59438 22.5699 2.51863L22.43 2.51485L22.43 2.51485ZM16.6993 7.54075C17.4506 7.54075 18.1172 7.98009 18.4119 8.66561L18.8833 9.69579L19.9403 9.84728C20.629 9.94576 21.1704 10.404 21.4356 11.0593L21.4871 11.2032C21.7339 11.9417 21.5387 12.7484 21.0157 13.2522L20.2386 14.0816L20.4338 15.2557C20.5259 15.9526 20.2939 16.6646 19.804 17.0812L19.6972 17.1646C19.1153 17.6418 18.3088 17.71 17.6606 17.3312L16.7288 16.8123L15.7823 17.3388C15.5318 17.4714 15.2887 17.5547 15.0236 17.5774L14.8615 17.585C14.4711 17.585 14.0844 17.4486 13.7309 17.1911C13.1416 16.7214 12.8543 15.9715 12.9979 15.2557L13.1858 14.1081L12.3792 13.2484C11.9225 12.7598 11.731 12.0591 11.8747 11.3509L11.9115 11.1994C12.1546 10.4684 12.7254 9.94954 13.4583 9.8435L14.5153 9.692L15.0015 8.63152C15.3145 8.0066 15.9001 7.59377 16.5594 7.54075L16.6993 7.54075L16.6993 7.54075ZM16.6993 9.21478C16.5962 9.22236 16.5041 9.28296 16.4599 9.37764L15.6128 11.2297L13.683 11.5062C13.5799 11.5213 13.4988 11.5971 13.4657 11.6955C13.4289 11.8319 13.462 11.9834 13.5541 12.0894L14.9315 13.5589L14.6 15.5701C14.5816 15.6723 14.6184 15.7784 14.6958 15.8465C14.7437 15.8844 14.8026 15.9071 14.8652 15.9109C14.9204 15.9071 14.9757 15.8882 15.0236 15.8579L16.7325 14.9035L18.4524 15.8617C18.5408 15.9147 18.6181 15.9071 18.7397 15.8125C18.7986 15.7708 18.8465 15.6382 18.8317 15.5057L18.5039 13.5249L19.8777 12.0553C19.9624 11.972 19.9919 11.8546 19.955 11.741C19.9035 11.5857 19.8261 11.5137 19.723 11.5024L17.7931 11.2259L16.9313 9.36249C16.8908 9.26781 16.8098 9.21478 16.6993 9.21478L16.6993 9.21478ZM6.06297 5.49554L2.85513 5.49554C2.63047 5.49554 2.45 5.68112 2.44632 5.91216C2.40581 11.7296 3.67274 14.4376 6.0777 14.6649L6.06297 5.49554L6.06297 5.49554ZM30.1494 5.49554L27.3172 5.49554L27.3172 14.5588C29.3686 14.0286 30.4882 11.4115 30.5545 6.24924L30.5582 5.91595L30.5508 5.8402C30.5214 5.66976 30.3888 5.53342 30.2231 5.50312L30.1494 5.49554L30.1494 5.49554Z" fill="rgb(125,127,129)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
5
public/assets/bottom/kaijiang-1.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 33 31" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="33.000000" height="31.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 7">
|
||||
<path id="矢量 3" d="M22.43 1.44478e-06C24.3598 1.44478e-06 26.1129 1.16653 26.8974 2.9807L30.1494 2.9807L30.3041 2.98449C31.7552 3.06781 32.9153 4.25706 32.9963 5.75309L33 5.91216L32.9963 6.26818C32.9079 12.8772 31.0444 16.6836 27.2509 17.1267C26.2455 21.7208 22.5846 25.031 18.2719 25.6863L18.2719 28.4852L22.7504 28.4852C23.4244 28.4852 23.9731 29.0495 23.9731 29.7426C23.9731 30.4357 23.4244 31 22.7504 31L10.5341 31C9.86008 31 9.31132 30.4357 9.31132 29.7426C9.31132 29.0495 9.86008 28.4852 10.5341 28.4852L15.8301 28.4852L15.8301 25.762C11.1381 25.3719 7.22678 21.9064 6.16241 17.1873C1.94175 17.0358 -0.0470348 13.0439 0.000843521 5.89322C0.0118925 4.34417 1.19412 3.07159 2.69676 2.98827L2.85144 2.98448L6.48282 2.98448C7.26729 1.1741 9.013 0.00378736 10.9392 0.00378736C10.9392 0 22.43 0 22.43 0L22.43 1.44478e-06ZM22.43 2.51485L10.9429 2.51485C9.65015 2.51863 8.5821 3.55639 8.50844 4.88577L8.50476 5.03348L8.52317 16.5548L8.57473 16.782C9.34447 19.9256 11.7678 22.3533 14.8394 23.0729L15.0751 23.126C19.4615 24.016 23.7264 21.2057 24.8128 16.8048L24.8681 16.5586L24.8681 5.0259C24.8681 3.69652 23.8589 2.59438 22.5699 2.51863L22.43 2.51485L22.43 2.51485ZM16.6993 7.54075C17.4506 7.54075 18.1172 7.98009 18.4119 8.66561L18.8833 9.69579L19.9403 9.84728C20.629 9.94576 21.1704 10.404 21.4356 11.0593L21.4871 11.2032C21.7339 11.9417 21.5387 12.7484 21.0157 13.2522L20.2386 14.0816L20.4338 15.2557C20.5259 15.9526 20.2939 16.6646 19.804 17.0812L19.6972 17.1646C19.1153 17.6418 18.3088 17.71 17.6606 17.3312L16.7288 16.8123L15.7823 17.3388C15.5318 17.4714 15.2887 17.5547 15.0236 17.5774L14.8615 17.585C14.4711 17.585 14.0844 17.4486 13.7309 17.1911C13.1416 16.7214 12.8543 15.9715 12.9979 15.2557L13.1858 14.1081L12.3792 13.2484C11.9225 12.7598 11.731 12.0591 11.8747 11.3509L11.9115 11.1994C12.1546 10.4684 12.7254 9.94954 13.4583 9.8435L14.5153 9.692L15.0015 8.63152C15.3145 8.0066 15.9001 7.59377 16.5594 7.54075L16.6993 7.54075L16.6993 7.54075ZM16.6993 9.21478C16.5962 9.22236 16.5041 9.28296 16.4599 9.37764L15.6128 11.2297L13.683 11.5062C13.5799 11.5213 13.4988 11.5971 13.4657 11.6955C13.4289 11.8319 13.462 11.9834 13.5541 12.0894L14.9315 13.5589L14.6 15.5701C14.5816 15.6723 14.6184 15.7784 14.6958 15.8465C14.7437 15.8844 14.8026 15.9071 14.8652 15.9109C14.9204 15.9071 14.9757 15.8882 15.0236 15.8579L16.7325 14.9035L18.4524 15.8617C18.5408 15.9147 18.6181 15.9071 18.7397 15.8125C18.7986 15.7708 18.8465 15.6382 18.8317 15.5057L18.5039 13.5249L19.8777 12.0553C19.9624 11.972 19.9919 11.8546 19.955 11.741C19.9035 11.5857 19.8261 11.5137 19.723 11.5024L17.7931 11.2259L16.9313 9.36249C16.8908 9.26781 16.8098 9.21478 16.6993 9.21478L16.6993 9.21478ZM6.06297 5.49554L2.85513 5.49554C2.63047 5.49554 2.45 5.68112 2.44632 5.91216C2.40581 11.7296 3.67274 14.4376 6.0777 14.6649L6.06297 5.49554L6.06297 5.49554ZM30.1494 5.49554L27.3172 5.49554L27.3172 14.5588C29.3686 14.0286 30.4882 11.4115 30.5545 6.24924L30.5582 5.91595L30.5508 5.8402C30.5214 5.66976 30.3888 5.53342 30.2231 5.50312L30.1494 5.49554L30.1494 5.49554Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
6
public/assets/bottom/tuice-0.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 10">
|
||||
<path id="矢量 6" d="M21.3008 3.19995C21.2793 3.31568 21.261 3.43191 21.2459 3.54864C21.2307 3.66537 21.2188 3.78243 21.2101 3.89982C21.2014 4.01721 21.1959 4.13474 21.1937 4.25243C21.1914 4.37012 21.1924 4.48778 21.1966 4.60541C21.2008 4.72304 21.2082 4.84047 21.2188 4.9577C21.2295 5.07493 21.2433 5.19177 21.2604 5.30824C21.2774 5.42471 21.2976 5.54062 21.321 5.65598C21.3444 5.77134 21.371 5.88597 21.4007 5.99987C21.4303 6.11377 21.4631 6.22678 21.499 6.33888C21.5349 6.45099 21.5738 6.56202 21.6158 6.67199C21.6578 6.78196 21.7028 6.8907 21.7507 6.9982C21.7986 7.1057 21.8495 7.21181 21.9032 7.31653C21.957 7.42124 22.0136 7.5244 22.073 7.62601C22.1324 7.72763 22.1946 7.82753 22.2595 7.92573C22.3244 8.02393 22.3919 8.12028 22.4621 8.21478C22.5323 8.30928 22.605 8.40178 22.6803 8.49229C22.7555 8.5828 22.8332 8.67118 22.9133 8.75742C22.9934 8.84367 23.0758 8.92766 23.1605 9.00939C23.2452 9.09112 23.3321 9.17046 23.4212 9.24743C23.5102 9.32439 23.6013 9.39885 23.6945 9.47082C23.7876 9.54279 23.8827 9.61214 23.9796 9.6789C24.0766 9.74565 24.1753 9.8097 24.2757 9.87104C24.3762 9.93238 24.4783 9.99092 24.582 10.0467C24.6856 10.1024 24.7908 10.1553 24.8973 10.2052C25.0039 10.2552 25.1118 10.3022 25.2209 10.3463C25.3301 10.3903 25.4403 10.4314 25.5517 10.4694C25.6631 10.5074 25.7755 10.5423 25.8888 10.5742C26.0021 10.606 26.1162 10.6348 26.2311 10.6603C26.346 10.6859 26.4615 10.7084 26.5777 10.7276C26.6938 10.7469 26.8103 10.7629 26.9273 10.7758C27.0444 10.7887 27.1616 10.7983 27.2792 10.8047C27.3967 10.8112 27.5143 10.8144 27.632 10.8144C28.024 10.8127 28.416 10.7743 28.8 10.7024L28.8 23.4576C28.8 28.8255 25.6336 31.9999 20.2592 31.9999L8.5536 31.9999C3.168 31.9999 0 28.8255 0 23.4575L0 11.7695C0 6.40315 3.1664 3.19995 8.5536 3.19995L21.3008 3.19995ZM21.4944 12.7903L21.3072 12.8031C21.1509 12.8256 21.0051 12.8777 20.8699 12.9593C20.7347 13.041 20.6207 13.1457 20.528 13.2736L16.672 18.2335L12.2832 14.7775C12.2211 14.7292 12.1549 14.6874 12.0845 14.6523C12.0141 14.6171 11.941 14.5893 11.865 14.5687C11.7891 14.5481 11.7118 14.5353 11.6333 14.5301C11.5548 14.5249 11.4766 14.5276 11.3986 14.538C11.3206 14.5484 11.2444 14.5664 11.17 14.592C11.0956 14.6177 11.0245 14.6504 10.9566 14.6902C10.8888 14.73 10.8255 14.7761 10.7668 14.8285C10.7081 14.8809 10.6552 14.9386 10.608 15.0015L5.8816 21.0975C5.70985 21.311 5.62505 21.5548 5.6272 21.8287L5.632 22.0047C5.64397 22.1274 5.6744 22.2453 5.72329 22.3585C5.77218 22.4716 5.83719 22.5745 5.91831 22.6673C5.99944 22.7601 6.09281 22.8383 6.19841 22.9018C6.30401 22.9654 6.4168 23.0113 6.53677 23.0395C6.65674 23.0677 6.77816 23.0769 6.90102 23.0671C7.02388 23.0573 7.1423 23.029 7.25629 22.9821C7.37027 22.9353 7.47437 22.8721 7.56858 22.7926C7.66278 22.7132 7.74259 22.6212 7.808 22.5167L11.7616 17.4031L16.152 20.8447C16.2138 20.8945 16.2799 20.9376 16.3504 20.9741C16.4208 21.0105 16.4942 21.0396 16.5705 21.0613C16.6468 21.083 16.7246 21.0969 16.8037 21.103C16.8828 21.1091 16.9617 21.1072 17.0404 21.0975C17.1191 21.0877 17.1961 21.0702 17.2713 21.0449C17.3465 21.0197 17.4185 20.9872 17.4871 20.9475C17.5558 20.9078 17.6199 20.8616 17.6793 20.8091C17.7387 20.7565 17.7923 20.6985 17.84 20.6351L22.4128 14.7343L22.4128 14.7039C22.4595 14.6414 22.4997 14.5749 22.5335 14.5045C22.5673 14.4341 22.594 14.3611 22.6136 14.2855C22.6332 14.21 22.6454 14.1332 22.6501 14.0553C22.6548 13.9773 22.652 13.8997 22.6416 13.8223C22.6313 13.7449 22.6136 13.6692 22.5885 13.5953C22.5634 13.5213 22.5315 13.4505 22.4927 13.3827C22.4539 13.315 22.4089 13.2516 22.3578 13.1926C22.3067 13.1336 22.2503 13.08 22.1888 13.0319C22.0635 12.9355 21.9244 12.8672 21.7714 12.8272C21.6184 12.7872 21.4637 12.7787 21.3072 12.8015L21.4944 12.7903Z" fill="rgb(125,127,129)" fill-rule="nonzero" />
|
||||
<path id="矢量 7" d="M24 4C24 4.131 24.0064 4.26169 24.0193 4.39207C24.0321 4.52244 24.0513 4.65187 24.0769 4.78036C24.1024 4.90885 24.1342 5.03577 24.1722 5.16114C24.2103 5.2865 24.2543 5.4097 24.3045 5.53073C24.3546 5.65176 24.4106 5.77005 24.4723 5.88558C24.5341 6.00112 24.6013 6.11335 24.6741 6.22228C24.7469 6.33121 24.8249 6.4363 24.908 6.53757C24.9911 6.63884 25.0789 6.73579 25.1716 6.82843C25.2642 6.92106 25.3612 7.00893 25.4624 7.09204C25.5637 7.17515 25.6688 7.25309 25.7777 7.32588C25.8866 7.39866 25.9989 7.46593 26.1144 7.52768C26.2299 7.58944 26.3482 7.64538 26.4693 7.69552C26.5903 7.74565 26.7135 7.78973 26.8389 7.82776C26.9642 7.86579 27.0912 7.89758 27.2196 7.92314C27.3481 7.9487 27.4776 7.9679 27.6079 7.98074C27.7383 7.99358 27.869 8 28 8C28.131 8 28.2617 7.99358 28.3921 7.98074C28.5224 7.9679 28.6519 7.9487 28.7804 7.92314C28.9089 7.89758 29.0358 7.86579 29.1611 7.82776C29.2865 7.78973 29.4097 7.74565 29.5307 7.69552C29.6518 7.64538 29.7701 7.58944 29.8856 7.52768C30.0011 7.46593 30.1134 7.39866 30.2223 7.32588C30.3312 7.25309 30.4363 7.17515 30.5376 7.09204C30.6388 7.00893 30.7358 6.92106 30.8284 6.82843C30.9211 6.73579 31.0089 6.63884 31.092 6.53757C31.1752 6.4363 31.2531 6.33121 31.3259 6.22228C31.3987 6.11335 31.4659 6.00112 31.5277 5.88558C31.5894 5.77005 31.6454 5.65176 31.6955 5.53073C31.7457 5.4097 31.7897 5.2865 31.8278 5.16114C31.8658 5.03577 31.8976 4.90885 31.9231 4.78036C31.9487 4.65187 31.9679 4.52244 31.9807 4.39207C31.9936 4.26169 32 4.131 32 4C32 3.86899 31.9936 3.7383 31.9807 3.60793C31.9679 3.47756 31.9487 3.34813 31.9231 3.21964C31.8976 3.09115 31.8658 2.96422 31.8278 2.83886C31.7897 2.7135 31.7457 2.5903 31.6955 2.46927C31.6454 2.34823 31.5894 2.22995 31.5277 2.11441C31.4659 1.99888 31.3987 1.88665 31.3259 1.77772C31.2531 1.66879 31.1752 1.56369 31.092 1.46243C31.0089 1.36116 30.9211 1.26421 30.8284 1.17157C30.7358 1.07894 30.6388 0.991067 30.5376 0.907958C30.4363 0.824849 30.3312 0.746904 30.2223 0.674121C30.1134 0.601339 30.0011 0.53407 29.8856 0.472315C29.7701 0.410559 29.6518 0.354615 29.5307 0.304482C29.4097 0.254348 29.2865 0.210267 29.1611 0.172239C29.0358 0.13421 28.9089 0.102417 28.7804 0.0768588C28.6519 0.0513011 28.5224 0.0321018 28.3921 0.0192611C28.2617 0.00642036 28.131 0 28 0C27.869 0 27.7383 0.00642036 27.6079 0.0192611C27.4776 0.0321018 27.3481 0.0513011 27.2196 0.0768588C27.0912 0.102417 26.9642 0.13421 26.8389 0.172239C26.7135 0.210267 26.5903 0.254348 26.4693 0.304482C26.3482 0.354615 26.2299 0.410559 26.1144 0.472315C25.9989 0.53407 25.8866 0.601339 25.7777 0.674121C25.6688 0.746904 25.5637 0.824849 25.4624 0.907958C25.3612 0.991067 25.2642 1.07894 25.1716 1.17157C25.0789 1.26421 24.9911 1.36116 24.908 1.46243C24.8249 1.56369 24.7469 1.66879 24.6741 1.77772C24.6013 1.88665 24.5341 1.99888 24.4723 2.11441C24.4106 2.22995 24.3546 2.34823 24.3045 2.46927C24.2543 2.5903 24.2103 2.7135 24.1722 2.83886C24.1342 2.96422 24.1024 3.09115 24.0769 3.21964C24.0513 3.34813 24.0321 3.47756 24.0193 3.60793C24.0064 3.7383 24 3.86899 24 4Z" fill="rgb(125,127,129)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
6
public/assets/bottom/tuice-1.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.000000" height="32.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 10">
|
||||
<path id="矢量 6" d="M21.3008 3.19995C21.2793 3.31568 21.261 3.43191 21.2459 3.54864C21.2307 3.66537 21.2188 3.78243 21.2101 3.89982C21.2014 4.01721 21.1959 4.13474 21.1937 4.25243C21.1914 4.37012 21.1924 4.48778 21.1966 4.60541C21.2008 4.72304 21.2082 4.84047 21.2188 4.9577C21.2295 5.07493 21.2433 5.19177 21.2604 5.30824C21.2774 5.42471 21.2976 5.54062 21.321 5.65598C21.3444 5.77134 21.371 5.88597 21.4007 5.99987C21.4303 6.11377 21.4631 6.22678 21.499 6.33888C21.5349 6.45099 21.5738 6.56202 21.6158 6.67199C21.6578 6.78196 21.7028 6.8907 21.7507 6.9982C21.7986 7.1057 21.8495 7.21181 21.9032 7.31653C21.957 7.42124 22.0136 7.5244 22.073 7.62601C22.1324 7.72763 22.1946 7.82753 22.2595 7.92573C22.3244 8.02393 22.3919 8.12028 22.4621 8.21478C22.5323 8.30928 22.605 8.40178 22.6803 8.49229C22.7555 8.5828 22.8332 8.67118 22.9133 8.75742C22.9934 8.84367 23.0758 8.92766 23.1605 9.00939C23.2452 9.09112 23.3321 9.17046 23.4212 9.24743C23.5102 9.32439 23.6013 9.39885 23.6945 9.47082C23.7876 9.54279 23.8827 9.61214 23.9796 9.6789C24.0766 9.74565 24.1753 9.8097 24.2757 9.87104C24.3762 9.93238 24.4783 9.99092 24.582 10.0467C24.6856 10.1024 24.7908 10.1553 24.8973 10.2052C25.0039 10.2552 25.1118 10.3022 25.2209 10.3463C25.3301 10.3903 25.4403 10.4314 25.5517 10.4694C25.6631 10.5074 25.7755 10.5423 25.8888 10.5742C26.0021 10.606 26.1162 10.6348 26.2311 10.6603C26.346 10.6859 26.4615 10.7084 26.5777 10.7276C26.6938 10.7469 26.8103 10.7629 26.9273 10.7758C27.0444 10.7887 27.1616 10.7983 27.2792 10.8047C27.3967 10.8112 27.5143 10.8144 27.632 10.8144C28.024 10.8127 28.416 10.7743 28.8 10.7024L28.8 23.4576C28.8 28.8255 25.6336 31.9999 20.2592 31.9999L8.5536 31.9999C3.168 31.9999 0 28.8255 0 23.4575L0 11.7695C0 6.40315 3.1664 3.19995 8.5536 3.19995L21.3008 3.19995ZM21.4944 12.7903L21.3072 12.8031C21.1509 12.8256 21.0051 12.8777 20.8699 12.9593C20.7347 13.041 20.6207 13.1457 20.528 13.2736L16.672 18.2335L12.2832 14.7775C12.2211 14.7292 12.1549 14.6874 12.0845 14.6523C12.0141 14.6171 11.941 14.5893 11.865 14.5687C11.7891 14.5481 11.7118 14.5353 11.6333 14.5301C11.5548 14.5249 11.4766 14.5276 11.3986 14.538C11.3206 14.5484 11.2444 14.5664 11.17 14.592C11.0956 14.6177 11.0245 14.6504 10.9566 14.6902C10.8888 14.73 10.8255 14.7761 10.7668 14.8285C10.7081 14.8809 10.6552 14.9386 10.608 15.0015L5.8816 21.0975C5.70985 21.311 5.62505 21.5548 5.6272 21.8287L5.632 22.0047C5.64397 22.1274 5.6744 22.2453 5.72329 22.3585C5.77218 22.4716 5.83719 22.5745 5.91831 22.6673C5.99944 22.7601 6.09281 22.8383 6.19841 22.9018C6.30401 22.9654 6.4168 23.0113 6.53677 23.0395C6.65674 23.0677 6.77816 23.0769 6.90102 23.0671C7.02388 23.0573 7.1423 23.029 7.25629 22.9821C7.37027 22.9353 7.47437 22.8721 7.56858 22.7926C7.66278 22.7132 7.74259 22.6212 7.808 22.5167L11.7616 17.4031L16.152 20.8447C16.2138 20.8945 16.2799 20.9376 16.3504 20.9741C16.4208 21.0105 16.4942 21.0396 16.5705 21.0613C16.6468 21.083 16.7246 21.0969 16.8037 21.103C16.8828 21.1091 16.9617 21.1072 17.0404 21.0975C17.1191 21.0877 17.1961 21.0702 17.2713 21.0449C17.3465 21.0197 17.4185 20.9872 17.4871 20.9475C17.5558 20.9078 17.6199 20.8616 17.6793 20.8091C17.7387 20.7565 17.7923 20.6985 17.84 20.6351L22.4128 14.7343L22.4128 14.7039C22.4595 14.6414 22.4997 14.5749 22.5335 14.5045C22.5673 14.4341 22.594 14.3611 22.6136 14.2855C22.6332 14.21 22.6454 14.1332 22.6501 14.0553C22.6548 13.9773 22.652 13.8997 22.6416 13.8223C22.6313 13.7449 22.6136 13.6692 22.5885 13.5953C22.5634 13.5213 22.5315 13.4505 22.4927 13.3827C22.4539 13.315 22.4089 13.2516 22.3578 13.1926C22.3067 13.1336 22.2503 13.08 22.1888 13.0319C22.0635 12.9355 21.9244 12.8672 21.7714 12.8272C21.6184 12.7872 21.4637 12.7787 21.3072 12.8015L21.4944 12.7903Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 7" d="M24 4C24 4.131 24.0064 4.26169 24.0193 4.39207C24.0321 4.52244 24.0513 4.65187 24.0769 4.78036C24.1024 4.90885 24.1342 5.03577 24.1722 5.16114C24.2103 5.2865 24.2543 5.4097 24.3045 5.53073C24.3546 5.65176 24.4106 5.77005 24.4723 5.88558C24.5341 6.00112 24.6013 6.11335 24.6741 6.22228C24.7469 6.33121 24.8249 6.4363 24.908 6.53757C24.9911 6.63884 25.0789 6.73579 25.1716 6.82843C25.2642 6.92106 25.3612 7.00893 25.4624 7.09204C25.5637 7.17515 25.6688 7.25309 25.7777 7.32588C25.8866 7.39866 25.9989 7.46593 26.1144 7.52768C26.2299 7.58944 26.3482 7.64538 26.4693 7.69552C26.5903 7.74565 26.7135 7.78973 26.8389 7.82776C26.9642 7.86579 27.0912 7.89758 27.2196 7.92314C27.3481 7.9487 27.4776 7.9679 27.6079 7.98074C27.7383 7.99358 27.869 8 28 8C28.131 8 28.2617 7.99358 28.3921 7.98074C28.5224 7.9679 28.6519 7.9487 28.7804 7.92314C28.9089 7.89758 29.0358 7.86579 29.1611 7.82776C29.2865 7.78973 29.4097 7.74565 29.5307 7.69552C29.6518 7.64538 29.7701 7.58944 29.8856 7.52768C30.0011 7.46593 30.1134 7.39866 30.2223 7.32588C30.3312 7.25309 30.4363 7.17515 30.5376 7.09204C30.6388 7.00893 30.7358 6.92106 30.8284 6.82843C30.9211 6.73579 31.0089 6.63884 31.092 6.53757C31.1752 6.4363 31.2531 6.33121 31.3259 6.22228C31.3987 6.11335 31.4659 6.00112 31.5277 5.88558C31.5894 5.77005 31.6454 5.65176 31.6955 5.53073C31.7457 5.4097 31.7897 5.2865 31.8278 5.16114C31.8658 5.03577 31.8976 4.90885 31.9231 4.78036C31.9487 4.65187 31.9679 4.52244 31.9807 4.39207C31.9936 4.26169 32 4.131 32 4C32 3.86899 31.9936 3.7383 31.9807 3.60793C31.9679 3.47756 31.9487 3.34813 31.9231 3.21964C31.8976 3.09115 31.8658 2.96422 31.8278 2.83886C31.7897 2.7135 31.7457 2.5903 31.6955 2.46927C31.6454 2.34823 31.5894 2.22995 31.5277 2.11441C31.4659 1.99888 31.3987 1.88665 31.3259 1.77772C31.2531 1.66879 31.1752 1.56369 31.092 1.46243C31.0089 1.36116 30.9211 1.26421 30.8284 1.17157C30.7358 1.07894 30.6388 0.991067 30.5376 0.907958C30.4363 0.824849 30.3312 0.746904 30.2223 0.674121C30.1134 0.601339 30.0011 0.53407 29.8856 0.472315C29.7701 0.410559 29.6518 0.354615 29.5307 0.304482C29.4097 0.254348 29.2865 0.210267 29.1611 0.172239C29.0358 0.13421 28.9089 0.102417 28.7804 0.0768588C28.6519 0.0513011 28.5224 0.0321018 28.3921 0.0192611C28.2617 0.00642036 28.131 0 28 0C27.869 0 27.7383 0.00642036 27.6079 0.0192611C27.4776 0.0321018 27.3481 0.0513011 27.2196 0.0768588C27.0912 0.102417 26.9642 0.13421 26.8389 0.172239C26.7135 0.210267 26.5903 0.254348 26.4693 0.304482C26.3482 0.354615 26.2299 0.410559 26.1144 0.472315C25.9989 0.53407 25.8866 0.601339 25.7777 0.674121C25.6688 0.746904 25.5637 0.824849 25.4624 0.907958C25.3612 0.991067 25.2642 1.07894 25.1716 1.17157C25.0789 1.26421 24.9911 1.36116 24.908 1.46243C24.8249 1.56369 24.7469 1.66879 24.6741 1.77772C24.6013 1.88665 24.5341 1.99888 24.4723 2.11441C24.4106 2.22995 24.3546 2.34823 24.3045 2.46927C24.2543 2.5903 24.2103 2.7135 24.1722 2.83886C24.1342 2.96422 24.1024 3.09115 24.0769 3.21964C24.0513 3.34813 24.0321 3.47756 24.0193 3.60793C24.0064 3.7383 24 3.86899 24 4Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
15
public/assets/bottom/wode-0.svg
Normal file
|
After Width: | Height: | Size: 12 KiB |
15
public/assets/bottom/wode-1.svg
Normal file
|
After Width: | Height: | Size: 12 KiB |
3
public/assets/fenxi/3D-0.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 65 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="65.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<path id="矢量 53" d="M28.414 37.709L28.7398 37.8194L29.0111 34.3554C29.0111 34.3554 27.6723 35.2355 26.6232 36.1695C27.7084 36.8298 28.414 37.709 28.414 37.709ZM36.3555 17.1854C36.7805 16.377 36.365 15.8579 35.6229 15.7416C35.4428 16.3616 35.2627 16.981 35.0831 17.6005C35.3636 17.6084 35.6417 17.6181 35.9161 17.6307C36.0872 17.5351 36.2373 17.3866 36.3555 17.1854ZM32.5 0C14.5507 0 0 14.3268 0 32C0 49.673 14.5508 64 32.5 64C50.4491 64 65 49.673 65 32C64.9998 14.3267 50.4491 0 32.5 0ZM26.1686 16.0343C26.817 14.2698 28.5399 13.8174 30.6398 13.8088C30.4077 14.5715 30.1746 15.3345 29.9417 16.0973C28.5678 15.8506 28.1141 17.2746 29.0891 17.8153C29.3231 17.7945 29.5604 17.7753 29.7998 17.7568L31.9331 11.3055L34.5558 11.1725L34.1983 12.0959L32.6481 12.2462L30.7429 17.6912C30.8422 17.685 30.9412 17.6787 31.0413 17.6729L32.8492 12.4621L35.4495 12.34L35.0856 13.339L33.4855 13.4144L32.0487 17.6224C32.1447 17.6183 32.2399 17.6138 32.3368 17.6101L33.6747 13.6472L36.5778 13.5299C38.5093 13.8963 39.5396 16.182 38.7289 17.8492C48.3578 18.9089 53.4342 22.7555 53.4342 22.7555C53.4342 22.7555 46.5929 20.1611 34.1649 19.7649L33.1432 22.3482L30.7239 22.3874L31.6248 19.7191C31.5271 19.719 31.4298 19.7191 31.3327 19.7195L30.913 20.9488L29.8892 20.9938L30.3273 19.7311C30.227 19.7331 30.1267 19.735 30.027 19.7373L30.0191 19.7598L29.1197 19.8134L29.1358 19.7649C29.0159 19.7694 28.8968 19.7744 28.7778 19.7796L28.7773 19.7812C28.7753 19.7808 28.7734 19.7802 28.7713 19.7799C18.9205 20.208 12.2957 22.7555 12.2957 22.7555C12.2957 22.7555 16.4311 19.4819 26.2946 18.1296C25.9424 17.524 25.8484 16.8029 26.1686 16.0343ZM52.1853 45.6806C49.8224 48.2598 45.338 50.5487 42.2572 51.5406C38.3322 52.8049 35.3067 52.8273 35.3067 52.8273L37.6401 40.6231L36.5 39.4137L35.0891 46.3957L26.7315 46.3957C26.7315 46.3957 25.4023 48.2232 21.6347 49.1304C19.1078 49.8072 15.4474 50.1921 11.264 48.4843C10.4294 48.0384 9.80655 47.4829 9.34453 46.8774C7.43412 44.3711 8.27905 41.0082 8.27905 41.0082C8.27905 41.0082 12.8742 40.9712 14.9001 41.0082C14.4747 42.7925 15.0352 43.9666 16.2027 44.4711C18.2617 44.9328 20.9247 44.026 21.5755 42.4372C23.4029 38.4788 18.5906 36.5543 18.5906 36.5543C25.4472 33.9525 23.855 30.8003 23.0409 30.1772C19.3684 27.8867 17.7765 32.1564 17.7765 32.1564L10.9383 32.1564C11.5716 28.4546 15.4249 24.6796 22.0098 24.6796C28.5951 24.6065 30.5301 28.0882 30.5301 28.0882L31.5615 23.5251L43.4473 23.5251C49.7056 23.4706 52.9062 28.196 52.9439 28.2519C51.5959 28.6141 50.6019 29.8575 50.6019 31.3366C50.6019 33.0992 52.0138 34.5283 53.7546 34.5283C54.3755 34.5283 54.9539 34.3457 55.4419 34.032C55.4656 34.2591 56.1715 41.2999 52.1853 45.6806ZM42.7456 28.9709C39.1791 28.9709 36.2878 31.9014 36.2878 35.5171C36.2878 39.1328 39.179 42.0633 42.7456 42.0633C46.3121 42.0633 49.2034 39.1328 49.2034 35.5171C49.2034 31.9013 46.3121 28.9709 42.7456 28.9709Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
5
public/assets/fenxi/3D-1.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 65 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="65.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 20">
|
||||
<path id="矢量 53" d="M28.414 37.709L28.7398 37.8194L29.0111 34.3554C29.0111 34.3554 27.6723 35.2355 26.6232 36.1695C27.7084 36.8298 28.414 37.709 28.414 37.709ZM36.3555 17.1854C36.7805 16.377 36.365 15.8579 35.6229 15.7416C35.4428 16.3616 35.2627 16.981 35.0831 17.6005C35.3636 17.6084 35.6417 17.6181 35.9161 17.6307C36.0872 17.5351 36.2373 17.3866 36.3555 17.1854ZM32.5 0C14.5507 0 0 14.3268 0 32C0 49.673 14.5508 64 32.5 64C50.4491 64 65 49.673 65 32C64.9998 14.3267 50.4491 0 32.5 0ZM26.1686 16.0343C26.817 14.2698 28.5399 13.8174 30.6398 13.8088C30.4077 14.5715 30.1746 15.3345 29.9417 16.0973C28.5678 15.8506 28.1141 17.2746 29.0891 17.8153C29.3231 17.7945 29.5604 17.7753 29.7998 17.7568L31.9331 11.3055L34.5558 11.1725L34.1983 12.0959L32.6481 12.2462L30.7429 17.6912C30.8422 17.685 30.9412 17.6787 31.0413 17.6729L32.8492 12.4621L35.4495 12.34L35.0856 13.339L33.4855 13.4144L32.0487 17.6224C32.1447 17.6183 32.2399 17.6138 32.3368 17.6101L33.6747 13.6472L36.5778 13.5299C38.5093 13.8963 39.5396 16.182 38.7289 17.8492C48.3578 18.9089 53.4342 22.7555 53.4342 22.7555C53.4342 22.7555 46.5929 20.1611 34.1649 19.7649L33.1432 22.3482L30.7239 22.3874L31.6248 19.7191C31.5271 19.719 31.4298 19.7191 31.3327 19.7195L30.913 20.9488L29.8892 20.9938L30.3273 19.7311C30.227 19.7331 30.1267 19.735 30.027 19.7373L30.0191 19.7598L29.1197 19.8134L29.1358 19.7649C29.0159 19.7694 28.8968 19.7744 28.7778 19.7796L28.7773 19.7812C28.7753 19.7808 28.7734 19.7802 28.7713 19.7799C18.9205 20.208 12.2957 22.7555 12.2957 22.7555C12.2957 22.7555 16.4311 19.4819 26.2946 18.1296C25.9424 17.524 25.8484 16.8029 26.1686 16.0343ZM52.1853 45.6806C49.8224 48.2598 45.338 50.5487 42.2572 51.5406C38.3322 52.8049 35.3067 52.8273 35.3067 52.8273L37.6401 40.6231L36.5 39.4137L35.0891 46.3957L26.7315 46.3957C26.7315 46.3957 25.4023 48.2232 21.6347 49.1304C19.1078 49.8072 15.4474 50.1921 11.264 48.4843C10.4294 48.0384 9.80655 47.4829 9.34453 46.8774C7.43412 44.3711 8.27905 41.0082 8.27905 41.0082C8.27905 41.0082 12.8742 40.9712 14.9001 41.0082C14.4747 42.7925 15.0352 43.9666 16.2027 44.4711C18.2617 44.9328 20.9247 44.026 21.5755 42.4372C23.4029 38.4788 18.5906 36.5543 18.5906 36.5543C25.4472 33.9525 23.855 30.8003 23.0409 30.1772C19.3684 27.8867 17.7765 32.1564 17.7765 32.1564L10.9383 32.1564C11.5716 28.4546 15.4249 24.6796 22.0098 24.6796C28.5951 24.6065 30.5301 28.0882 30.5301 28.0882L31.5615 23.5251L43.4473 23.5251C49.7056 23.4706 52.9062 28.196 52.9439 28.2519C51.5959 28.6141 50.6019 29.8575 50.6019 31.3366C50.6019 33.0992 52.0138 34.5283 53.7546 34.5283C54.3755 34.5283 54.9539 34.3457 55.4419 34.032C55.4656 34.2591 56.1715 41.2999 52.1853 45.6806ZM42.7456 28.9709C39.1791 28.9709 36.2878 31.9014 36.2878 35.5171C36.2878 39.1328 39.179 42.0633 42.7456 42.0633C46.3121 42.0633 49.2034 39.1328 49.2034 35.5171C49.2034 31.9013 46.3121 28.9709 42.7456 28.9709Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
3
public/assets/fenxi/7lecai-0.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<path id="矢量 52" d="M32.0001 0C14.327 0 0 14.3269 0 32C0 49.6731 14.327 64 32.0001 64C49.6731 64 64 49.6731 64 32C63.9999 14.3269 49.6731 0 32.0001 0ZM52.9746 16.5337C52.6756 17.2649 52.3764 17.9962 52.0773 18.7274C51.1994 19.7145 47.1946 19.5488 45.4964 19.874C42.1244 20.5198 39.9534 21.2417 39.4142 24.71C39.4973 24.71 39.5803 24.71 39.6634 24.71C40.5607 24.5936 41.4583 24.4773 42.3556 24.3609C42.6713 23.2643 42.987 22.1672 43.3027 21.0705C44.6488 20.8046 45.9951 20.5387 47.341 20.2728C47.0586 21.4194 46.7759 22.5663 46.4935 23.7128C48.205 23.4469 49.917 23.181 51.6285 22.9151C51.6285 22.9318 51.6285 22.9484 51.6285 22.965C51.3294 23.7791 51.0302 24.5936 50.731 25.4079C49.0694 25.6571 47.4073 25.9064 45.7456 26.1557C45.4466 27.2357 45.1474 28.3162 44.8483 29.3962C44.0136 32.1402 43.3776 34.6959 39.4141 33.4843C38.8158 33.2517 38.2175 33.019 37.6193 32.7863C36.2625 33.7702 34.5113 34.7079 32.1353 34.3817C32.667 32.8532 33.1988 31.3239 33.7306 29.7951C34.8589 30.0452 35.0517 30.2694 36.3231 29.9945C35.7405 27.7268 38.2097 26.4735 39.5138 27.9504C40.4855 29.0511 39.3013 30.3223 39.2147 31.1412C39.3808 31.1578 39.5471 31.1744 39.7133 31.1911C40.8362 30.4825 41.3541 28.2227 41.6077 26.7041C39.2149 27.0696 36.8214 27.4353 34.4287 27.8009C34.7776 27.0199 35.1266 26.2386 35.4756 25.4577C36.6667 22.7403 37.6389 20.0061 40.3614 18.827C44.2905 17.1253 50.4798 17.3788 53.6227 14.9383C53.7043 15.3733 53.1544 16.1221 52.9746 16.5337ZM12.2433 51.831C12.8581 49.7041 13.4731 47.5765 14.0879 45.4496C14.9643 42.9914 16.2414 40.7002 17.3783 38.4699C18.3255 36.6255 19.2729 34.7805 20.22 32.936C22.0178 30.1368 24.3002 27.551 26.3522 24.9592C27.753 23.1899 29.6255 21.7209 30.8889 19.8242C29.4233 20.7224 28.614 20.7901 26.4519 21.1204C25.6875 21.1537 24.9229 21.1869 24.1586 21.2201C20.5085 22.0271 18.6903 23.9875 17.7772 27.5018C16.1154 27.7677 14.4533 28.0337 12.7917 28.2996C12.7917 28.2829 12.7917 28.2663 12.7917 28.2497C13.8385 24.8931 14.8857 21.5355 15.9325 18.179C17.1954 18.046 18.4586 17.9131 19.7215 17.7802C19.7048 18.0958 19.6883 18.4117 19.6716 18.7274C23.2753 17.1819 26.3396 15.3956 30.6397 14.4897C34.6711 13.6404 36.9813 15.362 39.0154 12.0967C39.6965 12.0302 40.3781 11.9637 41.0593 11.8972C41.1591 11.8972 41.2588 11.8972 41.3584 11.8972C40.6273 13.3761 39.896 14.8554 39.1649 16.3343C37.1111 19.6083 34.4669 22.4572 32.4345 25.8067C31.7864 27.1693 31.1381 28.5322 30.4901 29.8948C29.3875 32.3979 28.1812 35.1502 27.2994 37.8716C26.0723 41.6581 25.5411 45.7513 24.9562 50.1358C20.7191 50.7008 16.4805 51.2659 12.2433 51.831ZM51.8779 29.6954C51.8613 30.0278 51.8447 30.3602 51.8281 30.6925C51.6999 31.2623 51.3984 31.8354 51.0802 32.238C50.7226 32.6904 50.0475 33.1024 49.435 33.2849C49.1473 33.3708 48.8253 33.3116 48.6374 33.4844C47.9728 34.4149 47.3079 35.3457 46.6432 36.2762C46.8208 36.9667 48.2596 36.454 48.9365 36.5755C49.0362 36.6752 49.136 36.7749 49.2356 36.8745C49.231 37.7456 47.2299 39.8666 46.6432 40.3145C46.7096 40.4142 46.7761 40.5139 46.8426 40.6136C47.7022 40.6727 48.5893 40.4561 49.136 40.8629C49.1692 41.029 49.2024 41.1953 49.2357 41.3614C48.7377 42.4138 47.9815 43.2446 47.3411 44.1532C46.7429 45.1835 46.1446 46.2141 45.5464 47.2443C43.4115 47.5439 39.586 48.9108 38.0183 47.6929C37.0812 46.965 37.4636 46.3714 37.0212 45.2002C36.6888 46.3467 36.3565 47.4936 36.0241 48.6402C34.7115 48.8728 33.3982 49.1055 32.0855 49.3381C32.0855 49.3215 32.0855 49.3049 32.0855 49.2882C32.2683 48.6236 32.4512 47.9588 32.634 47.2941C31.0259 48.3239 29.7203 49.573 27.2995 49.8367C27.2995 49.8201 27.2995 49.8035 27.2995 49.7868C27.7813 48.4243 28.2634 47.0613 28.7453 45.6988C29.6405 46.2284 31.96 44.4924 32.4843 43.9039C31.3212 44.1532 30.1577 44.4027 28.9945 44.6518C28.9945 44.6353 28.9945 44.6187 28.9945 44.602C29.277 43.7878 29.5596 42.9734 29.842 42.1592C31.4206 41.7936 32.9997 41.4279 34.5782 41.0622C34.6281 40.8463 34.6779 40.6303 34.7278 40.4142C33.9081 40.596 31.304 42.219 30.6895 40.9127C30.4339 40.3577 30.9324 39.181 31.0883 38.5696C32.0687 38.3868 33.0494 38.204 34.0298 38.0213C34.0089 38.3017 33.8318 38.724 33.9799 38.8189C34.1881 38.9909 34.5815 39.1996 34.8275 39.1679C35.0934 38.553 35.3593 37.938 35.6251 37.3233C35.6251 37.3067 35.6251 37.2901 35.6251 37.2734C34.0798 37.5559 32.534 37.8385 30.9887 38.121C30.9887 38.1044 30.9887 38.0879 30.9887 38.0711C31.2712 37.2902 31.5537 36.509 31.8362 35.7281C36.0567 34.9471 40.2788 34.1658 44.4993 33.385C44.1565 35.5486 41.8755 36.0733 39.6634 36.3762C39.5969 36.5423 39.5304 36.7086 39.464 36.8748C41.0174 36.4914 42.4357 35.5478 43.3526 37.2238C43.4213 35.6801 46.104 34.1256 46.9421 33.0359C46.9421 33.0193 46.9421 33.0027 46.9421 32.9862C44.4804 32.0537 44.7826 28.3599 46.7926 27.1531C48.6 26.0681 51.2712 27.1687 51.6285 28.8981C52.5425 28.3165 53.4567 27.7347 54.3706 27.1531C53.5398 28.0003 52.7087 28.848 51.8779 29.6954Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
7
public/assets/fenxi/7lecai-1.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 19">
|
||||
<path id="矢量 50" d="M38.0183 28.4988C37.8854 28.4822 37.7524 28.4656 37.6194 28.449C37.2422 28.7113 36.6771 29.3268 37.0212 30.0942C37.6132 29.8404 38.2761 29.551 38.1678 28.748C38.118 28.6651 38.0681 28.582 38.0183 28.4988Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 51" d="M43.253 41.5609C43.2198 41.3449 43.1865 41.1289 43.1534 40.9127C43.8655 40.3423 45.3483 38.6984 45.7457 37.8716C45.7291 37.8385 45.7125 37.8051 45.696 37.7719C44.8483 37.9193 44.0981 38.0624 43.4525 37.6223C43.4026 37.506 43.3527 37.3896 43.3028 37.2733C43.2986 38.0187 42.9553 38.3395 42.7545 38.8688C41.7077 39.1013 40.6605 39.334 39.6136 39.5666C39.6967 39.2344 39.7798 38.9019 39.8629 38.5696C39.6469 38.5031 39.4308 38.4366 39.2148 38.3702C38.9324 39.0182 38.6498 39.6664 38.3673 40.3145C39.9624 39.9987 41.5581 39.683 43.1534 39.3672C42.4227 41.8907 40.4358 42.2557 37.769 42.8072C37.6195 43.3224 37.4699 43.8376 37.3203 44.3528C37.3369 44.3528 37.3535 44.3528 37.3701 44.3528C37.3701 44.3195 37.3701 44.2862 37.3701 44.2531C39.4835 42.1773 41.0645 42.4143 42.4054 45.0507C42.6713 44.7848 42.9373 44.5188 43.2031 44.2531C44.0671 43.4554 44.9315 42.6576 45.7955 41.8599C45.7955 41.8101 45.7955 41.7602 45.7955 41.7103C45.7623 41.6773 45.729 41.6439 45.6958 41.6107C44.6542 41.6318 44.0192 42.0217 43.253 41.5609Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 52" d="M32.0001 0C14.327 0 0 14.3269 0 32C0 49.6731 14.327 64 32.0001 64C49.6731 64 64 49.6731 64 32C63.9999 14.3269 49.6731 0 32.0001 0ZM52.9746 16.5337C52.6756 17.2649 52.3764 17.9962 52.0773 18.7274C51.1994 19.7145 47.1946 19.5488 45.4964 19.874C42.1244 20.5198 39.9534 21.2417 39.4142 24.71C39.4973 24.71 39.5803 24.71 39.6634 24.71C40.5607 24.5936 41.4583 24.4773 42.3556 24.3609C42.6713 23.2643 42.987 22.1672 43.3027 21.0705C44.6488 20.8046 45.9951 20.5387 47.341 20.2728C47.0586 21.4194 46.7759 22.5663 46.4935 23.7128C48.205 23.4469 49.917 23.181 51.6285 22.9151C51.6285 22.9318 51.6285 22.9484 51.6285 22.965C51.3294 23.7791 51.0302 24.5936 50.731 25.4079C49.0694 25.6571 47.4073 25.9064 45.7456 26.1557C45.4466 27.2357 45.1474 28.3162 44.8483 29.3962C44.0136 32.1402 43.3776 34.6959 39.4141 33.4843C38.8158 33.2517 38.2175 33.019 37.6193 32.7863C36.2625 33.7702 34.5113 34.7079 32.1353 34.3817C32.667 32.8532 33.1988 31.3239 33.7306 29.7951C34.8589 30.0452 35.0517 30.2694 36.3231 29.9945C35.7405 27.7268 38.2097 26.4735 39.5138 27.9504C40.4855 29.0511 39.3013 30.3223 39.2147 31.1412C39.3808 31.1578 39.5471 31.1744 39.7133 31.1911C40.8362 30.4825 41.3541 28.2227 41.6077 26.7041C39.2149 27.0696 36.8214 27.4353 34.4287 27.8009C34.7776 27.0199 35.1266 26.2386 35.4756 25.4577C36.6667 22.7403 37.6389 20.0061 40.3614 18.827C44.2905 17.1253 50.4798 17.3788 53.6227 14.9383C53.7043 15.3733 53.1544 16.1221 52.9746 16.5337ZM12.2433 51.831C12.8581 49.7041 13.4731 47.5765 14.0879 45.4496C14.9643 42.9914 16.2414 40.7002 17.3783 38.4699C18.3255 36.6255 19.2729 34.7805 20.22 32.936C22.0178 30.1368 24.3002 27.551 26.3522 24.9592C27.753 23.1899 29.6255 21.7209 30.8889 19.8242C29.4233 20.7224 28.614 20.7901 26.4519 21.1204C25.6875 21.1537 24.9229 21.1869 24.1586 21.2201C20.5085 22.0271 18.6903 23.9875 17.7772 27.5018C16.1154 27.7677 14.4533 28.0337 12.7917 28.2996C12.7917 28.2829 12.7917 28.2663 12.7917 28.2497C13.8385 24.8931 14.8857 21.5355 15.9325 18.179C17.1954 18.046 18.4586 17.9131 19.7215 17.7802C19.7048 18.0958 19.6883 18.4117 19.6716 18.7274C23.2753 17.1819 26.3396 15.3956 30.6397 14.4897C34.6711 13.6404 36.9813 15.362 39.0154 12.0967C39.6965 12.0302 40.3781 11.9637 41.0593 11.8972C41.1591 11.8972 41.2588 11.8972 41.3584 11.8972C40.6273 13.3761 39.896 14.8554 39.1649 16.3343C37.1111 19.6083 34.4669 22.4572 32.4345 25.8067C31.7864 27.1693 31.1381 28.5322 30.4901 29.8948C29.3875 32.3979 28.1812 35.1502 27.2994 37.8716C26.0723 41.6581 25.5411 45.7513 24.9562 50.1358C20.7191 50.7008 16.4805 51.2659 12.2433 51.831ZM51.8779 29.6954C51.8613 30.0278 51.8447 30.3602 51.8281 30.6925C51.6999 31.2623 51.3984 31.8354 51.0802 32.238C50.7226 32.6904 50.0475 33.1024 49.435 33.2849C49.1473 33.3708 48.8253 33.3116 48.6374 33.4844C47.9728 34.4149 47.3079 35.3457 46.6432 36.2762C46.8208 36.9667 48.2596 36.454 48.9365 36.5755C49.0362 36.6752 49.136 36.7749 49.2356 36.8745C49.231 37.7456 47.2299 39.8666 46.6432 40.3145C46.7096 40.4142 46.7761 40.5139 46.8426 40.6136C47.7022 40.6727 48.5893 40.4561 49.136 40.8629C49.1692 41.029 49.2024 41.1953 49.2357 41.3614C48.7377 42.4138 47.9815 43.2446 47.3411 44.1532C46.7429 45.1835 46.1446 46.2141 45.5464 47.2443C43.4115 47.5439 39.586 48.9108 38.0183 47.6929C37.0812 46.965 37.4636 46.3714 37.0212 45.2002C36.6888 46.3467 36.3565 47.4936 36.0241 48.6402C34.7115 48.8728 33.3982 49.1055 32.0855 49.3381C32.0855 49.3215 32.0855 49.3049 32.0855 49.2882C32.2683 48.6236 32.4512 47.9588 32.634 47.2941C31.0259 48.3239 29.7203 49.573 27.2995 49.8367C27.2995 49.8201 27.2995 49.8035 27.2995 49.7868C27.7813 48.4243 28.2634 47.0613 28.7453 45.6988C29.6405 46.2284 31.96 44.4924 32.4843 43.9039C31.3212 44.1532 30.1577 44.4027 28.9945 44.6518C28.9945 44.6353 28.9945 44.6187 28.9945 44.602C29.277 43.7878 29.5596 42.9734 29.842 42.1592C31.4206 41.7936 32.9997 41.4279 34.5782 41.0622C34.6281 40.8463 34.6779 40.6303 34.7278 40.4142C33.9081 40.596 31.304 42.219 30.6895 40.9127C30.4339 40.3577 30.9324 39.181 31.0883 38.5696C32.0687 38.3868 33.0494 38.204 34.0298 38.0213C34.0089 38.3017 33.8318 38.724 33.9799 38.8189C34.1881 38.9909 34.5815 39.1996 34.8275 39.1679C35.0934 38.553 35.3593 37.938 35.6251 37.3233C35.6251 37.3067 35.6251 37.2901 35.6251 37.2734C34.0798 37.5559 32.534 37.8385 30.9887 38.121C30.9887 38.1044 30.9887 38.0879 30.9887 38.0711C31.2712 37.2902 31.5537 36.509 31.8362 35.7281C36.0567 34.9471 40.2788 34.1658 44.4993 33.385C44.1565 35.5486 41.8755 36.0733 39.6634 36.3762C39.5969 36.5423 39.5304 36.7086 39.464 36.8748C41.0174 36.4914 42.4357 35.5478 43.3526 37.2238C43.4213 35.6801 46.104 34.1256 46.9421 33.0359C46.9421 33.0193 46.9421 33.0027 46.9421 32.9862C44.4804 32.0537 44.7826 28.3599 46.7926 27.1531C48.6 26.0681 51.2712 27.1687 51.6285 28.8981C52.5425 28.3165 53.4567 27.7347 54.3706 27.1531C53.5398 28.0003 52.7087 28.848 51.8779 29.6954Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
13
public/assets/fenxi/7xingcai-0.svg
Normal file
|
After Width: | Height: | Size: 41 KiB |
11
public/assets/fenxi/7xingcai-1.svg
Normal file
|
After Width: | Height: | Size: 41 KiB |
7
public/assets/fenxi/daletou-0.svg
Normal file
|
After Width: | Height: | Size: 14 KiB |
3
public/assets/fenxi/daletou-1.svg
Normal file
|
After Width: | Height: | Size: 11 KiB |
5
public/assets/fenxi/fenxi-1.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 143 117" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="143.000000" height="117.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 91">
|
||||
<path id="矢量 94" d="M97.5001 71.4999L117 71.4999L117 97.5L97.5001 97.5L97.5001 71.4999ZM64.9999 45.5L84.5 45.5L84.5 97.5L64.9999 97.5L64.9999 45.5ZM25.9999 32.4999L45.4999 32.4999L45.4999 97.5L25.9999 97.5L25.9999 32.4999ZM13 10.4C12.8292 10.4 12.6602 10.4167 12.4927 10.45C12.3253 10.4833 12.1627 10.5326 12.005 10.598C11.8473 10.6633 11.6974 10.7434 11.5555 10.8382C11.4135 10.933 11.2822 11.0408 11.1615 11.1615C11.0408 11.2822 10.933 11.4136 10.8381 11.5555C10.7433 11.6974 10.6632 11.8473 10.5979 12.005C10.5325 12.1627 10.4832 12.3253 10.4499 12.4927C10.4166 12.6602 10.3999 12.8292 10.3999 12.9999L10.3999 104C10.3999 104.171 10.4166 104.34 10.4499 104.507C10.4832 104.675 10.5325 104.837 10.5979 104.995C10.6632 105.153 10.7433 105.303 10.8381 105.444C10.933 105.586 11.0408 105.718 11.1615 105.838C11.2822 105.959 11.4135 106.067 11.5555 106.162C11.6974 106.257 11.8473 106.337 12.005 106.402C12.1627 106.467 12.3253 106.517 12.4927 106.55C12.6602 106.583 12.8292 106.6 13 106.6L130 106.6C130.171 106.6 130.34 106.583 130.507 106.55C130.675 106.517 130.837 106.467 130.995 106.402C131.153 106.337 131.303 106.257 131.445 106.162C131.586 106.067 131.718 105.959 131.839 105.838C131.959 105.718 132.067 105.586 132.162 105.444C132.257 105.303 132.337 105.153 132.402 104.995C132.467 104.837 132.517 104.675 132.55 104.507C132.583 104.34 132.6 104.171 132.6 104L132.6 12.9999C132.6 12.8292 132.583 12.6602 132.55 12.4927C132.517 12.3253 132.467 12.1627 132.402 12.005C132.337 11.8473 132.257 11.6975 132.162 11.5555C132.067 11.4136 131.959 11.2822 131.839 11.1615C131.718 11.0408 131.586 10.933 131.445 10.8382C131.303 10.7434 131.153 10.6633 130.995 10.598C130.837 10.5326 130.675 10.4833 130.507 10.45C130.34 10.4167 130.171 10.4 130 10.4L13 10.4ZM13 0L130 0C130.426 7.61329e-08 130.851 0.0208662 131.274 0.0625985C131.698 0.104331 132.119 0.166728 132.536 0.249791C132.954 0.332853 133.366 0.436181 133.774 0.559774C134.181 0.683367 134.582 0.82663 134.975 0.989563C135.368 1.1525 135.753 1.33431 136.128 1.53502C136.504 1.73572 136.868 1.95434 137.222 2.19089C137.576 2.42743 137.918 2.68075 138.247 2.95085C138.576 3.22096 138.891 3.50654 139.192 3.8076C139.493 4.10866 139.779 4.42375 140.049 4.75287C140.319 5.08199 140.573 5.42355 140.809 5.77756C141.046 6.13158 141.264 6.49633 141.465 6.87182C141.666 7.24731 141.847 7.63173 142.01 8.02508C142.173 8.41844 142.317 8.81883 142.44 9.22626C142.564 9.63369 142.667 10.0462 142.75 10.4638C142.833 10.8814 142.896 11.302 142.937 11.7257C142.979 12.1494 143 12.5742 143 12.9999L143 104C143 104.426 142.979 104.851 142.937 105.274C142.896 105.698 142.833 106.119 142.75 106.536C142.667 106.954 142.564 107.366 142.44 107.774C142.317 108.181 142.173 108.582 142.01 108.975C141.847 109.368 141.666 109.753 141.465 110.128C141.264 110.504 141.046 110.868 140.809 111.222C140.573 111.576 140.319 111.918 140.049 112.247C139.779 112.576 139.493 112.891 139.192 113.192C138.891 113.493 138.576 113.779 138.247 114.049C137.918 114.319 137.576 114.573 137.222 114.809C136.868 115.046 136.504 115.264 136.128 115.465C135.753 115.666 135.368 115.847 134.975 116.01C134.582 116.173 134.181 116.317 133.774 116.44C133.366 116.564 132.954 116.667 132.536 116.75C132.119 116.833 131.698 116.896 131.274 116.937C130.851 116.979 130.426 117 130 117L13 117C12.5742 117 12.1495 116.979 11.7257 116.937C11.302 116.896 10.8814 116.833 10.4638 116.75C10.0462 116.667 9.6337 116.564 9.22627 116.44C8.81884 116.317 8.41844 116.173 8.02509 116.01C7.63173 115.847 7.24731 115.666 6.87182 115.465C6.49633 115.264 6.13158 115.046 5.77757 114.809C5.42356 114.573 5.08199 114.319 4.75287 114.049C4.42375 113.779 4.10866 113.493 3.8076 113.192C3.50654 112.891 3.22096 112.576 2.95085 112.247C2.68075 111.918 2.42743 111.576 2.19089 111.222C1.95435 110.868 1.73572 110.504 1.53502 110.128C1.33431 109.753 1.1525 109.368 0.989563 108.975C0.82663 108.582 0.683367 108.181 0.559774 107.774C0.436181 107.366 0.332853 106.954 0.249791 106.536C0.166728 106.119 0.104331 105.698 0.0625983 105.274C0.0208661 104.851 0 104.426 0 104L0 12.9999C-5.70997e-08 12.5742 0.020866 12.1494 0.0625982 11.7257C0.10433 11.302 0.166728 10.8814 0.24979 10.4638C0.332853 10.0462 0.436181 9.63369 0.559773 9.22626C0.683366 8.81883 0.826629 8.41844 0.989562 8.02508C1.1525 7.63173 1.33431 7.2473 1.53502 6.87181C1.73572 6.49632 1.95435 6.13157 2.19089 5.77756C2.42743 5.42355 2.68075 5.08199 2.95085 4.75287C3.22096 4.42375 3.50654 4.10866 3.8076 3.8076C4.10866 3.50653 4.42375 3.22095 4.75287 2.95085C5.08199 2.68075 5.42356 2.42743 5.77757 2.19089C6.13158 1.95434 6.49633 1.73572 6.87182 1.53502C7.24731 1.33431 7.63173 1.15249 8.02509 0.989561C8.41844 0.826629 8.81884 0.683366 9.22627 0.559773C9.6337 0.43618 10.0462 0.332852 10.4638 0.24979C10.8814 0.166728 11.302 0.10433 11.7257 0.0625981C12.1495 0.0208659 12.5742 -7.61329e-08 13 0Z" fill="rgb(255,255,255)" fill-opacity="0.379999995" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
3
public/assets/fenxi/fenxi-2.svg
Normal file
|
After Width: | Height: | Size: 20 KiB |
3
public/assets/fenxi/fenxi-3.svg
Normal file
|
After Width: | Height: | Size: 17 KiB |
5
public/assets/fenxi/fenxi-4.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 117 117" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="117.000000" height="117.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 95">
|
||||
<path id="矢量 99" d="M108.643 0L8.35714 0C3.74175 0 0 3.74175 0 8.35714L0 108.643C0 113.258 3.74175 117 8.35714 117L108.643 117C113.258 117 117 113.258 117 108.643L117 8.35714C117 3.74175 113.258 0 108.643 0ZM108.643 104.465C108.643 106.772 106.773 108.643 104.465 108.643L12.6659 108.643C10.3583 108.643 8.48793 106.773 8.48793 104.465L8.48793 12.6657C8.48793 10.3582 10.3579 8.48778 12.6659 8.48778L104.465 8.48778C106.772 8.48778 108.643 10.3577 108.643 12.6657L108.643 104.465ZM91.9292 44.6454L72.4072 44.6454L72.4072 25.2011C72.4072 20.5874 68.6658 16.8451 64.0508 16.8451L25.2971 16.8451C20.6824 16.8451 16.9408 20.5864 16.9408 25.2011L16.9408 64.1289C16.9408 68.7426 20.6822 72.485 25.2971 72.485L44.8191 72.485L44.8191 91.9292C44.8191 96.5429 48.5606 100.285 53.1755 100.285L91.9292 100.285C96.544 100.285 100.286 96.544 100.286 91.9292L100.286 53.0015C100.286 48.3878 96.5441 44.6454 91.9292 44.6454L91.9292 44.6454ZM29.5767 64.0407C27.2692 64.0407 25.3985 62.1691 25.3985 59.8611L25.3985 29.5496C25.3985 27.2413 27.2692 25.37 29.5767 25.37L59.7708 25.37C62.0785 25.37 63.949 27.2416 63.949 29.5496L63.949 44.6457L53.1753 44.6457C48.5605 44.6457 44.8189 48.387 44.8189 53.0018L44.8189 64.0409L29.5767 64.0409L29.5767 64.0407ZM63.949 53.1704L63.949 59.8612C63.949 62.1695 62.0782 64.0409 59.7708 64.0409L53.277 64.0409L53.277 57.3501C53.277 55.0418 55.1479 53.1704 57.4552 53.1704L63.949 53.1704L63.949 53.1704ZM91.8275 87.6614C91.8275 89.9697 89.9568 91.841 87.6493 91.841L57.4552 91.841C55.1477 91.841 53.277 89.9694 53.277 87.6614L53.277 72.4851L64.0507 72.4851C68.6655 72.4851 72.4071 68.7438 72.4071 64.129L72.4071 53.1703L87.6493 53.1703C89.9568 53.1703 91.8275 55.0419 91.8275 57.3499L91.8275 87.6612L91.8275 87.6614Z" fill="rgb(255,255,255)" fill-opacity="0.370000005" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
3
public/assets/fenxi/kuaile-0.svg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
5
public/assets/fenxi/kuaile8-1.svg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
11
public/assets/fenxi/pailie-1.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 21">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6373 35.721C18.6054 35.91 18.4455 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6283 36.477 19.8521 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35262 33.579L7.6723 32.697L7.41656 32.76L7.09688 32.8545L7.60837 31.5L7.99198 31.5L8.31166 30.618L7.92805 30.618L8.27969 29.736L7.03294 29.736L6.71326 30.618L6.20177 30.618L5.88209 31.5L6.32964 31.5L5.72225 33.075L5.40257 33.075L5.05092 33.138L4.63534 34.1775L5.05092 34.1145C5.14683 34.083 5.24273 34.0515 5.33864 34.0515L4.69928 35.721C4.66731 35.9415 4.4755 36.0675 4.25172 36.036L4.05991 36.036L3.74023 36.8865L4.4755 36.8865C5.1788 36.918 5.81816 36.477 6.00996 35.8155L6.80917 33.705L7.35262 33.579L7.35262 33.579ZM12.2757 34.524L11.0609 34.524L11.5404 33.3585L12.4995 33.3585L12.8511 32.445L11.8921 32.445L12.2437 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.947 29.673L11.6363 29.673L8.85512 36.918L10.1658 36.918L10.7732 35.3745L11.9241 35.3745L12.2757 34.524Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<g id="5">
|
||||
<path id="矢量 54" d="M32.803 42.6712C33.5155 42.8781 34.3198 42.9816 35.2161 42.9816C35.9088 42.9816 36.5689 42.8819 37.1963 42.6824C37.5199 42.5796 37.8348 42.4502 38.141 42.2943C38.4746 42.1238 38.7847 41.9246 39.0713 41.6967C39.5611 41.3072 39.9822 40.834 40.3347 40.2769C40.8934 39.3937 41.1728 38.3314 41.1728 37.0899C41.1728 35.8632 40.9347 34.8581 40.4584 34.0748C40.1572 33.573 39.7897 33.1546 39.3558 32.8195C39.1092 32.629 38.8411 32.4655 38.5516 32.3289C38.4559 32.2837 38.3591 32.2413 38.2611 32.2015C37.5415 31.9095 36.7608 31.7635 35.9192 31.7635C35.5329 31.7635 35.1786 31.8023 34.8561 31.8799C34.5336 31.9575 34.2055 32.0702 33.8717 32.218L34.1867 28.6542L40.3909 28.6542L40.3909 25.8552L31.273 25.8552L30.8005 34.0138L32.353 35.0059C32.8517 34.6881 33.2755 34.4628 33.6242 34.3297C33.9767 34.1967 34.4061 34.1302 34.9123 34.1302C35.5091 34.1302 36.0267 34.2601 36.4649 34.5198C36.6518 34.6305 36.8242 34.7648 36.9823 34.9228C37.0286 34.9687 37.0728 35.0163 37.1151 35.0656C37.559 35.5832 37.781 36.2857 37.781 37.173C37.781 37.8271 37.6516 38.3869 37.3929 38.8524C37.2279 39.1494 37.0232 39.4005 36.7788 39.6057C36.64 39.7223 36.4885 39.8241 36.3242 39.911C35.8742 40.1512 35.3529 40.2713 34.7605 40.2713C34.243 40.2713 33.7574 40.1937 33.3036 40.0385C32.8536 39.8796 32.4393 39.6727 32.0605 39.4178C31.7354 39.1967 31.43 38.9548 31.1444 38.6921C31.1006 38.6518 31.0572 38.611 31.0143 38.5698L29.4393 40.6925C29.8743 41.1064 30.3656 41.4888 30.913 41.8398C31.4605 42.1872 32.0905 42.4643 32.803 42.6712Z" fill="rgb(241,49,68)" fill-rule="evenodd" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
9
public/assets/fenxi/pailie3-0.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 16">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6373 35.721C18.6054 35.91 18.4455 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6283 36.477 19.8521 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35262 33.579L7.6723 32.697L7.41656 32.76L7.09688 32.8545L7.60837 31.5L7.99198 31.5L8.31166 30.618L7.92805 30.618L8.27969 29.736L7.03294 29.736L6.71326 30.618L6.20177 30.618L5.88209 31.5L6.32964 31.5L5.72225 33.075L5.40257 33.075L5.05092 33.138L4.63534 34.1775L5.05092 34.1145C5.14683 34.083 5.24273 34.0515 5.33864 34.0515L4.69928 35.721C4.66731 35.9415 4.4755 36.0675 4.25172 36.036L4.05991 36.036L3.74023 36.8865L4.4755 36.8865C5.1788 36.918 5.81816 36.477 6.00996 35.8155L6.80916 33.705L7.35262 33.579L7.35262 33.579ZM12.2757 34.524L11.0609 34.524L11.5404 33.3585L12.4995 33.3585L12.8511 32.445L11.8921 32.445L12.2437 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.947 29.673L11.6363 29.673L8.85512 36.918L10.1658 36.918L10.7732 35.3745L11.924 35.3745L12.2757 34.524Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 44" d="M40.7912 33.39C42.1019 32.823 42.9011 31.5 42.7412 30.114C42.7732 28.917 42.3256 27.783 41.4945 26.901C40.4715 25.956 38.969 25.641 35.7083 25.641C30.1139 25.641 28.6114 26.6175 28.5155 31.0905L32.1918 31.0905C32.1918 29.736 32.1918 28.98 35.4525 28.98C37.8501 28.98 39.0969 29.0745 39.0969 30.618C39.0969 32.1615 38.01 32.1615 37.1148 32.1615L33.918 32.1615L33.918 35.028L37.1148 35.028C38.0419 35.028 39.3526 34.902 39.3526 36.729C39.3526 38.556 37.6903 38.5245 36.0279 38.5245C32.1278 38.5245 31.9041 38.3355 31.9041 36.036L28.1318 36.036C28.1318 40.4775 29.0269 41.8635 35.932 41.8635C39.8641 41.8635 43.0609 41.328 43.0609 37.107C43.0609 34.272 41.4945 33.642 40.7912 33.39Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
9
public/assets/fenxi/pailie3-1.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 16">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6373 35.721C18.6054 35.91 18.4455 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6283 36.477 19.8521 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35262 33.579L7.6723 32.697L7.41656 32.76L7.09688 32.8545L7.60837 31.5L7.99198 31.5L8.31166 30.618L7.92805 30.618L8.27969 29.736L7.03294 29.736L6.71326 30.618L6.20177 30.618L5.88209 31.5L6.32964 31.5L5.72225 33.075L5.40257 33.075L5.05092 33.138L4.63534 34.1775L5.05092 34.1145C5.14683 34.083 5.24273 34.0515 5.33864 34.0515L4.69928 35.721C4.66731 35.9415 4.4755 36.0675 4.25172 36.036L4.05991 36.036L3.74023 36.8865L4.4755 36.8865C5.1788 36.918 5.81816 36.477 6.00996 35.8155L6.80916 33.705L7.35262 33.579L7.35262 33.579ZM12.2757 34.524L11.0609 34.524L11.5404 33.3585L12.4995 33.3585L12.8511 32.445L11.8921 32.445L12.2437 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.947 29.673L11.6363 29.673L8.85512 36.918L10.1658 36.918L10.7732 35.3745L11.924 35.3745L12.2757 34.524Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 44" d="M40.7912 33.39C42.1019 32.823 42.9011 31.5 42.7412 30.114C42.7732 28.917 42.3256 27.783 41.4945 26.901C40.4715 25.956 38.969 25.641 35.7083 25.641C30.1139 25.641 28.6114 26.6175 28.5155 31.0905L32.1918 31.0905C32.1918 29.736 32.1918 28.98 35.4525 28.98C37.8501 28.98 39.0969 29.0745 39.0969 30.618C39.0969 32.1615 38.01 32.1615 37.1148 32.1615L33.918 32.1615L33.918 35.028L37.1148 35.028C38.0419 35.028 39.3526 34.902 39.3526 36.729C39.3526 38.556 37.6903 38.5245 36.0279 38.5245C32.1278 38.5245 31.9041 38.3355 31.9041 36.036L28.1318 36.036C28.1318 40.4775 29.0269 41.8635 35.932 41.8635C39.8641 41.8635 43.0609 41.328 43.0609 37.107C43.0609 34.272 41.4945 33.642 40.7912 33.39Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
11
public/assets/fenxi/pailie5.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 21">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6373 35.721C18.6054 35.91 18.4455 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6283 36.477 19.8521 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35262 33.579L7.6723 32.697L7.41656 32.76L7.09688 32.8545L7.60837 31.5L7.99198 31.5L8.31166 30.618L7.92805 30.618L8.27969 29.736L7.03294 29.736L6.71326 30.618L6.20177 30.618L5.88209 31.5L6.32964 31.5L5.72225 33.075L5.40257 33.075L5.05092 33.138L4.63534 34.1775L5.05092 34.1145C5.14683 34.083 5.24273 34.0515 5.33864 34.0515L4.69928 35.721C4.66731 35.9415 4.4755 36.0675 4.25172 36.036L4.05991 36.036L3.74023 36.8865L4.4755 36.8865C5.1788 36.918 5.81816 36.477 6.00996 35.8155L6.80917 33.705L7.35262 33.579L7.35262 33.579ZM12.2757 34.524L11.0609 34.524L11.5404 33.3585L12.4995 33.3585L12.8511 32.445L11.8921 32.445L12.2437 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.947 29.673L11.6363 29.673L8.85512 36.918L10.1658 36.918L10.7732 35.3745L11.9241 35.3745L12.2757 34.524Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(200,200,200)" fill-rule="nonzero" />
|
||||
<g id="5">
|
||||
<path id="矢量 54" d="M32.803 42.6712C33.5155 42.8781 34.3198 42.9816 35.2161 42.9816C35.9088 42.9816 36.5689 42.8819 37.1963 42.6824C37.5199 42.5796 37.8348 42.4502 38.141 42.2943C38.4746 42.1238 38.7847 41.9246 39.0713 41.6967C39.5611 41.3072 39.9822 40.834 40.3347 40.2769C40.8934 39.3937 41.1728 38.3314 41.1728 37.0899C41.1728 35.8632 40.9347 34.8581 40.4584 34.0748C40.1572 33.573 39.7897 33.1546 39.3558 32.8195C39.1092 32.629 38.8411 32.4655 38.5516 32.3289C38.4559 32.2837 38.3591 32.2413 38.2611 32.2015C37.5415 31.9095 36.7608 31.7635 35.9192 31.7635C35.5329 31.7635 35.1786 31.8023 34.8561 31.8799C34.5336 31.9575 34.2055 32.0702 33.8717 32.218L34.1867 28.6542L40.3909 28.6542L40.3909 25.8552L31.273 25.8552L30.8005 34.0138L32.353 35.0059C32.8517 34.6881 33.2755 34.4628 33.6242 34.3297C33.9767 34.1967 34.4061 34.1302 34.9123 34.1302C35.5091 34.1302 36.0267 34.2601 36.4649 34.5198C36.6518 34.6305 36.8242 34.7648 36.9823 34.9228C37.0286 34.9687 37.0728 35.0163 37.1151 35.0656C37.559 35.5832 37.781 36.2857 37.781 37.173C37.781 37.8271 37.6516 38.3869 37.3929 38.8524C37.2279 39.1494 37.0232 39.4005 36.7788 39.6057C36.64 39.7223 36.4885 39.8241 36.3242 39.911C35.8742 40.1512 35.3529 40.2713 34.7605 40.2713C34.243 40.2713 33.7574 40.1937 33.3036 40.0385C32.8536 39.8796 32.4393 39.6727 32.0605 39.4178C31.7354 39.1967 31.43 38.9548 31.1444 38.6921C31.1006 38.6518 31.0572 38.611 31.0143 38.5698L29.4393 40.6925C29.8743 41.1064 30.3656 41.4888 30.913 41.8398C31.4605 42.1872 32.0905 42.4643 32.803 42.6712Z" fill="rgb(200,200,200)" fill-rule="evenodd" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
6
public/assets/fenxi/ssq-0.svg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
6
public/assets/fenxi/ssq-1.svg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
5
public/assets/home/about.svg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
6
public/assets/home/dingdan.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg viewBox="0 0 29.1501 37.4263" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="29.150146" height="37.426270" fill="none" customFrame="#000000">
|
||||
<g id="组合 67">
|
||||
<path id="矢量 71" d="M21.8732 6.50801C23.1272 6.50801 24.147 5.53829 24.147 4.33867L24.147 2.16934C24.147 0.969723 23.1272 0 21.8732 0C20.6151 0 19.5994 0.969723 19.5994 2.16934L19.5994 4.33867C19.5994 5.53829 20.6193 6.50801 21.8732 6.50801ZM7.24795 6.50801C8.50191 6.50801 9.52179 5.53829 9.52179 4.33867L9.52179 2.16934C9.52179 0.969723 8.50191 0 7.24795 0C5.98982 0 4.97412 0.969723 4.97412 2.16934L4.97412 4.33867C4.97412 5.53829 5.98982 6.50801 7.24795 6.50801Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 72" d="M25.6391 3.43583L25.6391 4.7692C25.6391 6.4495 23.9421 7.81631 21.8522 7.81631C19.7581 7.81631 18.0611 6.45368 18.0611 4.7692L18.0611 3.24774L11.0055 3.24774L11.0055 4.7692C11.0055 6.4495 9.3085 7.81631 7.21858 7.81631C5.12448 7.81631 3.42747 6.45368 3.42747 4.7692L3.42747 3.46091C1.44204 4.07535 0 5.9312 0 8.12979L0 32.5442C0 35.2402 2.17352 37.4263 4.85697 37.4263L24.2932 37.4263C26.9767 37.4263 29.1502 35.2402 29.1502 32.5442L29.1502 8.12979C29.1544 5.90194 27.6705 4.02101 25.6391 3.43583L25.6391 3.43583ZM23.8376 31.3906L5.32094 31.3906C4.55185 31.3906 3.93323 30.7469 3.93323 29.9486C3.93323 29.1544 4.55602 28.5065 5.32094 28.5065L23.8418 28.5065C24.6109 28.5065 25.2295 29.1502 25.2295 29.9486C25.2295 30.7469 24.6067 31.3906 23.8376 31.3906ZM23.8376 23.7415L5.32094 23.7415C4.55185 23.7415 3.93323 23.0978 3.93323 22.2994C3.93323 21.5053 4.55602 20.8574 5.32094 20.8574L23.8418 20.8574C24.6109 20.8574 25.2295 21.5011 25.2295 22.2994C25.2295 23.0978 24.6067 23.7415 23.8376 23.7415ZM23.8376 16.0924L5.32094 16.0924C4.55185 16.0924 3.93323 15.4487 3.93323 14.6503C3.93323 13.8562 4.55602 13.2083 5.32094 13.2083L23.8418 13.2083C24.6109 13.2083 25.2295 13.852 25.2295 14.6503C25.2295 15.4487 24.6067 16.0924 23.8376 16.0924Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
5
public/assets/home/duihuan.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 42.3735 34.2413" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="42.373535" height="34.241272" fill="none" customFrame="#000000">
|
||||
<path id="矢量 78" d="M42.2381 11.4137L42.1965 11.2585L35.5879 1.54254C35.1563 0.615989 34.1632 0 33.0401 0L9.33021 0C8.20713 0 7.21401 0.615989 6.78245 1.54254L0.173809 11.2585L0.129615 11.4137C0.0889032 11.5297 0.05767 11.6482 0.0360295 11.7692C0.0143319 11.8901 0.00245526 12.012 0.000342594 12.1348C-0.00177007 12.2577 0.0059954 12.3799 0.0235248 12.5015C0.0410542 12.6231 0.0682333 12.7426 0.104948 12.8599C0.14172 12.9771 0.187627 13.0908 0.242614 13.2008C0.297657 13.3107 0.361094 13.4157 0.432982 13.5155C0.50487 13.6154 0.584237 13.709 0.671142 13.7962C0.758104 13.8834 0.851404 13.9632 0.951156 14.0355L19.3913 33.6589L19.5655 33.7754C20.0412 34.0859 20.6028 34.2412 21.2033 34.2412C21.7857 34.2361 22.3524 34.0756 22.8464 33.7754L23.0206 33.6589L41.4607 14.0355C42.2407 13.3781 42.5838 12.3377 42.2407 11.4112L42.2381 11.4137L42.2381 11.4137ZM21.1618 31.1924L3.23894 12.1436L9.58761 2.8159L32.7775 2.8159L39.1288 12.1462L21.1643 31.195L21.1618 31.195L21.1618 31.1924Z" fill="rgb(241,49,68)" fill-rule="evenodd" />
|
||||
<path id="矢量 78" d="M28.9039 12.1125C28.9039 12.0867 28.9039 12.053 28.8701 12.053C28.8701 11.9909 28.8363 11.9624 28.8363 11.9003C28.8363 11.8912 28.833 11.8836 28.8262 11.8774C28.8195 11.8712 28.8116 11.8685 28.8025 11.8693C28.7408 11.7542 28.6611 11.6532 28.5633 11.5665L23.7589 7.24424C23.6988 7.1928 23.6346 7.14707 23.5663 7.10702C23.498 7.06697 23.4267 7.03321 23.3524 7.00581C23.2781 6.97838 23.2019 6.95769 23.1239 6.94376C23.0459 6.92984 22.9673 6.92287 22.888 6.92287C22.8087 6.92287 22.7301 6.92984 22.6521 6.94376C22.5741 6.95769 22.4979 6.97838 22.4236 7.00581C22.3492 7.03321 22.278 7.06697 22.2097 7.10702C22.1414 7.14707 22.0772 7.1928 22.0171 7.24424C21.9608 7.29222 21.9103 7.34565 21.8657 7.40451C21.821 7.46337 21.7832 7.5263 21.7522 7.59332C21.7212 7.66034 21.6978 7.72989 21.682 7.80194C21.6661 7.87399 21.6582 7.94692 21.6582 8.02067C21.6582 8.09445 21.6661 8.16736 21.682 8.23944C21.6978 8.31149 21.7212 8.38101 21.7522 8.44802C21.7832 8.51504 21.821 8.578 21.8657 8.63686C21.9103 8.69572 21.9608 8.74912 22.0171 8.79713L24.713 11.2041L14.6935 11.2041C14.0124 11.2041 13.4665 11.6881 13.4665 12.2963C13.4665 12.9045 14.0124 13.3911 14.6935 13.3911L27.6768 13.3911C27.7444 13.3911 27.8483 13.3911 27.9159 13.36L27.9497 13.36C28.0617 13.3414 28.1687 13.3077 28.271 13.2587C28.3732 13.2098 28.4666 13.1476 28.5511 13.0722C28.6355 12.9968 28.7077 12.9112 28.7677 12.8154C28.8278 12.7195 28.8731 12.6172 28.9039 12.5085L28.9039 12.4775C28.9039 12.4154 28.9377 12.3248 28.9377 12.2653L28.9377 12.2342C28.9039 12.2342 28.9039 12.1721 28.9039 12.1125ZM27.6768 15.1562L14.6935 15.1562C14.6259 15.1562 14.5246 15.1562 14.4543 15.1873L14.4205 15.1873C14.3089 15.2061 14.2021 15.24 14.1001 15.2891C13.9981 15.3381 13.905 15.4003 13.8208 15.4757C13.7366 15.5511 13.6645 15.6366 13.6048 15.7324C13.5449 15.8281 13.4997 15.9302 13.469 16.0388L13.469 16.0672C13.469 16.1294 13.4327 16.2225 13.4327 16.282L13.4327 16.3105C13.427 16.3749 13.4383 16.4361 13.4665 16.4943C13.4665 16.5253 13.4665 16.5538 13.5002 16.5538C13.5002 16.6159 13.534 16.647 13.534 16.7091C13.5347 16.7183 13.5386 16.7257 13.5459 16.7314C13.5531 16.7371 13.5613 16.7391 13.5704 16.7376C13.6306 16.8522 13.7086 16.9531 13.8044 17.0404L18.614 21.3315C18.6741 21.3828 18.7382 21.4284 18.8064 21.4683C18.8746 21.5082 18.9458 21.5418 19.02 21.5692C19.0942 21.5965 19.1703 21.6171 19.2481 21.631C19.326 21.6448 19.4045 21.6518 19.4836 21.6518C19.5627 21.6518 19.6412 21.6448 19.7191 21.631C19.797 21.6171 19.873 21.5965 19.9472 21.5692C20.0214 21.5418 20.0926 21.5082 20.1608 21.4683C20.229 21.4284 20.2932 21.3828 20.3532 21.3315C20.4095 21.2835 20.46 21.2301 20.5047 21.1713C20.5493 21.1124 20.5871 21.0495 20.6181 20.9824C20.6491 20.9154 20.6725 20.8459 20.6883 20.7739C20.7042 20.7018 20.7121 20.6289 20.7121 20.5551C20.7121 20.4813 20.7042 20.4084 20.6883 20.3364C20.6725 20.2643 20.6491 20.1948 20.6181 20.1277C20.5871 20.0607 20.5493 19.9978 20.5047 19.9389C20.46 19.8801 20.4095 19.8266 20.3532 19.7787L17.6599 17.3768L27.6794 17.3768C28.3605 17.3768 28.9064 16.8903 28.9064 16.282C28.9064 15.6713 28.3605 15.1562 27.6794 15.1562L27.6768 15.1562Z" fill="rgb(241,49,68)" fill-rule="evenodd" />
|
||||
<path id="矢量 78" d="M28.9039 12.1125C28.9039 12.0867 28.9039 12.053 28.8701 12.053C28.8701 11.9909 28.8363 11.9624 28.8363 11.9003C28.8363 11.8912 28.833 11.8836 28.8262 11.8774C28.8195 11.8712 28.8116 11.8685 28.8025 11.8693C28.7408 11.7542 28.6611 11.6532 28.5633 11.5665L23.7589 7.24424C23.6988 7.1928 23.6346 7.14707 23.5663 7.10702C23.498 7.06697 23.4267 7.03321 23.3524 7.00581C23.2781 6.97838 23.2019 6.95769 23.1239 6.94376C23.0459 6.92984 22.9673 6.92287 22.888 6.92287C22.8087 6.92287 22.7301 6.92984 22.6521 6.94376C22.5741 6.95769 22.4979 6.97838 22.4236 7.00581C22.3492 7.03321 22.278 7.06697 22.2097 7.10702C22.1414 7.14707 22.0772 7.1928 22.0171 7.24424C21.9608 7.29222 21.9103 7.34565 21.8657 7.40451C21.821 7.46337 21.7832 7.5263 21.7522 7.59332C21.7212 7.66034 21.6978 7.72989 21.682 7.80194C21.6661 7.87399 21.6582 7.94692 21.6582 8.02067C21.6582 8.09445 21.6661 8.16736 21.682 8.23944C21.6978 8.31149 21.7212 8.38101 21.7522 8.44802C21.7832 8.51504 21.821 8.578 21.8657 8.63686C21.9103 8.69572 21.9608 8.74912 22.0171 8.79713L24.713 11.2041L14.6935 11.2041C14.0124 11.2041 13.4665 11.6881 13.4665 12.2963C13.4665 12.9045 14.0124 13.3911 14.6935 13.3911L27.6768 13.3911C27.7444 13.3911 27.8483 13.3911 27.9159 13.36L27.9497 13.36C28.0617 13.3414 28.1687 13.3077 28.271 13.2587C28.3732 13.2098 28.4666 13.1476 28.5511 13.0722C28.6355 12.9968 28.7077 12.9112 28.7677 12.8154C28.8278 12.7195 28.8731 12.6172 28.9039 12.5085L28.9039 12.4775C28.9039 12.4154 28.9377 12.3248 28.9377 12.2653L28.9377 12.2342C28.9039 12.2342 28.9039 12.1721 28.9039 12.1125ZM27.6768 15.1562L14.6935 15.1562C14.6259 15.1562 14.5246 15.1562 14.4543 15.1873L14.4205 15.1873C14.3089 15.2061 14.2021 15.24 14.1001 15.2891C13.9981 15.3381 13.905 15.4003 13.8208 15.4757C13.7366 15.5511 13.6645 15.6366 13.6048 15.7324C13.5449 15.8281 13.4997 15.9302 13.469 16.0388L13.469 16.0672C13.469 16.1294 13.4327 16.2225 13.4327 16.282L13.4327 16.3105C13.427 16.3749 13.4383 16.4361 13.4665 16.4943C13.4665 16.5253 13.4665 16.5538 13.5002 16.5538C13.5002 16.6159 13.534 16.647 13.534 16.7091C13.5347 16.7183 13.5386 16.7257 13.5459 16.7314C13.5531 16.7371 13.5613 16.7391 13.5704 16.7376C13.6306 16.8522 13.7086 16.9531 13.8044 17.0404L18.614 21.3315C18.6741 21.3828 18.7382 21.4284 18.8064 21.4683C18.8746 21.5082 18.9458 21.5418 19.02 21.5692C19.0942 21.5965 19.1703 21.6171 19.2481 21.631C19.326 21.6448 19.4045 21.6518 19.4836 21.6518C19.5627 21.6518 19.6412 21.6448 19.7191 21.631C19.797 21.6171 19.873 21.5965 19.9472 21.5692C20.0214 21.5418 20.0926 21.5082 20.1608 21.4683C20.229 21.4284 20.2932 21.3828 20.3532 21.3315C20.4095 21.2835 20.46 21.2301 20.5047 21.1713C20.5493 21.1124 20.5871 21.0495 20.6181 20.9824C20.6491 20.9154 20.6725 20.8459 20.6883 20.7739C20.7042 20.7018 20.7121 20.6289 20.7121 20.5551C20.7121 20.4813 20.7042 20.4084 20.6883 20.3364C20.6725 20.2643 20.6491 20.1948 20.6181 20.1277C20.5871 20.0607 20.5493 19.9978 20.5047 19.9389C20.46 19.8801 20.4095 19.8266 20.3532 19.7787L17.6599 17.3768L27.6794 17.3768C28.3605 17.3768 28.9064 16.8903 28.9064 16.282C28.9064 15.6713 28.3605 15.1562 27.6794 15.1562L27.6768 15.1562Z" fill="rgb(241,49,68)" fill-rule="evenodd" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
5
public/assets/home/help.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24.000000" height="24.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 82">
|
||||
<path id="矢量 90" d="M12 0C5.37259 0 0 5.37259 0 12C0 18.6274 5.37259 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37259 18.6274 0 12 0ZM12.0967 20.9183C12.0215 20.9183 11.947 20.911 11.8732 20.8964C11.7994 20.8818 11.7278 20.8601 11.6583 20.8314C11.5888 20.8026 11.5227 20.7674 11.4601 20.7256C11.3976 20.6839 11.3397 20.6364 11.2865 20.5832C11.2332 20.5301 11.1857 20.4722 11.1439 20.4097C11.1021 20.3472 11.0668 20.2812 11.0379 20.2117C11.0091 20.1422 10.9873 20.0706 10.9726 19.9968C10.9579 19.9231 10.9506 19.8486 10.9505 19.7734C10.9505 19.6981 10.9578 19.6236 10.9724 19.5499C10.9871 19.4761 11.0088 19.4044 11.0375 19.3349C11.0663 19.2654 11.1016 19.1994 11.1433 19.1368C11.1851 19.0743 11.2326 19.0164 11.2857 18.9632C11.3389 18.91 11.3968 18.8625 11.4593 18.8207C11.5218 18.7788 11.5878 18.7435 11.6573 18.7147C11.7268 18.6859 11.7984 18.6642 11.8722 18.6495C11.946 18.6348 12.0205 18.6274 12.0957 18.6274C12.1709 18.6274 12.2454 18.6347 12.3192 18.6494C12.393 18.664 12.4646 18.6858 12.5341 18.7145C12.6036 18.7433 12.6696 18.7786 12.7322 18.8204C12.7947 18.8621 12.8526 18.9096 12.9058 18.9628C12.959 19.016 13.0065 19.0739 13.0483 19.1364C13.0901 19.1989 13.1254 19.265 13.1542 19.3345C13.183 19.4039 13.2047 19.4756 13.2194 19.5494C13.234 19.6231 13.2414 19.6976 13.2414 19.7728C13.2414 19.848 13.234 19.9225 13.2194 19.9962C13.2047 20.0699 13.183 20.1415 13.1543 20.211C13.1255 20.2805 13.0903 20.3464 13.0485 20.409C13.0067 20.4715 12.9593 20.5293 12.9062 20.5825C12.853 20.6357 12.7952 20.6832 12.7327 20.725C12.6702 20.7668 12.6043 20.8021 12.5348 20.8309C12.4654 20.8597 12.3938 20.8814 12.3201 20.8961C12.2464 20.9108 12.1719 20.9182 12.0967 20.9183L12.0967 20.9183ZM16.8597 9.53897C16.6122 10.2476 16.2057 10.9534 15.6838 11.58C15.345 11.9868 14.9855 12.3636 14.639 12.728C14.1887 13.2005 13.7635 13.6469 13.4017 14.1328C12.9375 14.7559 12.7603 15.4451 12.8586 16.2403C12.8671 16.3078 12.8688 16.3753 12.864 16.4431C12.8591 16.5109 12.8476 16.5775 12.8296 16.643C12.8116 16.7085 12.7874 16.7716 12.757 16.8324C12.7265 16.8931 12.6905 16.9503 12.6488 17.0039C12.6071 17.0575 12.5605 17.1066 12.5092 17.151C12.4578 17.1955 12.4026 17.2345 12.3435 17.2681C12.2845 17.3017 12.2227 17.3292 12.1582 17.3506C12.0938 17.372 12.0278 17.3869 11.9604 17.3953C11.9175 17.4007 11.8744 17.4034 11.8311 17.4034C11.7687 17.4033 11.7068 17.3976 11.6454 17.3863C11.584 17.3751 11.5241 17.3584 11.4657 17.3362C11.4074 17.3141 11.3514 17.2869 11.298 17.2547C11.2445 17.2224 11.1944 17.1857 11.1476 17.1443C11.1008 17.103 11.0581 17.0578 11.0195 17.0088C10.9809 16.9598 10.947 16.9076 10.9178 16.8524C10.8886 16.7973 10.8646 16.7399 10.8458 16.6804C10.827 16.6209 10.8137 16.5601 10.8059 16.4982C10.6394 15.1663 10.9541 13.9549 11.7416 12.8977C12.1784 12.3114 12.6672 11.7983 13.14 11.302C13.4785 10.9466 13.7984 10.6109 14.093 10.2569C14.8611 9.33439 15.2113 8.28957 15.0295 7.46198C14.9002 6.87129 14.4559 6.29819 13.8422 5.92784C13.5105 5.7303 13.1551 5.59496 12.776 5.52184C12.3969 5.44872 12.0167 5.44216 11.6353 5.50215C9.89896 5.78483 8.69664 7.49845 8.955 9.32198C8.96453 9.38924 8.96742 9.45677 8.96365 9.5246C8.95988 9.59242 8.94953 9.65922 8.9326 9.72501C8.91567 9.79079 8.89249 9.85429 8.86305 9.91551C8.83362 9.97672 8.79849 10.0345 8.75768 10.0888C8.71687 10.1431 8.67115 10.1929 8.62053 10.2382C8.5699 10.2835 8.51535 10.3234 8.45686 10.3579C8.39838 10.3925 8.33708 10.421 8.27298 10.4435C8.20888 10.4659 8.1432 10.4819 8.07595 10.4915C8.00869 10.501 7.94115 10.5039 7.87333 10.5001C7.80551 10.4963 7.73871 10.486 7.67292 10.4691C7.60714 10.4521 7.54364 10.429 7.48242 10.3995C7.4212 10.3701 7.36345 10.335 7.30915 10.2941C7.25485 10.2533 7.20505 10.2076 7.15976 10.157C7.11447 10.1064 7.07455 10.0518 7.04 9.99333C7.00546 9.93484 6.97695 9.87355 6.95447 9.80945C6.932 9.74534 6.916 9.67967 6.90646 9.61241C6.85706 9.26805 6.84022 8.9221 6.85595 8.57456C6.87167 8.22703 6.91968 7.88401 6.99997 7.54551C7.08026 7.20701 7.19143 6.87898 7.33347 6.56141C7.47551 6.24383 7.64594 5.9423 7.84474 5.65681C8.67077 4.46871 9.8987 3.68845 11.3028 3.45983C11.6121 3.40959 11.9234 3.38678 12.2367 3.3914C12.55 3.39602 12.8605 3.428 13.1682 3.48734C13.4758 3.54668 13.776 3.63246 14.0685 3.74469C14.3611 3.85692 14.6416 3.99386 14.91 4.15552C16.0172 4.82302 16.7979 5.86603 17.0501 7.01767C17.2278 7.82172 17.1634 8.67026 16.8595 9.53974L16.8597 9.53897Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
5
public/assets/home/jiangjing.svg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
5
public/assets/home/kefu.svg
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
3
public/assets/home/mingzhong.svg
Normal file
|
After Width: | Height: | Size: 25 KiB |
6
public/assets/home/qianbao.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg viewBox="0 0 33.8132 34.0272" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="33.813232" height="34.027222" fill="none" customFrame="#000000">
|
||||
<g id="组合 68">
|
||||
<path id="矢量 69" d="M27.9877 5.9865C27.9649 5.90294 27.9649 5.81937 27.9269 5.7358L27.1479 4.06445C26.3536 2.36651 24.9438 1.07501 23.1692 0.429257C21.3983 -0.212695 19.4869 -0.132925 17.7844 0.657168L8.35641 5.05586C7.9992 5.223 7.74839 5.51928 7.62679 5.86115L7.04537 5.86115C3.16168 5.86115 0 9.02152 0 12.9036L0 26.9848C0 30.8669 3.16168 34.0272 7.04537 34.0272L26.7679 34.0272C30.6516 34.0272 33.8132 30.8669 33.8132 26.9848L33.8132 12.8998C33.8094 9.43936 31.29 6.56768 27.9877 5.9865L27.9877 5.9865ZM18.9777 3.21358C19.9961 2.73876 21.1399 2.69318 22.2077 3.08063C23.2718 3.46808 24.1192 4.24298 24.5942 5.25718L24.8754 5.86115L13.2965 5.86115L18.9777 3.21358ZM30.9936 24.1701L24.9134 24.1701C22.584 24.1701 20.6877 22.2746 20.6877 19.9461C20.6877 17.6176 22.584 15.7221 24.9134 15.7221L30.9936 15.7221L30.9936 24.1701ZM24.9134 12.9036C21.0297 12.9036 17.868 16.064 17.868 19.9461C17.868 23.8282 21.0297 26.9886 24.9134 26.9886L30.9936 26.9886C30.9936 29.3171 29.0973 31.2125 26.7679 31.2125L7.04537 31.2125C4.71592 31.2125 2.81967 29.3171 2.81967 26.9886L2.81967 12.9036C2.81967 10.5751 4.71592 8.67966 7.04537 8.67966L26.7679 8.67966C29.0973 8.67966 30.9936 10.5751 30.9936 12.9036L24.9134 12.9036L24.9134 12.9036Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 70" d="M22.4243 19.9461C22.4243 20.0383 22.4288 20.1303 22.4379 20.222C22.4469 20.3137 22.4604 20.4048 22.4784 20.4952C22.4964 20.5857 22.5188 20.675 22.5456 20.7632C22.5723 20.8514 22.6034 20.9381 22.6387 21.0233C22.674 21.1084 22.7133 21.1917 22.7568 21.273C22.8003 21.3543 22.8476 21.4332 22.8989 21.5099C22.9501 21.5865 23.005 21.6605 23.0635 21.7318C23.122 21.803 23.1839 21.8712 23.2491 21.9364C23.3143 22.0016 23.3825 22.0634 23.4538 22.1219C23.5251 22.1804 23.5991 22.2352 23.6758 22.2865C23.7525 22.3377 23.8315 22.385 23.9128 22.4285C23.9941 22.4719 24.0774 22.5113 24.1626 22.5466C24.2478 22.5818 24.3345 22.6129 24.4228 22.6396C24.511 22.6664 24.6004 22.6888 24.6908 22.7067C24.7813 22.7247 24.8724 22.7382 24.9642 22.7473C25.056 22.7563 25.148 22.7608 25.2402 22.7608C25.3324 22.7608 25.4244 22.7563 25.5162 22.7473C25.608 22.7382 25.6991 22.7247 25.7895 22.7067C25.88 22.6888 25.9693 22.6664 26.0576 22.6396C26.1458 22.6129 26.2326 22.5818 26.3178 22.5466C26.403 22.5113 26.4862 22.4719 26.5676 22.4285C26.6489 22.385 26.7279 22.3377 26.8046 22.2865C26.8813 22.2352 26.9553 22.1804 27.0266 22.1219C27.0978 22.0634 27.1661 22.0016 27.2313 21.9364C27.2965 21.8712 27.3584 21.803 27.4169 21.7318C27.4754 21.6605 27.5303 21.5865 27.5815 21.5099C27.6327 21.4332 27.6801 21.3543 27.7236 21.273C27.767 21.1917 27.8064 21.1084 27.8417 21.0233C27.877 20.9381 27.908 20.8514 27.9348 20.7632C27.9616 20.675 27.984 20.5857 28.0019 20.4952C28.0199 20.4048 28.0335 20.3138 28.0425 20.222C28.0515 20.1303 28.0561 20.0383 28.0561 19.9461C28.0561 19.8539 28.0515 19.762 28.0425 19.6702C28.0335 19.5785 28.0199 19.4874 28.0019 19.397C27.984 19.3066 27.9616 19.2173 27.9348 19.1291C27.908 19.0408 27.877 18.9541 27.8417 18.869C27.8064 18.7838 27.767 18.7006 27.7236 18.6193C27.6801 18.538 27.6327 18.459 27.5815 18.3823C27.5303 18.3057 27.4754 18.2317 27.4169 18.1605C27.3584 18.0892 27.2965 18.021 27.2313 17.9558C27.1661 17.8906 27.0978 17.8288 27.0266 17.7703C26.9553 17.7118 26.8813 17.657 26.8046 17.6058C26.7279 17.5546 26.6489 17.5072 26.5676 17.4638C26.4862 17.4203 26.403 17.3809 26.3178 17.3457C26.2326 17.3104 26.1458 17.2794 26.0576 17.2526C25.9693 17.2258 25.88 17.2035 25.7895 17.1855C25.6991 17.1675 25.608 17.154 25.5162 17.145C25.4244 17.1359 25.3324 17.1314 25.2402 17.1314C25.148 17.1314 25.056 17.1359 24.9642 17.145C24.8724 17.154 24.7813 17.1675 24.6908 17.1855C24.6004 17.2035 24.511 17.2258 24.4228 17.2526C24.3345 17.2794 24.2478 17.3104 24.1626 17.3457C24.0774 17.3809 23.9941 17.4203 23.9128 17.4638C23.8315 17.5072 23.7525 17.5546 23.6758 17.6058C23.5991 17.657 23.5251 17.7118 23.4538 17.7703C23.3825 17.8288 23.3143 17.8906 23.2491 17.9558C23.1839 18.021 23.122 18.0892 23.0635 18.1605C23.005 18.2317 22.9501 18.3057 22.8989 18.3823C22.8476 18.459 22.8003 18.538 22.7568 18.6193C22.7133 18.7006 22.674 18.7838 22.6387 18.869C22.6034 18.9541 22.5723 19.0408 22.5456 19.1291C22.5188 19.2173 22.4964 19.3066 22.4784 19.397C22.4604 19.4874 22.4469 19.5785 22.4379 19.6702C22.4288 19.762 22.4243 19.8539 22.4243 19.9461Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
6
public/assets/home/tongji.svg
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
6
public/assets/home/tuice.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg viewBox="0 0 22 25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22.000000" height="25.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 78">
|
||||
<path id="矢量 80" d="M3.47368 0L18.5263 0C18.6401 0 18.7536 0.0054719 18.8668 0.0164157C18.98 0.0273595 19.0924 0.0437225 19.204 0.0655047C19.3156 0.0872869 19.4258 0.114383 19.5347 0.146794C19.6435 0.179205 19.7505 0.216774 19.8556 0.259502C19.9607 0.302229 20.0635 0.349909 20.1638 0.402541C20.2641 0.455173 20.3616 0.512505 20.4562 0.574535C20.5508 0.636566 20.6421 0.702997 20.73 0.773828C20.8179 0.844659 20.9021 0.91955 20.9826 0.998499C21.063 1.07745 21.1393 1.16008 21.2115 1.24639C21.2837 1.33269 21.3514 1.42227 21.4146 1.5151C21.4778 1.60794 21.5362 1.70359 21.5898 1.80206C21.6435 1.90052 21.692 2.00134 21.7356 2.10449C21.7791 2.20764 21.8174 2.31264 21.8504 2.41948C21.8834 2.52633 21.9111 2.6345 21.9333 2.74401C21.9555 2.85352 21.9721 2.96383 21.9833 3.07494C21.9944 3.18606 22 3.29744 22 3.40909L22 21.5909C22 21.7026 21.9944 21.8139 21.9833 21.9251C21.9721 22.0362 21.9554 22.1465 21.9333 22.256C21.9111 22.3655 21.8834 22.4737 21.8504 22.5805C21.8174 22.6874 21.7791 22.7924 21.7356 22.8955C21.692 22.9987 21.6435 23.0995 21.5898 23.1979C21.5362 23.2964 21.4778 23.3921 21.4146 23.4849C21.3514 23.5777 21.2837 23.6673 21.2115 23.7536C21.1393 23.8399 21.063 23.9226 20.9826 24.0015C20.9021 24.0805 20.8179 24.1553 20.73 24.2262C20.6421 24.297 20.5508 24.3634 20.4562 24.4255C20.3616 24.4875 20.2641 24.5448 20.1638 24.5975C20.0635 24.6501 19.9607 24.6978 19.8556 24.7405C19.7505 24.7832 19.6435 24.8208 19.5347 24.8532C19.4258 24.8856 19.3156 24.9127 19.204 24.9345C19.0924 24.9563 18.98 24.9726 18.8668 24.9836C18.7536 24.9945 18.6401 25 18.5263 25L3.47368 25C3.35992 25 3.24642 24.9945 3.1332 24.9836C3.01998 24.9726 2.90758 24.9563 2.796 24.9345C2.68442 24.9127 2.5742 24.8856 2.46533 24.8532C2.35646 24.8208 2.24947 24.7832 2.14436 24.7405C2.03926 24.6978 1.93653 24.6501 1.8362 24.5975C1.73587 24.5448 1.6384 24.4875 1.54381 24.4255C1.44921 24.3634 1.35795 24.297 1.27 24.2262C1.18206 24.1553 1.09786 24.0805 1.01742 24.0015C0.936973 23.9226 0.860663 23.8399 0.78849 23.7536C0.716317 23.6673 0.648627 23.5777 0.585421 23.4849C0.522216 23.3921 0.463798 23.2964 0.410168 23.1979C0.356539 23.0995 0.307955 22.9987 0.264418 22.8955C0.220882 22.7924 0.182601 22.6874 0.149576 22.5805C0.116551 22.4737 0.0889408 22.3655 0.0667459 22.256C0.0445509 22.1465 0.0278779 22.0362 0.0167267 21.9251C0.00557558 21.8139 0 21.7026 0 21.5909L0 3.40909C-1.41272e-08 3.29744 0.00557555 3.18606 0.0167267 3.07494C0.0278778 2.96383 0.0445509 2.85352 0.0667458 2.74401C0.0889407 2.6345 0.116551 2.52633 0.149576 2.41948C0.182601 2.31264 0.220881 2.20764 0.264418 2.10449C0.307955 2.00134 0.356539 1.90053 0.410168 1.80206C0.463798 1.70359 0.522215 1.60794 0.585421 1.5151C0.648627 1.42227 0.716317 1.3327 0.78849 1.24639C0.860663 1.16008 0.936973 1.07745 1.01742 0.9985C1.09786 0.91955 1.18206 0.84466 1.27 0.773828C1.35795 0.702997 1.44921 0.636566 1.54381 0.574536C1.6384 0.512505 1.73587 0.455174 1.8362 0.402542C1.93653 0.349909 2.03926 0.302229 2.14436 0.259502C2.24947 0.216775 2.35646 0.179206 2.46533 0.146795C2.5742 0.114384 2.68442 0.0872873 2.796 0.0655051C2.90758 0.0437228 3.01998 0.0273598 3.1332 0.016416C3.24642 0.00547223 3.35992 3.20962e-07 3.47368 3.17496e-07L3.47368 0Z" fill="rgb(241,49,68)" fill-rule="nonzero" />
|
||||
<path id="矢量 81" d="M17.6578 17.0455C17.7149 17.0455 17.7713 17.0509 17.8273 17.0618C17.8832 17.0728 17.9375 17.0889 17.9902 17.1103C18.0429 17.1317 18.0929 17.158 18.1403 17.1891C18.1877 17.2202 18.2316 17.2555 18.2719 17.2951C18.3122 17.3347 18.3482 17.3777 18.3799 17.4242C18.4116 17.4708 18.4383 17.5199 18.4602 17.5716C18.482 17.6233 18.4985 17.6766 18.5096 17.7315C18.5207 17.7863 18.5263 17.8418 18.5263 17.8977C18.5263 17.9537 18.5207 18.0091 18.5096 18.064C18.4985 18.1189 18.482 18.1722 18.4602 18.2239C18.4383 18.2756 18.4116 18.3247 18.3799 18.3712C18.3482 18.4178 18.3122 18.4608 18.2719 18.5004C18.2316 18.5399 18.1877 18.5753 18.1403 18.6064C18.0929 18.6375 18.0429 18.6637 17.9902 18.6851C17.9375 18.7065 17.8832 18.7227 17.8273 18.7336C17.7713 18.7445 17.7149 18.75 17.6578 18.75L4.34205 18.75C4.28503 18.75 4.22856 18.7445 4.17263 18.7336C4.11671 18.7227 4.0624 18.7065 4.00972 18.6851C3.95704 18.6637 3.907 18.6375 3.85958 18.6064C3.81217 18.5753 3.76831 18.5399 3.72799 18.5004C3.68767 18.4608 3.65167 18.4178 3.61999 18.3712C3.58831 18.3247 3.56156 18.2756 3.53974 18.2239C3.51792 18.1722 3.50144 18.1189 3.49032 18.064C3.47919 18.0091 3.47363 17.9537 3.47363 17.8977C3.47363 17.8418 3.47919 17.7863 3.49032 17.7315C3.50144 17.6766 3.51792 17.6233 3.53974 17.5716C3.56156 17.5199 3.58831 17.4708 3.61999 17.4242C3.65167 17.3777 3.68767 17.3347 3.72799 17.2951C3.76831 17.2555 3.81217 17.2202 3.85958 17.1891C3.907 17.158 3.95704 17.1317 4.00972 17.1103C4.0624 17.0889 4.11671 17.0728 4.17263 17.0618C4.22856 17.0509 4.28503 17.0455 4.34205 17.0455L17.6578 17.0455ZM17.6578 11.3636C17.7149 11.3636 17.7713 11.3691 17.8273 11.38C17.8832 11.3909 17.9375 11.4071 17.9902 11.4285C18.0429 11.4499 18.0929 11.4762 18.1403 11.5073C18.1877 11.5384 18.2316 11.5737 18.2719 11.6133C18.3122 11.6528 18.3482 11.6959 18.3799 11.7424C18.4116 11.7889 18.4383 11.8381 18.4602 11.8898C18.482 11.9415 18.4985 11.9948 18.5096 12.0496C18.5207 12.1045 18.5263 12.16 18.5263 12.2159C18.5263 12.2719 18.5207 12.3273 18.5096 12.3822C18.4985 12.4371 18.482 12.4904 18.4602 12.5421C18.4383 12.5938 18.4116 12.6429 18.3799 12.6894C18.3482 12.7359 18.3122 12.779 18.2719 12.8186C18.2316 12.8581 18.1877 12.8935 18.1403 12.9246C18.0929 12.9556 18.0429 12.9819 17.9902 13.0033C17.9375 13.0247 17.8832 13.0409 17.8273 13.0518C17.7713 13.0627 17.7149 13.0682 17.6578 13.0682L4.34205 13.0682C4.28503 13.0682 4.22856 13.0627 4.17263 13.0518C4.11671 13.0409 4.0624 13.0247 4.00972 13.0033C3.95704 12.9819 3.907 12.9556 3.85958 12.9246C3.81217 12.8935 3.76831 12.8581 3.72799 12.8186C3.68767 12.779 3.65167 12.7359 3.61999 12.6894C3.58831 12.6429 3.56156 12.5938 3.53974 12.5421C3.51792 12.4904 3.50144 12.4371 3.49032 12.3822C3.47919 12.3273 3.47363 12.2719 3.47363 12.2159C3.47363 12.16 3.47919 12.1045 3.49032 12.0496C3.50144 11.9948 3.51792 11.9415 3.53974 11.8898C3.56156 11.8381 3.58831 11.7889 3.61999 11.7424C3.65167 11.6959 3.68767 11.6528 3.72799 11.6133C3.76831 11.5737 3.81217 11.5384 3.85958 11.5073C3.907 11.4762 3.95704 11.4499 4.00972 11.4285C4.0624 11.4071 4.11671 11.3909 4.17263 11.38C4.22856 11.3691 4.28503 11.3636 4.34205 11.3636L17.6578 11.3636ZM11.8684 5.68182C11.9254 5.68182 11.9819 5.68728 12.0378 5.6982C12.0937 5.70912 12.148 5.72528 12.2007 5.7467C12.2534 5.76811 12.3034 5.79437 12.3508 5.82546C12.3982 5.85655 12.4421 5.89188 12.4824 5.93145C12.5228 5.97102 12.5588 6.01407 12.5904 6.0606C12.6221 6.10713 12.6489 6.15624 12.6707 6.20795C12.6925 6.25965 12.709 6.31294 12.7201 6.36783C12.7312 6.42271 12.7368 6.47814 12.7368 6.5341C12.7368 6.59006 12.7312 6.64548 12.7201 6.70037C12.709 6.75525 12.6925 6.80855 12.6707 6.86025C12.6489 6.91195 12.6221 6.96106 12.5904 7.00759C12.5588 7.05412 12.5228 7.09717 12.4824 7.13674C12.4421 7.17631 12.3982 7.21165 12.3508 7.24274C12.3034 7.27383 12.2534 7.30008 12.2007 7.32149C12.148 7.34291 12.0937 7.35908 12.0378 7.36999C11.9819 7.38091 11.9254 7.38637 11.8684 7.38637L4.34205 7.38637C4.28503 7.38637 4.22856 7.38091 4.17263 7.36999C4.11671 7.35908 4.0624 7.34291 4.00972 7.32149C3.95704 7.30008 3.907 7.27383 3.85959 7.24274C3.81217 7.21165 3.76831 7.17631 3.72799 7.13674C3.68767 7.09717 3.65167 7.05412 3.61999 7.00759C3.58831 6.96106 3.56156 6.91195 3.53974 6.86025C3.51792 6.80855 3.50144 6.75525 3.49032 6.70037C3.4792 6.64548 3.47363 6.59006 3.47363 6.5341C3.47363 6.47814 3.4792 6.42271 3.49032 6.36783C3.50144 6.31294 3.51792 6.25965 3.53974 6.20795C3.56156 6.15624 3.58831 6.10713 3.61999 6.0606C3.65167 6.01407 3.68767 5.97102 3.72799 5.93145C3.76831 5.89188 3.81217 5.85655 3.85959 5.82546C3.907 5.79437 3.95704 5.76811 4.00972 5.7467C4.0624 5.72528 4.11671 5.70912 4.17263 5.6982C4.22856 5.68728 4.28503 5.68182 4.34205 5.68182L11.8684 5.68182Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.0 KiB |
5
public/assets/type/3D.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 65 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="65.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 34">
|
||||
<path id="矢量 53" d="M28.414 37.709L28.7398 37.8194L29.0111 34.3554C29.0111 34.3554 27.6723 35.2355 26.6232 36.1695C27.7084 36.8298 28.414 37.709 28.414 37.709ZM36.3555 17.1854C36.7805 16.377 36.365 15.8579 35.6229 15.7416C35.4428 16.3616 35.2627 16.981 35.0831 17.6005C35.3636 17.6084 35.6417 17.6181 35.9161 17.6307C36.0872 17.5351 36.2373 17.3866 36.3555 17.1854ZM32.5 0C14.5507 0 0 14.3268 0 32C0 49.673 14.5508 64 32.5 64C50.4491 64 65 49.673 65 32C64.9998 14.3267 50.4491 0 32.5 0ZM26.1686 16.0343C26.817 14.2698 28.5399 13.8174 30.6398 13.8088C30.4077 14.5715 30.1746 15.3345 29.9417 16.0973C28.5678 15.8506 28.1141 17.2746 29.0891 17.8153C29.3231 17.7945 29.5604 17.7753 29.7998 17.7568L31.9331 11.3055L34.5558 11.1725L34.1983 12.0959L32.6481 12.2462L30.7429 17.6912C30.8422 17.685 30.9412 17.6787 31.0413 17.6729L32.8492 12.4621L35.4495 12.34L35.0856 13.339L33.4855 13.4144L32.0487 17.6224C32.1447 17.6183 32.2399 17.6138 32.3368 17.6101L33.6747 13.6472L36.5778 13.5299C38.5093 13.8963 39.5396 16.182 38.7289 17.8492C48.3578 18.9089 53.4342 22.7555 53.4342 22.7555C53.4342 22.7555 46.5929 20.1611 34.1649 19.7649L33.1432 22.3482L30.7239 22.3874L31.6248 19.7191C31.5271 19.719 31.4298 19.7191 31.3327 19.7195L30.913 20.9488L29.8892 20.9938L30.3273 19.7311C30.227 19.7331 30.1267 19.735 30.027 19.7373L30.0191 19.7598L29.1197 19.8134L29.1358 19.7649C29.0159 19.7694 28.8968 19.7744 28.7778 19.7796L28.7773 19.7812C28.7753 19.7808 28.7734 19.7802 28.7713 19.7799C18.9205 20.208 12.2957 22.7555 12.2957 22.7555C12.2957 22.7555 16.4311 19.4819 26.2946 18.1296C25.9424 17.524 25.8484 16.8029 26.1686 16.0343ZM52.1853 45.6806C49.8224 48.2598 45.338 50.5487 42.2572 51.5406C38.3322 52.8049 35.3067 52.8273 35.3067 52.8273L37.6401 40.6231L36.5 39.4137L35.0891 46.3957L26.7315 46.3957C26.7315 46.3957 25.4023 48.2232 21.6347 49.1304C19.1078 49.8072 15.4474 50.1921 11.264 48.4843C10.4294 48.0384 9.80655 47.4829 9.34453 46.8774C7.43412 44.3711 8.27905 41.0082 8.27905 41.0082C8.27905 41.0082 12.8742 40.9712 14.9001 41.0082C14.4747 42.7925 15.0352 43.9666 16.2027 44.4711C18.2617 44.9328 20.9247 44.026 21.5755 42.4372C23.4029 38.4788 18.5906 36.5543 18.5906 36.5543C25.4472 33.9525 23.855 30.8003 23.0409 30.1772C19.3684 27.8867 17.7765 32.1564 17.7765 32.1564L10.9383 32.1564C11.5716 28.4546 15.4249 24.6796 22.0098 24.6796C28.5951 24.6065 30.5301 28.0882 30.5301 28.0882L31.5615 23.5251L43.4473 23.5251C49.7056 23.4706 52.9062 28.196 52.9439 28.2519C51.5959 28.6141 50.6019 29.8575 50.6019 31.3366C50.6019 33.0992 52.0138 34.5283 53.7546 34.5283C54.3755 34.5283 54.9539 34.3457 55.4419 34.032C55.4656 34.2591 56.1715 41.2999 52.1853 45.6806ZM42.7456 28.9709C39.1791 28.9709 36.2878 31.9014 36.2878 35.5171C36.2878 39.1328 39.179 42.0633 42.7456 42.0633C46.3121 42.0633 49.2034 39.1328 49.2034 35.5171C49.2034 31.9013 46.3121 28.9709 42.7456 28.9709Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
3
public/assets/type/7lecai.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="64.000000" fill="none" customFrame="#000000">
|
||||
<path id="矢量 52" d="M32.0001 0C14.327 0 0 14.3269 0 32C0 49.6731 14.327 64 32.0001 64C49.6731 64 64 49.6731 64 32C63.9999 14.3269 49.6731 0 32.0001 0ZM52.9746 16.5337C52.6756 17.2649 52.3764 17.9962 52.0773 18.7274C51.1994 19.7145 47.1946 19.5488 45.4964 19.874C42.1244 20.5198 39.9534 21.2417 39.4142 24.71C39.4973 24.71 39.5803 24.71 39.6634 24.71C40.5607 24.5936 41.4583 24.4773 42.3556 24.3609C42.6713 23.2643 42.987 22.1672 43.3027 21.0705C44.6488 20.8046 45.9951 20.5387 47.341 20.2728C47.0586 21.4194 46.7759 22.5663 46.4935 23.7128C48.205 23.4469 49.917 23.181 51.6285 22.9151C51.6285 22.9318 51.6285 22.9484 51.6285 22.965C51.3294 23.7791 51.0302 24.5936 50.731 25.4079C49.0694 25.6571 47.4073 25.9064 45.7456 26.1557C45.4466 27.2357 45.1474 28.3162 44.8483 29.3962C44.0136 32.1402 43.3776 34.6959 39.4141 33.4843C38.8158 33.2517 38.2175 33.019 37.6193 32.7863C36.2625 33.7702 34.5113 34.7079 32.1353 34.3817C32.667 32.8532 33.1988 31.3239 33.7306 29.7951C34.8589 30.0452 35.0517 30.2694 36.3231 29.9945C35.7405 27.7268 38.2097 26.4735 39.5138 27.9504C40.4855 29.0511 39.3013 30.3223 39.2147 31.1412C39.3808 31.1578 39.5471 31.1744 39.7133 31.1911C40.8362 30.4825 41.3541 28.2227 41.6077 26.7041C39.2149 27.0696 36.8214 27.4353 34.4287 27.8009C34.7776 27.0199 35.1266 26.2386 35.4756 25.4577C36.6667 22.7403 37.6389 20.0061 40.3614 18.827C44.2905 17.1253 50.4798 17.3788 53.6227 14.9383C53.7043 15.3733 53.1544 16.1221 52.9746 16.5337ZM12.2433 51.831C12.8581 49.7041 13.4731 47.5765 14.0879 45.4496C14.9643 42.9914 16.2414 40.7002 17.3783 38.4699C18.3255 36.6255 19.2729 34.7805 20.22 32.936C22.0178 30.1368 24.3002 27.551 26.3522 24.9592C27.753 23.1899 29.6255 21.7209 30.8889 19.8242C29.4233 20.7224 28.614 20.7901 26.4519 21.1204C25.6875 21.1537 24.9229 21.1869 24.1586 21.2201C20.5085 22.0271 18.6903 23.9875 17.7772 27.5018C16.1154 27.7677 14.4533 28.0337 12.7917 28.2996C12.7917 28.2829 12.7917 28.2663 12.7917 28.2497C13.8385 24.8931 14.8857 21.5355 15.9325 18.179C17.1954 18.046 18.4586 17.9131 19.7215 17.7802C19.7048 18.0958 19.6883 18.4117 19.6716 18.7274C23.2753 17.1819 26.3396 15.3956 30.6397 14.4897C34.6711 13.6404 36.9813 15.362 39.0154 12.0967C39.6965 12.0302 40.3781 11.9637 41.0593 11.8972C41.1591 11.8972 41.2588 11.8972 41.3584 11.8972C40.6273 13.3761 39.896 14.8554 39.1649 16.3343C37.1111 19.6083 34.4669 22.4572 32.4345 25.8067C31.7864 27.1693 31.1381 28.5322 30.4901 29.8948C29.3875 32.3979 28.1812 35.1502 27.2994 37.8716C26.0723 41.6581 25.5411 45.7513 24.9562 50.1358C20.7191 50.7008 16.4805 51.2659 12.2433 51.831ZM51.8779 29.6954C51.8613 30.0278 51.8447 30.3602 51.8281 30.6925C51.6999 31.2623 51.3984 31.8354 51.0802 32.238C50.7226 32.6904 50.0475 33.1024 49.435 33.2849C49.1473 33.3708 48.8253 33.3116 48.6374 33.4844C47.9728 34.4149 47.3079 35.3457 46.6432 36.2762C46.8208 36.9667 48.2596 36.454 48.9365 36.5755C49.0362 36.6752 49.136 36.7749 49.2356 36.8745C49.231 37.7456 47.2299 39.8666 46.6432 40.3145C46.7096 40.4142 46.7761 40.5139 46.8426 40.6136C47.7022 40.6727 48.5893 40.4561 49.136 40.8629C49.1692 41.029 49.2024 41.1953 49.2357 41.3614C48.7377 42.4138 47.9815 43.2446 47.3411 44.1532C46.7429 45.1835 46.1446 46.2141 45.5464 47.2443C43.4115 47.5439 39.586 48.9108 38.0183 47.6929C37.0812 46.965 37.4636 46.3714 37.0212 45.2002C36.6888 46.3467 36.3565 47.4936 36.0241 48.6402C34.7115 48.8728 33.3982 49.1055 32.0855 49.3381C32.0855 49.3215 32.0855 49.3049 32.0855 49.2882C32.2683 48.6236 32.4512 47.9588 32.634 47.2941C31.0259 48.3239 29.7203 49.573 27.2995 49.8367C27.2995 49.8201 27.2995 49.8035 27.2995 49.7868C27.7813 48.4243 28.2634 47.0613 28.7453 45.6988C29.6405 46.2284 31.96 44.4924 32.4843 43.9039C31.3212 44.1532 30.1577 44.4027 28.9945 44.6518C28.9945 44.6353 28.9945 44.6187 28.9945 44.602C29.277 43.7878 29.5596 42.9734 29.842 42.1592C31.4206 41.7936 32.9997 41.4279 34.5782 41.0622C34.6281 40.8463 34.6779 40.6303 34.7278 40.4142C33.9081 40.596 31.304 42.219 30.6895 40.9127C30.4339 40.3577 30.9324 39.181 31.0883 38.5696C32.0687 38.3868 33.0494 38.204 34.0298 38.0213C34.0089 38.3017 33.8318 38.724 33.9799 38.8189C34.1881 38.9909 34.5815 39.1996 34.8275 39.1679C35.0934 38.553 35.3593 37.938 35.6251 37.3233C35.6251 37.3067 35.6251 37.2901 35.6251 37.2734C34.0798 37.5559 32.534 37.8385 30.9887 38.121C30.9887 38.1044 30.9887 38.0879 30.9887 38.0711C31.2712 37.2902 31.5537 36.509 31.8362 35.7281C36.0567 34.9471 40.2788 34.1658 44.4993 33.385C44.1565 35.5486 41.8755 36.0733 39.6634 36.3762C39.5969 36.5423 39.5304 36.7086 39.464 36.8748C41.0174 36.4914 42.4357 35.5478 43.3526 37.2238C43.4213 35.6801 46.104 34.1256 46.9421 33.0359C46.9421 33.0193 46.9421 33.0027 46.9421 32.9862C44.4804 32.0537 44.7826 28.3599 46.7926 27.1531C48.6 26.0681 51.2712 27.1687 51.6285 28.8981C52.5425 28.3165 53.4567 27.7347 54.3706 27.1531C53.5398 28.0003 52.7087 28.848 51.8779 29.6954Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
7
public/assets/type/7xingcai.svg
Normal file
|
After Width: | Height: | Size: 41 KiB |
7
public/assets/type/daletou.svg
Normal file
|
After Width: | Height: | Size: 14 KiB |
5
public/assets/type/kl8.svg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
9
public/assets/type/pailie3.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 27">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6374 35.721C18.6054 35.91 18.4456 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6284 36.477 19.8521 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35265 33.579L7.67233 32.697L7.41659 32.76L7.09691 32.8545L7.6084 31.5L7.99201 31.5L8.31169 30.618L7.92808 30.618L8.27972 29.736L7.03297 29.736L6.71329 30.618L6.2018 30.618L5.88212 31.5L6.32967 31.5L5.72228 33.075L5.4026 33.075L5.05095 33.138L4.63537 34.1775L5.05095 34.1145C5.14686 34.083 5.24276 34.0515 5.33867 34.0515L4.69931 35.721C4.66734 35.9415 4.47553 36.0675 4.25175 36.036L4.05995 36.036L3.74026 36.8865L4.47553 36.8865C5.17883 36.918 5.81819 36.477 6.00999 35.8155L6.8092 33.705L7.35265 33.579L7.35265 33.579ZM12.2757 34.524L11.0609 34.524L11.5405 33.3585L12.4995 33.3585L12.8512 32.445L11.8921 32.445L12.2438 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.9471 29.673L11.6364 29.673L8.85515 36.918L10.1658 36.918L10.7732 35.3745L11.9241 35.3745L12.2757 34.524Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 44" d="M40.7912 33.39C42.1019 32.823 42.9011 31.5 42.7413 30.114C42.7732 28.917 42.3257 27.783 41.4945 26.901C40.4715 25.956 38.969 25.641 35.7083 25.641C30.1139 25.641 28.6114 26.6175 28.5155 31.0905L32.1918 31.0905C32.1918 29.736 32.1918 28.98 35.4525 28.98C37.8501 28.98 39.0969 29.0745 39.0969 30.618C39.0969 32.1615 38.01 32.1615 37.1149 32.1615L33.9181 32.1615L33.9181 35.028L37.1149 35.028C38.042 35.028 39.3526 34.902 39.3526 36.729C39.3526 38.556 37.6903 38.5245 36.028 38.5245C32.1279 38.5245 31.9041 38.3355 31.9041 36.036L28.1319 36.036C28.1319 40.4775 29.027 41.8635 35.9321 41.8635C39.8641 41.8635 43.0609 41.328 43.0609 37.107C43.0609 34.272 41.4945 33.642 40.7912 33.39Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
11
public/assets/type/pailie5.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 64 63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64.000000" height="63.000000" fill="none" customFrame="#000000">
|
||||
<g id="组合 29">
|
||||
<path id="矢量 40" d="M18.2537 31.5L16.4316 31.5C16.5594 31.311 16.7193 31.122 16.8791 30.87L18.6054 30.87L18.957 30.0195L14.7692 30.0195L14.4176 30.87L15.4725 30.87C15.025 31.689 14.3856 32.4135 13.5864 32.9175L13.2028 33.831L13.4585 33.7365L14.002 33.4845L13.7782 34.02C14.1938 34.083 14.5774 34.209 14.961 34.3665C14.2258 35.028 13.4266 35.595 12.5315 36.036L12.1798 36.918C14.6413 36.225 16.6873 34.587 17.9021 32.382L18.2537 31.5L18.2537 31.5ZM15.8561 33.39C15.4725 33.264 15.0889 33.201 14.6733 33.138C15.025 32.9175 15.3446 32.6655 15.6324 32.382L16.4955 32.382C16.3357 32.76 16.1119 33.075 15.8561 33.39L15.8561 33.39ZM20.2997 30.303L19.0849 30.303L17.0709 35.3745L18.3177 35.3745L20.2997 30.303Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 41" d="M20.971 29.799L18.6374 35.721C18.6054 35.91 18.4456 36.0045 18.2537 36.0045L17.6783 36.0045L17.3586 36.8235L18.4136 36.8235C19.0529 36.855 19.6284 36.477 19.8522 35.91L22.3137 29.8305L20.971 29.8305L20.971 29.799ZM7.35265 33.579L7.67233 32.697L7.41659 32.76L7.09691 32.8545L7.6084 31.5L7.99201 31.5L8.31169 30.618L7.92808 30.618L8.27972 29.736L7.03297 29.736L6.71329 30.618L6.2018 30.618L5.88212 31.5L6.32967 31.5L5.72228 33.075L5.4026 33.075L5.05095 33.138L4.63537 34.1775L5.05095 34.1145C5.14686 34.083 5.24276 34.0515 5.33867 34.0515L4.69931 35.721C4.66734 35.9415 4.47553 36.0675 4.25175 36.036L4.05995 36.036L3.74026 36.8865L4.47553 36.8865C5.17883 36.918 5.81819 36.477 6.00999 35.8155L6.8092 33.705L7.35265 33.579L7.35265 33.579ZM12.2757 34.524L11.0609 34.524L11.5405 33.3585L12.4995 33.3585L12.8512 32.445L11.8921 32.445L12.2438 31.5L13.2987 31.5L13.6823 30.555L12.5954 30.555L12.9471 29.673L11.6364 29.673L8.85515 36.918L10.1658 36.918L10.7732 35.3745L11.9241 35.3745L12.2757 34.524Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 42" d="M9.87815 29.7045L9.52651 30.618L8.59943 30.618L8.24779 31.5315L9.17486 31.5315L8.79124 32.508L7.96007 32.508L7.60843 33.39L8.47156 33.39L8.02401 34.524L6.90513 34.524L6.58545 35.3745L7.70433 35.3745L7.09694 36.918L8.40763 36.9495L11.1569 29.7045L9.87815 29.7045Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<path id="矢量 43" d="M32 0C14.3217 0 0 14.112 0 31.5C0 48.888 14.3217 63 32 63C49.6783 63 64 48.888 64 31.5C64 14.112 49.6783 0 32 0ZM54.8252 16.128L56.967 17.388L47.025 24.885L54.8252 16.128L54.8252 16.128ZM43.3486 11.9385L43.4765 11.9385C46.7373 11.9385 48.3676 13.545 48.3676 16.758C48.3676 19.971 46.7373 21.5775 43.4765 21.5775L43.3486 21.5775C40.0879 21.5775 38.4575 19.971 38.4575 16.758C38.4256 13.5135 40.0559 11.9385 43.3486 11.9385ZM32.2238 6.3L32.2238 20.3175L28.3237 6.3L32.2238 6.3ZM26.8212 14.1435L29.0589 21.3255L24.6154 15.0255L26.8212 14.1435ZM17.5824 14.3955L25.6703 23.9085L14.6094 16.8525L17.5824 14.3955L17.5824 14.3955ZM14.1618 45.7065L24.7432 42.4935L15.9201 48.9195L14.1618 45.7065L14.1618 45.7065ZM26.1179 55.818L23.8801 55.818L28.3237 47.502L26.1179 55.818L26.1179 55.818ZM35.7083 47.3445L35.4206 47.3445C29.7622 47.3445 24.9351 43.911 22.9211 39.06L1.37463 39.06L4.15584 28.2555L23.7203 27.405C26.0539 23.436 30.4016 20.7585 35.3886 20.7585L35.6763 20.7585C43.1249 20.7585 49.1668 26.712 49.1668 34.0515C49.1668 41.391 43.1568 47.3445 35.7083 47.3445L35.7083 47.3445ZM55.4965 24.255L56.6473 25.956L50.6374 27.6885L55.4965 24.255ZM50.8931 30.744L63.4885 29.2005L63.4885 32.0985L50.8931 30.744Z" fill="rgb(255,255,255)" fill-rule="nonzero" />
|
||||
<g id="5">
|
||||
<path id="矢量 54" d="M32.803 42.6712C33.5155 42.8781 34.3198 42.9816 35.216 42.9816C35.9088 42.9816 36.5688 42.8819 37.1963 42.6824C37.5199 42.5796 37.8348 42.4502 38.141 42.2943C38.4746 42.1238 38.7847 41.9246 39.0713 41.6967C39.5611 41.3072 39.9822 40.834 40.3347 40.2769C40.8934 39.3937 41.1728 38.3314 41.1728 37.0899C41.1728 35.8632 40.9347 34.8581 40.4584 34.0748C40.1572 33.573 39.7896 33.1546 39.3558 32.8195C39.1091 32.629 38.8411 32.4655 38.5516 32.3289C38.4559 32.2837 38.359 32.2413 38.2611 32.2015C37.5414 31.9095 36.7608 31.7635 35.9191 31.7635C35.5329 31.7635 35.1785 31.8023 34.856 31.8799C34.5336 31.9575 34.2054 32.0702 33.8717 32.218L34.1867 28.6542L40.3909 28.6542L40.3909 25.8552L31.273 25.8552L30.8005 34.0138L32.353 35.0059C32.8517 34.6881 33.2755 34.4628 33.6242 34.3297C33.9767 34.1967 34.4061 34.1302 34.9123 34.1302C35.5091 34.1302 36.0266 34.2601 36.4649 34.5198C36.6518 34.6305 36.8242 34.7648 36.9822 34.9228C37.0285 34.9687 37.0728 35.0163 37.1151 35.0656C37.559 35.5832 37.781 36.2857 37.781 37.173C37.781 37.8271 37.6516 38.3869 37.3929 38.8524C37.2278 39.1494 37.0231 39.4005 36.7788 39.6057C36.64 39.7223 36.4885 39.8241 36.3241 39.911C35.8741 40.1512 35.3529 40.2713 34.7604 40.2713C34.2429 40.2713 33.7573 40.1937 33.3036 40.0385C32.8536 39.8796 32.4392 39.6727 32.0605 39.4178C31.7354 39.1967 31.43 38.9548 31.1443 38.6921C31.1005 38.6518 31.0572 38.611 31.0143 38.5698L29.4393 40.6925C29.8743 41.1064 30.3655 41.4888 30.913 41.8398C31.4605 42.1872 32.0905 42.4643 32.803 42.6712Z" fill="rgb(255,255,255)" fill-rule="evenodd" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
6
public/assets/type/ssq.svg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/生成带特定元素的图片 (1) (1).ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
511
src/App.vue
Normal file
@@ -0,0 +1,511 @@
|
||||
<script setup>
|
||||
import { onMounted, computed } from 'vue'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { userStore } from './store/user'
|
||||
import HelloWorld from './components/HelloWorld.vue'
|
||||
import TheWelcome from './components/TheWelcome.vue'
|
||||
import BottomNavigation from './components/BottomNavigation.vue'
|
||||
import CozeChat from './components/CozeChat.vue'
|
||||
|
||||
// 获取当前路由
|
||||
const route = useRoute()
|
||||
|
||||
// 判断是否是后台管理路由
|
||||
const isAdminRoute = computed(() => {
|
||||
return route.path.startsWith('/admin')
|
||||
})
|
||||
|
||||
// 处理发现按钮点击事件
|
||||
const handleDiscoveryClick = () => {
|
||||
// 触发全局事件,让CozeChat组件处理
|
||||
window.dispatchEvent(new CustomEvent('showAIAssistant'))
|
||||
}
|
||||
|
||||
// 应用启动时获取用户信息
|
||||
onMounted(async () => {
|
||||
// 如果用户已登录但没有完整的用户信息,则从后端获取
|
||||
if (userStore.isLoggedIn && (!userStore.user?.id || typeof userStore.user.id === 'number')) {
|
||||
try {
|
||||
console.log('应用启动,尝试获取用户信息...')
|
||||
await userStore.fetchLoginUser()
|
||||
console.log('用户信息获取成功:', userStore.user)
|
||||
} catch (error) {
|
||||
console.warn('获取用户信息失败,可能是后端服务不可用:', error)
|
||||
// 不强制清除登录状态,让用户可以继续浏览页面
|
||||
// 如果是401错误才清除登录状态
|
||||
if (error.response?.status === 401) {
|
||||
userStore.logout()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 如果是后台路由,给body添加admin-body类
|
||||
if (isAdminRoute.value) {
|
||||
document.body.classList.add('admin-body')
|
||||
} else {
|
||||
document.body.classList.remove('admin-body')
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 后台管理路由直接显示内容,不显示底部导航 -->
|
||||
<template v-if="isAdminRoute">
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
<!-- 前台用户路由显示应用容器和底部导航 -->
|
||||
<div v-else class="app-container">
|
||||
<!-- 全局顶部导航栏 -->
|
||||
<header class="global-header">
|
||||
<div class="header-content">
|
||||
<div class="app-logo">
|
||||
<span class="logo-text">精彩猪手</span>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="main-content">
|
||||
<router-view />
|
||||
</main>
|
||||
|
||||
<!-- 底部导航栏 -->
|
||||
<BottomNavigation @discovery-click="handleDiscoveryClick" />
|
||||
|
||||
<!-- Coze AI 聊天助手组件 -->
|
||||
<CozeChat />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
/* 全局重置 */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
background: #f0f2f5 !important;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
background: #f5f5f5 !important;
|
||||
line-height: 1.5;
|
||||
min-height: 100vh;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
/* 应用容器 - 包含主内容和底部导航 */
|
||||
.app-container {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
max-width: 850px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
|
||||
border-radius: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* 全局顶部导航栏 */
|
||||
.global-header {
|
||||
height: 60px;
|
||||
background: linear-gradient(135deg, #ff7b7b 0%, #ff6363 50%, #f85555 100%);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 999;
|
||||
box-shadow: 0 2px 12px rgba(248, 85, 85, 0.3);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* 装饰性波浪背景 */
|
||||
.global-header::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 Q100,10 200,30 T400,30 T600,30 T800,30 L800,60 L0,60 Z' fill='rgba(255,255,255,0.08)'/%3E%3Cpath d='M0,40 Q150,20 300,40 T600,40 T800,35 L800,60 L0,60 Z' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='15' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='150' cy='45' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='300' cy='12' r='2.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='500' cy='48' r='2' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='650' cy='18' r='3' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='750' cy='40' r='2' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
opacity: 1;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
padding: 0 20px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.app-logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transform: translateY(0);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.app-logo:hover {
|
||||
transform: translateY(-1px) scale(1.02);
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: white;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
|
||||
0 1px 2px rgba(0, 0, 0, 0.5);
|
||||
letter-spacing: 2px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.logo-text::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
transition: all 0.3s ease;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.app-logo:hover .logo-text::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 主要内容区域 */
|
||||
.main-content {
|
||||
flex: 1;
|
||||
background: #f0f2f5;
|
||||
position: relative;
|
||||
padding-bottom: 65px;
|
||||
min-height: calc(100vh - 130px);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* 通用容器样式 */
|
||||
.container {
|
||||
width: 100%;
|
||||
background: #f0f2f5;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 页面头部样式 */
|
||||
.page-header {
|
||||
background: url('@/assets/banner/banner.png') center/cover no-repeat, linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
|
||||
color: white;
|
||||
padding: 60px 20px 30px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.page-header::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.page-subtitle {
|
||||
font-size: 16px;
|
||||
opacity: 0.9;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* 通用按钮样式 */
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
padding: 14px 24px;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
||||
transition: left 0.5s;
|
||||
}
|
||||
|
||||
.btn:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #e53e3e, #ff6b6b);
|
||||
color: white;
|
||||
box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: #f8f9fa;
|
||||
color: #6c757d;
|
||||
border: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: #e9ecef;
|
||||
border-color: #d1d5db;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
/* 球号样式 */
|
||||
.ball-red {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: linear-gradient(135deg, #e53e3e, #ff6b6b);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 3px;
|
||||
box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.ball-red:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.ball-blue {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin: 3px;
|
||||
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.ball-blue:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
.form-input {
|
||||
width: 100%;
|
||||
padding: 16px;
|
||||
border: 2px solid #e9ecef;
|
||||
border-radius: 12px;
|
||||
font-size: 16px;
|
||||
transition: all 0.3s ease;
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.form-input:focus {
|
||||
outline: none;
|
||||
border-color: #e53e3e;
|
||||
background: white;
|
||||
box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
|
||||
}
|
||||
|
||||
.form-input::placeholder {
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
/* 卡片样式 */
|
||||
.card {
|
||||
background: white;
|
||||
border-radius: 16px;
|
||||
padding: 20px;
|
||||
margin: 16px;
|
||||
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
|
||||
border: 1px solid #f0f0f0;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
/* 加载动画 */
|
||||
.loading {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 2px solid rgba(255, 255, 255, 0.3);
|
||||
border-radius: 50%;
|
||||
border-top-color: white;
|
||||
animation: spin 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 1024px) {
|
||||
.app-container {
|
||||
max-width: 850px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.app-container {
|
||||
max-width: 100%;
|
||||
min-height: 100vh;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.global-header {
|
||||
height: 55px;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
padding-bottom: 55px;
|
||||
min-height: calc(100vh - 120px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
body {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.app-container {
|
||||
border-radius: 0;
|
||||
min-height: 100vh;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.global-header {
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
padding-bottom: 55px;
|
||||
min-height: calc(100vh - 110px);
|
||||
}
|
||||
|
||||
.page-header {
|
||||
background: url('@/assets/banner/banner.png') center/cover no-repeat, linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
|
||||
padding: 50px 16px 25px;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.page-subtitle {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin: 12px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 12px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 平滑滚动 */
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
/* 选择高亮颜色 */
|
||||
::selection {
|
||||
background: rgba(229, 62, 62, 0.2);
|
||||
color: #e53e3e;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
380
src/api/dlt/index.js
Normal file
@@ -0,0 +1,380 @@
|
||||
import axios from 'axios'
|
||||
|
||||
// 创建大乐透专用的axios实例
|
||||
const dltApi = axios.create({
|
||||
// baseURL: 'http://localhost:8123/api',
|
||||
baseURL: 'https://www.yicaishuzhi.com/api',
|
||||
timeout: 300000, // 5分钟超时时间
|
||||
withCredentials: true, // 关键:支持跨域携带cookie和session
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
|
||||
// 响应拦截器
|
||||
dltApi.interceptors.response.use(
|
||||
response => {
|
||||
const data = response.data
|
||||
|
||||
// 检查是否是session过期的响应
|
||||
if (data && data.success === false) {
|
||||
const message = data.message || ''
|
||||
if (message.includes('未登录') || message.includes('登录过期') || message.includes('无权限') || message.includes('Invalid session')) {
|
||||
console.log('检测到session过期,清除本地登录状态')
|
||||
|
||||
// 动态导入userStore避免循环依赖
|
||||
import('../../store/user.js').then(({ userStore }) => {
|
||||
userStore.logout()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return data
|
||||
},
|
||||
error => {
|
||||
console.error('大乐透API请求错误:', error)
|
||||
|
||||
// 检查HTTP状态码,401/403通常表示未授权/session过期
|
||||
if (error.response && (error.response.status === 401 || error.response.status === 403)) {
|
||||
console.log('检测到401/403错误,可能是session过期或无权限')
|
||||
|
||||
// 动态导入userStore避免循环依赖
|
||||
import('../../store/user.js').then(({ userStore }) => {
|
||||
userStore.logout()
|
||||
})
|
||||
}
|
||||
|
||||
return Promise.reject(error)
|
||||
}
|
||||
)
|
||||
|
||||
// 大乐透API接口方法
|
||||
export const dltLotteryApi = {
|
||||
// 获取近10期大乐透开奖期号
|
||||
getRecent10DrawIds() {
|
||||
return dltApi.get('/dlt-draw/recent-10-draw-ids')
|
||||
},
|
||||
|
||||
// 根据期号获取大乐透开奖号码
|
||||
getDrawNumbersById(drawId) {
|
||||
return dltApi.get(`/dlt-draw/draw/${drawId}/numbers`)
|
||||
},
|
||||
|
||||
// 大乐透前区首球分析
|
||||
analyzeFrontBalls(level, frontBalls, backBalls) {
|
||||
return dltApi.post('/dlt/ball-analysis/predict-first-ball', {
|
||||
level,
|
||||
redBalls: frontBalls, // 前区球
|
||||
blueBalls: backBalls // 后区球
|
||||
})
|
||||
},
|
||||
|
||||
// 大乐透前区随球分析
|
||||
analyzeFollowFrontBalls(level, wellRegardedBalls, previousFrontBalls, previousBackBalls) {
|
||||
return dltApi.post('/dlt/ball-analysis/predict-follower-ball', {
|
||||
level,
|
||||
wellRegardedBalls,
|
||||
previousFrontBalls,
|
||||
previousBackBalls
|
||||
})
|
||||
},
|
||||
|
||||
// 大乐透后区球分析
|
||||
analyzeBackBalls(level, nextFrontBalls, previousFrontBalls, previousBackBalls, nextBackBalls) {
|
||||
return dltApi.post('/dlt/ball-analysis/predict-back-ball', {
|
||||
level,
|
||||
nextFrontBalls,
|
||||
previousFrontBalls,
|
||||
previousBackBalls,
|
||||
nextBackBalls
|
||||
})
|
||||
},
|
||||
|
||||
// 大乐透后区随球分析
|
||||
analyzeFollowBackBalls(level, backFirstBall, nextFrontBalls, previousFrontBalls, previousBackBalls) {
|
||||
return dltApi.post('/dlt/ball-analysis/predict-follow-back-ball', {
|
||||
level,
|
||||
backFirstBall,
|
||||
nextFrontBalls,
|
||||
previousFrontBalls,
|
||||
previousBackBalls
|
||||
})
|
||||
},
|
||||
|
||||
// 创建大乐透推测记录
|
||||
createPredictRecord(userId, drawId, drawDate, frontBalls, backBalls) {
|
||||
return dltApi.post('/dlt/ball-analysis/create-predict', {
|
||||
userId,
|
||||
drawId,
|
||||
drawDate,
|
||||
frontBalls: frontBalls.join(','),
|
||||
backBalls: backBalls.join(',')
|
||||
})
|
||||
},
|
||||
|
||||
// 获取大乐透推测记录
|
||||
getPredictRecordsByUserId(userId, page = 1) {
|
||||
return dltApi.get(`/dlt/ball-analysis/predict-records/${userId}?page=${page}`)
|
||||
},
|
||||
|
||||
// 获取近期大乐透开奖记录
|
||||
getRecentDraws(limit = 10) {
|
||||
return dltApi.get(`/dlt-draw/recent-draws?limit=${limit}`)
|
||||
},
|
||||
|
||||
// 根据期号获取大乐透开奖记录
|
||||
getDrawById(drawId) {
|
||||
return dltApi.get(`/dlt-draw/draw/${drawId}`)
|
||||
},
|
||||
|
||||
// 根据日期范围查询大乐透开奖记录
|
||||
queryDraws(startDate, endDate) {
|
||||
return dltApi.get(`/dlt-draw/query-draws?startDate=${startDate}&endDate=${endDate}`)
|
||||
},
|
||||
|
||||
// 获取近100期大乐透开奖记录(用于表相查询)
|
||||
getRecent100Draws() {
|
||||
return dltApi.get('/dlt-draw/recent-100-draws')
|
||||
},
|
||||
|
||||
// 创建大乐透预测记录(新接口)
|
||||
createDltPredictRecord(userId, drawId, frontBalls, backBalls, drawDate = null) {
|
||||
const params = new URLSearchParams({
|
||||
userId: userId,
|
||||
drawId: drawId,
|
||||
frontBalls: frontBalls,
|
||||
backBalls: backBalls
|
||||
})
|
||||
|
||||
if (drawDate) {
|
||||
params.append('drawDate', drawDate)
|
||||
}
|
||||
|
||||
return dltApi.post(`/dlt/ball-analysis/create-dlt-predict?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 前区与前区的组合性分析
|
||||
frontFrontCombinationAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/front-front-combination-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 前区与后区的组合性分析
|
||||
frontBackCombinationAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/front-back-combination-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 后区与后区的组合性分析
|
||||
backBackCombinationAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/back-back-combination-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 后区与前区的组合性分析
|
||||
backFrontCombinationAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/back-front-combination-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 前区与前区的持续性分析
|
||||
frontFrontPersistenceAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/front-front-persistence-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 后区与后区的持续性分析
|
||||
backBackPersistenceAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/back-back-persistence-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 前区与后区的持续性分析
|
||||
frontBackPersistenceAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/front-back-persistence-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 后区与前区的持续性分析
|
||||
backFrontPersistenceAnalysis(masterBall, slaveBall) {
|
||||
return dltApi.get(`/dlt/ball-analysis/back-front-persistence-analysis?masterBall=${masterBall}&slaveBall=${slaveBall}`)
|
||||
},
|
||||
|
||||
// 根据用户ID获取大乐透预测记录(新接口)
|
||||
getDltPredictRecordsByUserId(userId, page = 1, pageSize = 10) {
|
||||
return dltApi.get(`/dlt-predict/predict-records/${userId}?page=${page}&pageSize=${pageSize}`)
|
||||
},
|
||||
|
||||
// 条件查询大乐透预测记录
|
||||
queryDltPredictRecords(userId, predictStatus, page = 1, pageSize = 10) {
|
||||
return dltApi.post('/dlt-predict/query-predict-records', {
|
||||
userId: userId,
|
||||
predictStatus: predictStatus,
|
||||
current: page,
|
||||
pageSize: pageSize
|
||||
})
|
||||
},
|
||||
|
||||
// 前区历史数据查询
|
||||
getFrontendHistoryAll() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/frontend-history-all')
|
||||
},
|
||||
|
||||
getFrontendHistory100() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/frontend-history-100')
|
||||
},
|
||||
|
||||
getFrontendHistoryTop() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/frontend-history-top')
|
||||
},
|
||||
|
||||
getFrontendHistoryTop100() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/frontend-history-top-100')
|
||||
},
|
||||
|
||||
// 后区历史数据查询
|
||||
getBackendHistoryAll() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/backend-history-all')
|
||||
},
|
||||
|
||||
getBackendHistory100() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/backend-history-100')
|
||||
},
|
||||
|
||||
getBackendHistoryTop() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/backend-history-top')
|
||||
},
|
||||
|
||||
getBackendHistoryTop100() {
|
||||
return dltApi.get('/dlt/ball-active-analysis/backend-history-top-100')
|
||||
},
|
||||
|
||||
// Excel数据导入相关API
|
||||
// 上传Excel文件完整导入大乐透数据(D3-D12工作表)
|
||||
uploadDltExcelFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return dltApi.post('/dlt/upload', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 上传Excel文件导入大乐透开奖数据(覆盖)(D1工作表)
|
||||
uploadDltDrawsFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return dltApi.post('/dlt/upload-draw-data', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 追加导入大乐透开奖数据(D1工作表)
|
||||
appendDltDrawsFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return dltApi.post('/dlt/append-draw-data', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 手动处理待开奖记录(双色球+大乐透)
|
||||
processPendingPredictions() {
|
||||
return dltApi.post('/dlt-predict/process-pending')
|
||||
},
|
||||
|
||||
// 获取用户大乐透预测统计
|
||||
getUserPredictStats(userId) {
|
||||
return dltApi.get(`/dlt-predict/user-predict-stat/${userId}`)
|
||||
},
|
||||
|
||||
// 获取用户大乐透奖金统计
|
||||
getPrizeStatistics(userId) {
|
||||
return dltApi.get('/dlt-predict/prize-statistics', {
|
||||
params: {
|
||||
userId: userId
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 大乐透命中率分析接口
|
||||
// 前区首球命中率分析
|
||||
getFrontFirstBallHitRate() {
|
||||
return dltApi.get('/dlt-predict/front-first-ball-hit-rate')
|
||||
},
|
||||
|
||||
// 前区球号命中率分析
|
||||
getFrontBallHitRate() {
|
||||
return dltApi.get('/dlt-predict/front-ball-hit-rate')
|
||||
},
|
||||
|
||||
// 后区首球命中率分析
|
||||
getBackFirstBallHitRate() {
|
||||
return dltApi.get('/dlt-predict/back-first-ball-hit-rate')
|
||||
},
|
||||
|
||||
// 后区球号命中率分析
|
||||
getBackBallHitRate() {
|
||||
return dltApi.get('/dlt-predict/back-ball-hit-rate')
|
||||
},
|
||||
|
||||
// 精推版大乐透第一步分析
|
||||
jtdltFirstStepAnalysis(level, frontBalls, backBalls) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('frontBalls', frontBalls)
|
||||
params.append('backBalls', backBalls)
|
||||
|
||||
return dltApi.post('/jtdlt/analysis/first-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版大乐透第二步分析
|
||||
jtdltSecondStepAnalysis(level, previousFrontBalls, previousBackBalls, currentFirstBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('previousFrontBalls', previousFrontBalls)
|
||||
params.append('previousBackBalls', previousBackBalls)
|
||||
params.append('currentFirstBall', currentFirstBall)
|
||||
|
||||
return dltApi.post('/jtdlt/analysis/second-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版大乐透第三步分析
|
||||
jtdltThirdStepAnalysis(level, previousFrontBalls, previousBackBalls, currentFrontBalls) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('previousFrontBalls', previousFrontBalls)
|
||||
params.append('previousBackBalls', previousBackBalls)
|
||||
params.append('currentFrontBalls', currentFrontBalls)
|
||||
|
||||
return dltApi.post('/jtdlt/analysis/third-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版大乐透第四步分析
|
||||
jtdltFourthStepAnalysis(level, previousFrontBalls, previousBackBalls, currentFrontBalls, currentBackFirstBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('previousFrontBalls', previousFrontBalls)
|
||||
params.append('previousBackBalls', previousBackBalls)
|
||||
params.append('currentFrontBalls', currentFrontBalls)
|
||||
params.append('currentBackFirstBall', currentBackFirstBall)
|
||||
|
||||
return dltApi.post('/jtdlt/analysis/fourth-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
export default dltLotteryApi
|
||||
891
src/api/index.js
Normal file
@@ -0,0 +1,891 @@
|
||||
import axios from 'axios'
|
||||
|
||||
// 创建axios实例
|
||||
const api = axios.create({
|
||||
// baseURL: 'http://localhost:8123/api',
|
||||
baseURL: 'https://www.yicaishuzhi.com/api',
|
||||
timeout: 300000, // 5分钟超时时间(300秒)
|
||||
withCredentials: true, // 关键:支持跨域携带cookie和session
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
|
||||
// 防止重复提示的标志
|
||||
let isKickedOut = false
|
||||
|
||||
// 响应拦截器
|
||||
api.interceptors.response.use(
|
||||
response => {
|
||||
const data = response.data
|
||||
|
||||
// 检查是否是session过期的响应
|
||||
if (data && data.success === false) {
|
||||
// 可以根据后端返回的错误码或消息判断是否是session过期
|
||||
const message = data.message || ''
|
||||
|
||||
// 专门处理账号在其他设备登录的情况
|
||||
if (message.includes('其他设备登录') || message.includes('当前会话已失效')) {
|
||||
if (!isKickedOut) {
|
||||
isKickedOut = true
|
||||
console.log('检测到账号在其他设备登录,正在踢出当前会话...')
|
||||
|
||||
// 动态导入 Element Plus 的消息组件
|
||||
import('element-plus').then(({ ElMessage }) => {
|
||||
ElMessage.warning({
|
||||
message: '您的账号已在其他设备登录,请重新登录',
|
||||
duration: 3000,
|
||||
showClose: true
|
||||
})
|
||||
})
|
||||
|
||||
// 检查当前路径是否为后台管理路径
|
||||
if (window.location.pathname.startsWith('/cpzsadmin') && window.location.pathname !== '/cpzsadmin/login') {
|
||||
// 后台管理会话
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.adminLogout(true) // 标记为被踢出
|
||||
setTimeout(() => {
|
||||
window.location.href = '/cpzsadmin/login'
|
||||
isKickedOut = false // 重置标志
|
||||
}, 1500)
|
||||
})
|
||||
} else {
|
||||
// 前台用户会话
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.logout(true) // 标记为被踢出
|
||||
setTimeout(() => {
|
||||
isKickedOut = false // 重置标志
|
||||
}, 3000)
|
||||
})
|
||||
}
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
// 处理其他登录/权限相关的错误
|
||||
if (message.includes('未登录') || message.includes('登录过期') || message.includes('无权限') || message.includes('Invalid session')) {
|
||||
console.log('检测到session过期,清除本地登录状态')
|
||||
|
||||
// 检查当前路径是否为后台管理路径
|
||||
if (window.location.pathname.startsWith('/cpzsadmin') && window.location.pathname !== '/cpzsadmin/login') {
|
||||
console.log('后台管理会话过期,正在注销...')
|
||||
// 动态导入userStore避免循环依赖
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.adminLogout()
|
||||
window.location.href = '/cpzsadmin/login'
|
||||
})
|
||||
} else {
|
||||
// 前台用户会话过期处理
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.logout()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return data
|
||||
},
|
||||
error => {
|
||||
console.error('API请求错误:', error)
|
||||
|
||||
// 检查HTTP状态码,401/403通常表示未授权/session过期
|
||||
if (error.response && (error.response.status === 401 || error.response.status === 403)) {
|
||||
console.log('检测到401/403错误,可能是session过期或无权限')
|
||||
|
||||
// 检查当前路径是否为后台管理路径
|
||||
if (window.location.pathname.startsWith('/cpzsadmin') && window.location.pathname !== '/cpzsadmin/login') {
|
||||
console.log('后台管理会话过期,正在注销...')
|
||||
// 动态导入userStore避免循环依赖
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.adminLogout()
|
||||
window.location.href = '/cpzsadmin/login'
|
||||
})
|
||||
} else {
|
||||
// 前台用户会话过期处理
|
||||
import('../store/user.js').then(({ userStore }) => {
|
||||
userStore.logout()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return Promise.reject(error)
|
||||
}
|
||||
)
|
||||
|
||||
// API接口方法
|
||||
export const lotteryApi = {
|
||||
// 用户登录
|
||||
userLogin(userAccount, userPassword) {
|
||||
return api.post('/user/login', {
|
||||
userAccount,
|
||||
userPassword
|
||||
})
|
||||
},
|
||||
|
||||
// 用户注册
|
||||
userRegister(userAccount, userPassword, checkPassword, userName) {
|
||||
return api.post('/user/register', {
|
||||
userAccount,
|
||||
userPassword,
|
||||
checkPassword,
|
||||
userName
|
||||
})
|
||||
},
|
||||
|
||||
// 用户注销
|
||||
userLogout() {
|
||||
return api.post('/user/logout')
|
||||
},
|
||||
|
||||
// 获取当前登录用户信息
|
||||
getLoginUser() {
|
||||
return api.get('/user/get/login')
|
||||
},
|
||||
|
||||
// 获取用户统计信息(总用户数和VIP用户数)
|
||||
getUserCount() {
|
||||
return api.get('/user/count')
|
||||
},
|
||||
|
||||
// 检查当前用户VIP是否过期
|
||||
checkVipExpire() {
|
||||
return api.get('/user/check-vip-expire')
|
||||
},
|
||||
|
||||
// 获取用户推测记录(支持分页)
|
||||
getPredictRecordsByUserId(userId, page = 1) {
|
||||
return api.get(`/ball-analysis/predict-records/${userId}?page=${page}`)
|
||||
},
|
||||
|
||||
// 按条件查询推测记录(支持分页和状态筛选)
|
||||
queryPredictRecords(userId, predictStatus, page = 1, pageSize = 10) {
|
||||
return api.post('/data-analysis/query-predict-records', {
|
||||
userId: userId,
|
||||
predictStatus,
|
||||
current: page,
|
||||
pageSize
|
||||
})
|
||||
},
|
||||
|
||||
// 获取近期开奖信息
|
||||
getRecentDraws(limit = 6) {
|
||||
return api.get(`/ball-analysis/recent-draws?limit=${limit}`)
|
||||
},
|
||||
|
||||
// 获取最新100条开奖信息(表相查询)
|
||||
getRecent100Draws() {
|
||||
return api.get('/ball-analysis/recent-100-draws')
|
||||
},
|
||||
|
||||
// 按日期范围查询开奖信息
|
||||
queryDraws(startDate, endDate) {
|
||||
const params = new URLSearchParams()
|
||||
if (startDate) params.append('startDate', startDate)
|
||||
if (endDate) params.append('endDate', endDate)
|
||||
return api.get(`/ball-analysis/query-draws?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 根据期号查询开奖信息
|
||||
getDrawById(drawId) {
|
||||
return api.get(`/ball-analysis/draw/${drawId}`)
|
||||
},
|
||||
|
||||
// 创建推测记录
|
||||
createPredictRecord(userId, drawId, drawDate, redBalls, blueBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('userId', userId)
|
||||
params.append('drawId', drawId)
|
||||
params.append('drawDate', drawDate)
|
||||
params.append('redBalls', redBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
|
||||
return api.post('/ball-analysis/create-predict', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 首球算法
|
||||
analyzeBalls(userId, level, redBalls, blueBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('userId', userId)
|
||||
params.append('level', level)
|
||||
params.append('redBalls', redBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
|
||||
return api.post('/ball-analysis/analyze', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版双色球第一步分析
|
||||
jtssqFirstStepAnalysis(level, redBalls, blueBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('redBalls', redBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
|
||||
return api.post('/jtssq/analysis/first-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版双色球第二步分析
|
||||
jtssqSecondStepAnalysis(level, redBalls, blueBall, nextFirstBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('redBalls', redBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
params.append('nextFirstBall', nextFirstBall)
|
||||
|
||||
return api.post('/jtssq/analysis/second-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 精推版双色球第三步分析
|
||||
jtssqThirdStepAnalysis(level, redBalls, blueBall, nextRedBalls) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('level', level)
|
||||
params.append('redBalls', redBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
params.append('nextRedBalls', nextRedBalls)
|
||||
|
||||
return api.post('/jtssq/analysis/third-step', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 跟随球号分析算法
|
||||
fallowBallAnalysis(userId, level, firstThreeRedBalls, lastSixRedBalls, blueBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('userId', userId)
|
||||
params.append('level', level)
|
||||
params.append('firstThreeRedBalls', firstThreeRedBalls)
|
||||
params.append('lastSixRedBalls', lastSixRedBalls)
|
||||
params.append('blueBall', blueBall)
|
||||
|
||||
return api.post('/ball-analysis/fallow', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 蓝球分析算法
|
||||
blueBallAnalysis(userId, level, predictedRedBalls, predictedBlueBalls, lastRedBalls, lastBlueBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('userId', userId)
|
||||
params.append('level', level)
|
||||
params.append('predictedRedBalls', predictedRedBalls)
|
||||
params.append('predictedBlueBalls', predictedBlueBalls)
|
||||
params.append('lastRedBalls', lastRedBalls)
|
||||
params.append('lastBlueBall', lastBlueBall)
|
||||
|
||||
return api.post('/ball-analysis/blue-ball', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 获取用户推测统计数据
|
||||
getUserPredictStat(userId, lotteryType) {
|
||||
return api.get(`/data-analysis/user-predict-stat/${userId}`, {
|
||||
params: { lotteryType }
|
||||
})
|
||||
},
|
||||
|
||||
// 获取首球命中率统计
|
||||
getFirstBallHitRate(lotteryType) {
|
||||
return api.get('/ball-analysis/first-ball-hit-rate', {
|
||||
params: { lotteryType }
|
||||
})
|
||||
},
|
||||
|
||||
// 获取蓝球命中率统计
|
||||
getBlueBallHitRate(lotteryType) {
|
||||
return api.get('/ball-analysis/blue-ball-hit-rate', {
|
||||
params: { lotteryType }
|
||||
})
|
||||
},
|
||||
|
||||
// 获取红球命中率统计
|
||||
getRedBallHitRate(lotteryType) {
|
||||
return api.get('/ball-analysis/red-ball-hit-rate', {
|
||||
params: { lotteryType }
|
||||
})
|
||||
},
|
||||
|
||||
// 获取奖金统计
|
||||
getPrizeStatistics() {
|
||||
return api.get('/ball-analysis/prize-statistics')
|
||||
},
|
||||
|
||||
// 激活会员码
|
||||
activateVipCode(userId, code) {
|
||||
return api.post('/user/activate-vip', {
|
||||
userId,
|
||||
code
|
||||
})
|
||||
},
|
||||
|
||||
// 批量生成会员码
|
||||
generateVipCodes(numCodes, vipExpireTime) {
|
||||
return api.post('/vip-code/generate', {
|
||||
numCodes,
|
||||
vipExpireTime
|
||||
})
|
||||
},
|
||||
|
||||
// 获取可用会员码
|
||||
getAvailableVipCode(vipExpireTime) {
|
||||
return api.get(`/vip-code/available?vipExpireTime=${vipExpireTime}`)
|
||||
},
|
||||
|
||||
// 上传Excel文件导入数据(T1-T7 sheet)
|
||||
uploadExcelFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return api.post('/excel/upload', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 上传Excel文件导入开奖数据(T10工作表)
|
||||
uploadLotteryDrawsFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return api.post('/excel/upload-lottery-draws', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 上传Excel文件追加导入开奖数据(T10工作表)
|
||||
appendLotteryDrawsFile(file) {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file)
|
||||
return api.post('/excel/append-lottery-draws', formData, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 获取用户兑换记录
|
||||
getExchangeRecordsByUserId(userId) {
|
||||
return api.get(`/vip-exchange-record/user/${userId}`)
|
||||
},
|
||||
|
||||
// 获取用户列表
|
||||
getUserList(params) {
|
||||
console.log('调用获取用户列表接口:', params)
|
||||
const queryParams = new URLSearchParams()
|
||||
|
||||
// 添加查询参数
|
||||
if (params?.userAccount) {
|
||||
queryParams.append('userAccount', params.userAccount)
|
||||
}
|
||||
|
||||
if (params?.userName) {
|
||||
queryParams.append('userName', params.userName)
|
||||
}
|
||||
|
||||
if (params?.phone) {
|
||||
queryParams.append('phone', params.phone)
|
||||
}
|
||||
|
||||
if (params?.userRole) {
|
||||
queryParams.append('userRole', params.userRole)
|
||||
}
|
||||
|
||||
if (params?.status !== undefined && params?.status !== '') {
|
||||
queryParams.append('status', params.status)
|
||||
}
|
||||
|
||||
if (params?.isVip !== undefined && params?.isVip !== '') {
|
||||
queryParams.append('isVip', params.isVip)
|
||||
}
|
||||
|
||||
// 分页参数
|
||||
if (params?.page) {
|
||||
queryParams.append('page', params.page)
|
||||
}
|
||||
|
||||
if (params?.size) {
|
||||
queryParams.append('size', params.size)
|
||||
}
|
||||
|
||||
return api.get(`/user/list${queryParams.toString() ? '?' + queryParams.toString() : ''}`)
|
||||
},
|
||||
|
||||
// 更新用户状态
|
||||
updateUserStatus(params) {
|
||||
console.log('调用更新用户状态接口:', params)
|
||||
// 使用Content-Type: application/json 调用接口
|
||||
return api.post('/user/update-status', params, {
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
timeout: 10000 // 设置10秒超时
|
||||
}).then(response => {
|
||||
console.log('更新用户状态接口响应:', response)
|
||||
return response
|
||||
}).catch(error => {
|
||||
console.error('更新用户状态接口错误:', error)
|
||||
throw error
|
||||
})
|
||||
},
|
||||
|
||||
// 添加用户
|
||||
addUser(userForm) {
|
||||
console.log('调用添加用户接口:', userForm)
|
||||
return api.post('/user/add', userForm)
|
||||
},
|
||||
|
||||
// 更新用户
|
||||
updateUser(userForm) {
|
||||
console.log('调用更新用户接口:', userForm)
|
||||
return api.post('/user/update', userForm)
|
||||
},
|
||||
|
||||
// 删除用户
|
||||
deleteUser(userId) {
|
||||
console.log('调用删除用户接口:', userId)
|
||||
return api.post('/user/delete', { id: userId }, {
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 获取所有推测记录总数
|
||||
getTotalPredictCount() {
|
||||
console.log('调用getTotalPredictCount接口...')
|
||||
return api.get('/data-analysis/total-predict-count').then(response => {
|
||||
console.log('getTotalPredictCount接口响应:', response)
|
||||
return response
|
||||
}).catch(error => {
|
||||
console.error('getTotalPredictCount接口错误:', error)
|
||||
throw error
|
||||
})
|
||||
},
|
||||
|
||||
// 根据用户ID和操作模块获取操作历史
|
||||
getOperationHistoryByUserIdAndModule(userId, operationModule) {
|
||||
return api.get(`/operation-history/user/${userId}/module/${operationModule}`)
|
||||
},
|
||||
|
||||
// 管理员登录
|
||||
adminLogin(username, password) {
|
||||
// 模拟API请求,实际项目中应该调用真实的后端API
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
// 模拟验证管理员账号密码
|
||||
if (username === 'admin' && password === '123456') {
|
||||
resolve({
|
||||
success: true,
|
||||
data: {
|
||||
id: 1,
|
||||
userName: '系统管理员',
|
||||
userAccount: 'admin',
|
||||
userRole: 'admin',
|
||||
avatar: null,
|
||||
createTime: new Date().toISOString()
|
||||
},
|
||||
message: '登录成功'
|
||||
})
|
||||
} else {
|
||||
resolve({
|
||||
success: false,
|
||||
data: null,
|
||||
message: '账号或密码错误'
|
||||
})
|
||||
}
|
||||
}, 1000) // 模拟网络延迟
|
||||
})
|
||||
},
|
||||
|
||||
// 获取会员码统计数据
|
||||
getVipCodeStats() {
|
||||
return api.get('/vip-code/stats')
|
||||
},
|
||||
|
||||
// 获取会员码统计数量
|
||||
getVipCodeCount() {
|
||||
console.log('调用getVipCodeCount接口...')
|
||||
return api.get('/vip-code/count').then(response => {
|
||||
console.log('getVipCodeCount接口响应:', response)
|
||||
return response
|
||||
}).catch(error => {
|
||||
console.error('getVipCodeCount接口错误:', error)
|
||||
throw error
|
||||
})
|
||||
},
|
||||
|
||||
// 获取会员码列表
|
||||
getVipCodeList(params) {
|
||||
// 构建查询参数
|
||||
const queryParams = new URLSearchParams()
|
||||
|
||||
// 分页参数
|
||||
if (params.page) queryParams.append('current', params.page)
|
||||
if (params.size) queryParams.append('pageSize', params.size)
|
||||
|
||||
// 搜索关键词(会员码)
|
||||
if (params.keyword) queryParams.append('code', params.keyword)
|
||||
|
||||
// 状态筛选
|
||||
if (params.status !== undefined && params.status !== '') {
|
||||
// 直接使用status值作为isUse参数
|
||||
queryParams.append('isUse', params.status)
|
||||
}
|
||||
|
||||
// 有效期筛选
|
||||
if (params.expireTime) queryParams.append('vipExpireTime', params.expireTime)
|
||||
|
||||
// 时间范围筛选
|
||||
if (params.startTime) queryParams.append('startTime', params.startTime)
|
||||
if (params.endTime) queryParams.append('endTime', params.endTime)
|
||||
|
||||
// 发起请求
|
||||
return api.get(`/vip-code/list/page?${queryParams.toString()}`)
|
||||
},
|
||||
|
||||
// 删除会员码
|
||||
deleteVipCode(id) {
|
||||
return api.post(`/vip-code/delete/${id}`)
|
||||
},
|
||||
|
||||
// 获取红球历史数据全部记录
|
||||
getHistoryAll() {
|
||||
return api.get('/ball-analysis/history-all')
|
||||
},
|
||||
|
||||
// 获取红球最近100期数据记录
|
||||
getHistory100() {
|
||||
return api.get('/ball-analysis/history-100')
|
||||
},
|
||||
|
||||
// 获取红球历史数据排行记录
|
||||
getHistoryTop() {
|
||||
return api.get('/ball-analysis/history-top')
|
||||
},
|
||||
|
||||
// 获取红球100期数据排行记录
|
||||
getHistoryTop100() {
|
||||
return api.get('/ball-analysis/history-top-100')
|
||||
},
|
||||
|
||||
// 获取蓝球历史数据全部记录
|
||||
getBlueHistoryAll() {
|
||||
return api.get('/ball-analysis/blue-history-all')
|
||||
},
|
||||
|
||||
// 获取蓝球最近100期数据记录
|
||||
getBlueHistory100() {
|
||||
return api.get('/ball-analysis/blue-history-100')
|
||||
},
|
||||
|
||||
// 获取蓝球历史数据排行记录
|
||||
getBlueHistoryTop() {
|
||||
return api.get('/ball-analysis/blue-history-top')
|
||||
},
|
||||
|
||||
// 获取蓝球100期数据排行记录
|
||||
getBlueHistoryTop100() {
|
||||
return api.get('/ball-analysis/blue-history-top-100')
|
||||
},
|
||||
|
||||
// 发送短信验证码
|
||||
sendSmsCode(phoneNumber) {
|
||||
return api.post('/sms/sendCode', null, {
|
||||
params: {
|
||||
phoneNumber
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 手机号登录
|
||||
userPhoneLogin(phone, code) {
|
||||
return api.post('/user/phone/login', {
|
||||
phone,
|
||||
code
|
||||
})
|
||||
},
|
||||
|
||||
// 手机号注册
|
||||
userPhoneRegister(userAccount, userPassword, checkPassword, phone, code, userName) {
|
||||
return api.post('/user/phone/register', {
|
||||
userAccount,
|
||||
userPassword,
|
||||
checkPassword,
|
||||
phone,
|
||||
code,
|
||||
userName
|
||||
})
|
||||
},
|
||||
|
||||
// 重置密码
|
||||
resetPassword(phone, code, newPassword, confirmPassword) {
|
||||
console.log('调用重置密码接口:', { phone, code, newPassword, confirmPassword })
|
||||
return api.post('/user/reset-password', {
|
||||
phone,
|
||||
code,
|
||||
newPassword,
|
||||
confirmPassword
|
||||
}, {
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 红球组合分析
|
||||
redBallCombinationAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/red-ball-combination-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 红球与蓝球的组合性分析
|
||||
redBlueCombinationAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/red-blue-combination-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 蓝球与红球的组合性分析
|
||||
blueRedCombinationAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/blue-red-combination-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 红球与红球的接续性分析
|
||||
redRedPersistenceAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/red-red-persistence-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 蓝球与蓝球的接续性分析
|
||||
blueBluePersistenceAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/blue-blue-persistence-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 红球与蓝球的接续性分析
|
||||
redBluePersistenceAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/red-blue-persistence-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 蓝球与红球的接续性分析
|
||||
blueRedPersistenceAnalysis(masterBall, slaveBall) {
|
||||
const params = new URLSearchParams()
|
||||
params.append('masterBall', masterBall)
|
||||
params.append('slaveBall', slaveBall)
|
||||
|
||||
return api.get(`/ball-analysis/blue-red-persistence-analysis?${params.toString()}`)
|
||||
},
|
||||
|
||||
// 根据开奖期号查询开奖球号
|
||||
getDrawNumbersById(drawId) {
|
||||
return api.get(`/ball-analysis/draw/${drawId}/numbers`)
|
||||
},
|
||||
|
||||
// 获取近10期开奖期号
|
||||
getRecent10DrawIds() {
|
||||
return api.get('/ball-analysis/recent-10-draw-ids')
|
||||
},
|
||||
|
||||
// 根据操作模块获取操作历史(真实接口)
|
||||
getOperationHistoryByModule(operationModule) {
|
||||
console.log('调用根据操作模块获取操作历史接口:', operationModule)
|
||||
return api.get(`/operation-history/module/${operationModule}`)
|
||||
},
|
||||
|
||||
// 根据操作结果获取操作历史(真实接口)
|
||||
getOperationHistoryByResult(operationResult) {
|
||||
console.log('调用根据操作结果获取操作历史接口:', operationResult)
|
||||
return api.get(`/operation-history/result/${operationResult}`)
|
||||
},
|
||||
|
||||
// 获取操作历史列表(统一接口)
|
||||
getOperationHistoryList(params) {
|
||||
console.log('调用获取操作历史列表接口:', params)
|
||||
const queryParams = new URLSearchParams()
|
||||
|
||||
if (params?.operationModule !== undefined && params.operationModule !== '') {
|
||||
queryParams.append('operationModule', params.operationModule)
|
||||
}
|
||||
|
||||
if (params?.operationResult !== undefined && params.operationResult !== '') {
|
||||
queryParams.append('operationResult', params.operationResult)
|
||||
}
|
||||
|
||||
if (params?.keyword !== undefined && params.keyword !== '') {
|
||||
queryParams.append('keyword', params.keyword)
|
||||
}
|
||||
|
||||
return api.get(`/operation-history/list${queryParams.toString() ? '?' + queryParams.toString() : ''}`)
|
||||
},
|
||||
|
||||
// ==================== 公告管理接口 ====================
|
||||
|
||||
// 添加公告
|
||||
addAnnouncement(data) {
|
||||
console.log('调用添加公告接口:', data)
|
||||
return api.post('/announcement/add', data)
|
||||
},
|
||||
|
||||
// 查询公告列表(分页)
|
||||
getAnnouncementList(params) {
|
||||
console.log('调用查询公告列表接口:', params)
|
||||
const queryParams = new URLSearchParams()
|
||||
|
||||
if (params?.current) queryParams.append('current', params.current)
|
||||
if (params?.pageSize) queryParams.append('pageSize', params.pageSize)
|
||||
if (params?.title) queryParams.append('title', params.title)
|
||||
if (params?.status !== undefined && params?.status !== null && params?.status !== '') {
|
||||
queryParams.append('status', params.status)
|
||||
}
|
||||
if (params?.priority !== undefined && params?.priority !== null && params?.priority !== '') {
|
||||
queryParams.append('priority', params.priority)
|
||||
}
|
||||
if (params?.publisherId) queryParams.append('publisherId', params.publisherId)
|
||||
if (params?.publisherName) queryParams.append('publisherName', params.publisherName)
|
||||
if (params?.startTime) queryParams.append('startTime', params.startTime)
|
||||
if (params?.endTime) queryParams.append('endTime', params.endTime)
|
||||
|
||||
return api.get(`/announcement/list/page${queryParams.toString() ? '?' + queryParams.toString() : ''}`)
|
||||
},
|
||||
|
||||
// 根据ID查询公告详情
|
||||
getAnnouncementById(id) {
|
||||
console.log('调用根据ID查询公告接口:', id)
|
||||
return api.get(`/announcement/${id}`)
|
||||
},
|
||||
|
||||
// 更新公告
|
||||
updateAnnouncement(data) {
|
||||
console.log('调用更新公告接口:', data)
|
||||
return api.post('/announcement/update', data)
|
||||
},
|
||||
|
||||
// 删除公告
|
||||
deleteAnnouncement(id) {
|
||||
console.log('调用删除公告接口:', id)
|
||||
return api.delete(`/announcement/delete/${id}`)
|
||||
},
|
||||
|
||||
// 获取置顶公告
|
||||
getTopAnnouncements() {
|
||||
console.log('调用获取置顶公告接口')
|
||||
return api.get('/announcement/top')
|
||||
},
|
||||
|
||||
// 获取所有已发布公告
|
||||
getPublishedAnnouncements() {
|
||||
console.log('调用获取所有已发布公告接口')
|
||||
return api.get('/announcement/published')
|
||||
},
|
||||
|
||||
// ==================== 推测管理接口 ====================
|
||||
|
||||
// 管理员获取所有双色球推测记录
|
||||
getAllSsqPredictRecords(params) {
|
||||
const queryParams = new URLSearchParams()
|
||||
if (params?.userId) queryParams.append('userId', params.userId)
|
||||
if (params?.predictResult) queryParams.append('predictResult', params.predictResult)
|
||||
if (params?.current) queryParams.append('current', params.current)
|
||||
if (params?.pageSize) queryParams.append('pageSize', params.pageSize)
|
||||
|
||||
return api.get(`/ball-analysis/admin/all-records?${queryParams.toString()}`)
|
||||
},
|
||||
|
||||
// 管理员获取所有大乐透推测记录
|
||||
getAllDltPredictRecords(params) {
|
||||
const queryParams = new URLSearchParams()
|
||||
if (params?.userId) queryParams.append('userId', params.userId)
|
||||
if (params?.predictResult) queryParams.append('predictResult', params.predictResult)
|
||||
if (params?.current) queryParams.append('current', params.current)
|
||||
if (params?.pageSize) queryParams.append('pageSize', params.pageSize)
|
||||
|
||||
return api.get(`/dlt-predict/admin/all-records?${queryParams.toString()}`)
|
||||
},
|
||||
|
||||
// ==================== 奖金统计接口 ====================
|
||||
|
||||
// 管理员获取双色球中奖记录明细
|
||||
getAdminPrizeStatistics(params) {
|
||||
const queryParams = new URLSearchParams()
|
||||
if (params?.userId) queryParams.append('userId', params.userId)
|
||||
if (params?.prizeGrade) queryParams.append('prizeGrade', params.prizeGrade)
|
||||
if (params?.current) queryParams.append('current', params.current)
|
||||
if (params?.pageSize) queryParams.append('pageSize', params.pageSize)
|
||||
|
||||
return api.get(`/ball-analysis/admin/prize-statistics?${queryParams.toString()}`)
|
||||
},
|
||||
|
||||
// 管理员获取大乐透中奖记录明细
|
||||
getAdminDltPrizeStatistics(params) {
|
||||
const queryParams = new URLSearchParams()
|
||||
if (params?.userId) queryParams.append('userId', params.userId)
|
||||
if (params?.prizeGrade) queryParams.append('prizeGrade', params.prizeGrade)
|
||||
if (params?.current) queryParams.append('current', params.current)
|
||||
if (params?.pageSize) queryParams.append('pageSize', params.pageSize)
|
||||
|
||||
return api.get(`/dlt-predict/admin/prize-statistics?${queryParams.toString()}`)
|
||||
},
|
||||
|
||||
// 记录页面访问PV
|
||||
recordPageView(pagePath) {
|
||||
return api.post(`/pv/record?pagePath=${encodeURIComponent(pagePath)}`)
|
||||
},
|
||||
|
||||
// 获取总PV
|
||||
getTotalPageViews() {
|
||||
return api.get('/pv/total')
|
||||
},
|
||||
|
||||
// 获取今日PV
|
||||
getTodayPageViews() {
|
||||
return api.get('/pv/today')
|
||||
},
|
||||
|
||||
// 获取近N天PV统计
|
||||
getPageViewsByDays(days = 7) {
|
||||
return api.get(`/pv/stats?days=${days}`)
|
||||
}
|
||||
}
|
||||
|
||||
export default api
|
||||
BIN
src/assets/3D.png
Normal file
|
After Width: | Height: | Size: 2.5 MiB |
BIN
src/assets/7lecai.png
Normal file
|
After Width: | Height: | Size: 3.1 MiB |
BIN
src/assets/7星彩.png
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
src/assets/backend.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
src/assets/banner/backend1.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
src/assets/banner/banner.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
9
src/assets/banner/banner.svg
Normal file
|
After Width: | Height: | Size: 490 KiB |
BIN
src/assets/banner/home.png
Normal file
|
After Width: | Height: | Size: 207 B |
BIN
src/assets/banner/kaijiang.png
Normal file
|
After Width: | Height: | Size: 257 B |
BIN
src/assets/banner/wode.png
Normal file
|
After Width: | Height: | Size: 218 B |
86
src/assets/base.css
Normal file
@@ -0,0 +1,86 @@
|
||||
/* color palette from <https://github.com/vuejs/theme> */
|
||||
:root {
|
||||
--vt-c-white: #ffffff;
|
||||
--vt-c-white-soft: #f8f8f8;
|
||||
--vt-c-white-mute: #f2f2f2;
|
||||
|
||||
--vt-c-black: #181818;
|
||||
--vt-c-black-soft: #222222;
|
||||
--vt-c-black-mute: #282828;
|
||||
|
||||
--vt-c-indigo: #2c3e50;
|
||||
|
||||
--vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
|
||||
--vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
|
||||
--vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
|
||||
--vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
|
||||
|
||||
--vt-c-text-light-1: var(--vt-c-indigo);
|
||||
--vt-c-text-light-2: rgba(60, 60, 60, 0.66);
|
||||
--vt-c-text-dark-1: var(--vt-c-white);
|
||||
--vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
|
||||
}
|
||||
|
||||
/* semantic color variables for this project */
|
||||
:root {
|
||||
--color-background: var(--vt-c-white);
|
||||
--color-background-soft: var(--vt-c-white-soft);
|
||||
--color-background-mute: var(--vt-c-white-mute);
|
||||
|
||||
--color-border: var(--vt-c-divider-light-2);
|
||||
--color-border-hover: var(--vt-c-divider-light-1);
|
||||
|
||||
--color-heading: var(--vt-c-text-light-1);
|
||||
--color-text: var(--vt-c-text-light-1);
|
||||
|
||||
--section-gap: 160px;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--color-background: var(--vt-c-black);
|
||||
--color-background-soft: var(--vt-c-black-soft);
|
||||
--color-background-mute: var(--vt-c-black-mute);
|
||||
|
||||
--color-border: var(--vt-c-divider-dark-2);
|
||||
--color-border-hover: var(--vt-c-divider-dark-1);
|
||||
|
||||
--color-heading: var(--vt-c-text-dark-1);
|
||||
--color-text: var(--vt-c-text-dark-2);
|
||||
}
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
color: var(--color-text);
|
||||
background: var(--color-background);
|
||||
transition:
|
||||
color 0.5s,
|
||||
background-color 0.5s;
|
||||
line-height: 1.6;
|
||||
font-family:
|
||||
Inter,
|
||||
-apple-system,
|
||||
BlinkMacSystemFont,
|
||||
'Segoe UI',
|
||||
Roboto,
|
||||
Oxygen,
|
||||
Ubuntu,
|
||||
Cantarell,
|
||||
'Fira Sans',
|
||||
'Droid Sans',
|
||||
'Helvetica Neue',
|
||||
sans-serif;
|
||||
font-size: 15px;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
BIN
src/assets/daletou.png
Normal file
|
After Width: | Height: | Size: 272 KiB |
4
src/assets/icon/ai.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg t="1753944963328" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6211" width="32" height="32">
|
||||
<path d="M603.904 244.992c134.4 0 243.3536 108.9536 243.3536 243.3536v202.8032c0 134.4-108.9536 243.3536-243.3536 243.3536H320c-134.4 0-243.3536-108.9536-243.3536-243.3536V488.3456c0-134.4 108.9536-243.3536 243.3536-243.3536h283.904z m0 81.1008H320c-89.6 0-162.2528 72.6528-162.2528 162.2528v202.8032c0 89.6 72.6528 162.2528 162.2528 162.2528h283.904c89.6 0 162.2528-72.6528 162.2528-162.2528V488.3456c0-89.6-72.6528-162.2528-162.2528-162.2528z" fill="#1296db" p-id="6212"></path>
|
||||
<path d="M340.224 508.6208c27.0336 0 40.5504 13.5168 40.5504 40.5504v81.1008c0 27.0336-13.5168 40.5504-40.5504 40.5504-27.0336 0-40.5504-13.5168-40.5504-40.5504v-81.1008c0-27.0336 13.5168-40.5504 40.5504-40.5504zM583.2192 501.3504c15.2576-11.4176 36.864-8.3456 48.2816 6.912a34.4832 34.4832 0 0 1-6.912 48.2816l-44.3904 33.28 44.3904 33.28a34.53952 34.53952 0 0 1 9.472 44.3392l-2.56 3.9424c-11.4176 15.2576-33.024 18.3296-48.2816 6.912l-59.4944-44.5952c-13.7728-10.3424-21.9136-26.5728-21.9136-43.8272s8.0896-33.4848 21.9136-43.8272l59.4944-44.5952zM883.5072 261.12l-19.7632 47.3088c-2.7648 6.656-9.2672 10.9568-16.4864 10.9568s-13.6704-4.3008-16.4864-10.9568L811.008 261.12a44.416 44.416 0 0 0-19.7632-21.9648l-34.8672-19.0976c-5.7344-3.1232-9.2672-9.1136-9.2672-15.6672s3.5328-12.544 9.2672-15.6672l34.8672-19.0464a44.89728 44.89728 0 0 0 19.7632-21.9648l19.7632-47.3088c2.7648-6.656 9.2672-10.9568 16.4864-10.9568s13.6704 4.3008 16.4864 10.9568l19.7632 47.3088a44.416 44.416 0 0 0 19.7632 21.9648l34.8672 19.0976c5.7344 3.1232 9.2672 9.1136 9.2672 15.6672s-3.584 12.544-9.2672 15.6672l-34.8672 19.0464c-8.9088 4.864-15.872 12.6464-19.7632 21.9648z" fill="#1296db" p-id="6213"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
1
src/assets/icon/bzzx.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1753948292582" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18768" width="32" height="32"><path d="M891.033093 98.392071 649.86931 98.392071c-56.248614 0-106.30472 27.178229-137.783303 68.977658-31.478582-41.799429-81.534688-68.977658-137.783303-68.977658L132.966907 98.392071c-38.015118 0-68.977658 30.96254-68.977658 68.977658l0 637.484294c0 38.015118 30.96254 68.977658 68.977658 68.977658l253.376785 0c33.88678 33.026709 78.782463 51.604233 125.742315 51.604233s91.855535-18.577524 125.742315-51.604233L891.033093 873.831682c38.015118 0 68.977658-30.96254 68.977658-68.977658L960.010751 167.36973C960.010751 129.354611 929.048211 98.392071 891.033093 98.392071zM891.033093 804.854023 622.863094 804.854023c-9.976818 0-19.609609 4.300353-26.146145 12.040988-21.501764 25.11406-52.464304 39.563245-84.630942 39.563245-32.166639 0-63.129179-14.449185-84.630942-39.563245-6.536536-7.740635-16.169326-12.040988-26.146145-12.040988l-268.342012 0L132.966907 167.36973l241.163783 0c56.936671 0 103.38048 46.44381 103.38048 103.38048l0 292.94003c0 19.093566 15.48127 34.402822 34.402822 34.402822 19.093566 0 34.402822-15.48127 34.402822-34.402822L546.316815 270.75021c0-56.936671 46.44381-103.38048 103.38048-103.38048L891.033093 167.36973 891.033093 804.854023z" fill="#2c2c2c" p-id="18769"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
1
src/assets/icon/dhjl.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1753948236353" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="17518" width="32" height="32"><path d="M828.61 878.22H195.46c-42.09 0-76.34-34.25-76.34-76.34V699.84c0-25.27 14.05-48.16 36.67-59.74 37.8-19.36 63.2-69.43 63.2-124.59 0-55.01-25.31-105.04-62.99-124.48-22.75-11.74-36.88-34.81-36.88-60.21V228.31c0-42.09 34.25-76.34 76.34-76.34h633.16c42.09 0 76.33 34.24 76.33 76.33v102.78c0 25.3-14.06 48.27-36.7 59.95-37.68 19.44-62.99 69.46-62.99 124.48 0 55 25.3 105.02 62.96 124.47 22.66 11.7 36.73 34.7 36.73 60.01v101.89c-0.01 42.1-34.25 76.34-76.34 76.34zM195.12 705.25v96.63c0 0.19 0.15 0.34 0.34 0.34h633.16c0.18 0 0.33-0.15 0.33-0.33v-96.74c-60.72-33.82-99.69-107.62-99.69-189.63 0-82.02 38.97-155.81 99.69-189.63V228.3c0-0.18-0.15-0.33-0.33-0.33H195.46c-0.19 0-0.34 0.15-0.34 0.34v97.47c60.82 33.78 99.87 107.63 99.87 189.73 0 82.16-39.03 155.96-99.87 189.74z" p-id="17519" fill="#2c2c2c"></path><path d="M643.78 421.79H380.22c-20.99 0-38-17.01-38-38s17.01-38 38-38h263.57c20.99 0 38 17.01 38 38-0.01 20.99-17.02 38-38.01 38zM643.78 616.58H380.22c-20.99 0-38-17.01-38-38s17.01-38 38-38h263.57c20.99 0 38 17.01 38 38-0.01 20.99-17.02 38-38.01 38z" p-id="17520" fill="#2c2c2c"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
1
src/assets/icon/gywm.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1753948313670" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="19844" width="32" height="32"><path d="M513 5C232.9 5 5 232.9 5 513s227.9 508 508 508 508-227.9 508-508S793.1 5 513 5zM217.4 867.4c63.9-145 177.4-234.3 300.3-234.3 121.6 0 232.5 85.3 297.6 228.2-81.1 70.5-186.7 113.5-302.3 113.5-112.4 0-215.4-40.4-295.6-107.4zM513 560.8c-73.6 0-133.6-59.9-133.6-133.6s60-133.6 133.6-133.6 133.6 59.9 133.6 133.6-60 133.6-133.6 133.6z m337.3 266.6c-62.2-127.2-159.4-210.7-269.7-233.8 65.7-26.8 112.2-91.2 112.2-166.5 0-99.1-80.6-179.8-179.8-179.8s-179.8 80.6-179.8 179.8c0 76.6 48.3 142.1 116 167.9-109.9 25.5-207.1 111.6-267.5 239-80.6-83.1-130.5-196.3-130.5-321C51.2 258.4 258.4 51.2 513 51.2S974.8 258.4 974.8 513c0 121.5-47.5 231.9-124.5 314.4z" fill="#2c2c2c" p-id="19845"></path></svg>
|
||||
|
After Width: | Height: | Size: 840 B |
BIN
src/assets/icon/login/mima.png
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
src/assets/icon/login/nicheng.png
Normal file
|
After Width: | Height: | Size: 472 B |
BIN
src/assets/icon/login/shouji.png
Normal file
|
After Width: | Height: | Size: 372 B |
BIN
src/assets/icon/login/yingcang.png
Normal file
|
After Width: | Height: | Size: 431 B |
BIN
src/assets/icon/login/zhanghao.png
Normal file
|
After Width: | Height: | Size: 583 B |
BIN
src/assets/icon/login/zhanshi.png
Normal file
|
After Width: | Height: | Size: 775 B |
1
src/assets/icon/sjfx.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1753945117321" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7804" width="32" height="32"><path d="M259.462 675.528H118.034a64.55 64.55 0 0 0-62.502 66.128V957.83a64.55 64.55 0 0 0 62.502 66.127h141.428a64.592 64.592 0 0 0 62.715-66.127V741.656a64.592 64.592 0 0 0-62.715-66.128z m0 304.401H118.034a19.198 19.198 0 0 1-19.199-22.12v-213.53a21.332 21.332 0 0 1 19.199-24.488h141.428a22.12 22.12 0 0 1 20.691 24.488v213.55a20.052 20.052 0 0 1-20.691 22.121z m678.343-668.595H796.377a65.061 65.061 0 0 0-62.501 67.301V956.72a65.04 65.04 0 0 0 62.501 67.28h141.428a65.19 65.19 0 0 0 62.502-67.28V378.635a65.061 65.061 0 0 0-62.502-67.3z m2.133 665.78H796.377a16.425 16.425 0 0 1-17.705-20.33V385.205a19.198 19.198 0 0 1 17.705-23.827h141.428a19.54 19.54 0 0 1 17.919 23.827v571.58c0 14.227-3.627 20.328-15.786 20.328zM440.993 476.866a64.955 64.955 0 0 0-62.714 66.81v413.449a64.933 64.933 0 0 0 62.714 66.81h141.642a64.933 64.933 0 0 0 62.715-66.81V543.677a64.955 64.955 0 0 0-62.715-66.81H440.993zM582.635 977.88H440.993a17.77 17.77 0 0 1-19.198-20.755V543.677a19.05 19.05 0 0 1 19.198-22.376h141.642a19.326 19.326 0 0 1 19.625 22.376v413.449a18.046 18.046 0 0 1-19.625 20.755zM561.73 447.493L904.528 97.272l62.928 65.061L975.99 0.021h-173l63.356 67.045-333.84 334.053-176.411-181.767a41.831 41.831 0 0 0-58.662 0L36.334 488.13a29.694 29.694 0 0 0-3.627 45.842c13.44 13.908 34.13-1.131 49.703-17.215L330.922 264.81l173 179.889a39.271 39.271 0 0 0 28.584 12.052 38.14 38.14 0 0 0 29.224-9.172z" p-id="7805" fill="#2c2c2c"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
1
src/assets/icon/tcjl.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg t="1753948072083" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9272" width="32" height="32"><path d="M754.346667 212.906667v-81.066667s7.68-58.453333-65.706667-58.453333H126.293333s-48.213333-2.56-48.213333 48.213333v706.56s5.12 58.453333 60.586667 58.453333h144.213333s27.733333 5.12 27.733333 35.413334-27.733333 30.293333-27.733333 30.293333h-179.2S7.253333 934.4 7.253333 846.08V129.28S-2.986667 5.12 128.853333 5.12h582.4s103.68 0 106.24 96.426667 2.56 111.36 2.56 111.36-5.12 30.293333-32.853333 30.293333c-27.733333 2.56-32.853333-25.6-32.853333-30.293333z m0 0" p-id="9273" fill="#2c2c2c"></path><path d="M619.946667 506.453333v136.96s-2.56 15.36 12.8 30.293334l134.4 134.4s22.613333 10.24 40.533333-7.68c20.053333-20.053333-2.56-45.653333-2.56-45.653334l-111.36-116.48s-7.68-5.12-7.68-27.733333v-106.24s-10.24-27.733333-32.853333-27.733333c-23.04 2.133333-33.28 22.186667-33.28 29.866666z m0 0" p-id="9274" fill="#2c2c2c"></path><path d="M686.08 346.88c-184.746667 0-336.64 149.333333-336.64 336.64 0 184.746667 149.333333 336.64 336.64 336.64 184.746667 0 336.64-149.333333 336.64-336.64-2.56-187.306667-151.893333-336.64-336.64-336.64z m0 608c-149.333333 0-270.933333-121.6-270.933333-270.933333 0-149.333333 121.6-270.933333 270.933333-270.933334 149.333333 0 270.933333 121.6 270.933333 270.933334 0 149.333333-121.6 270.933333-270.933333 270.933333zM290.986667 478.72H199.68c-15.36 0-27.733333-12.8-27.733333-27.733333v-15.36c0-15.36 12.8-27.733333 27.733333-27.733334h91.306667c15.36 0 27.733333 12.8 27.733333 27.733334v15.36c0 17.493333-12.8 27.733333-27.733333 27.733333z m339.2-202.666667H199.68c-15.36 0-27.733333-12.8-27.733333-27.733333v-15.36c0-15.36 12.8-27.733333 27.733333-27.733333h427.946667c15.36 0 27.733333 12.8 27.733333 27.733333v15.36c0 14.933333-12.373333 27.733333-25.173333 27.733333z m0 0" p-id="9275" fill="#2c2c2c"></path></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/icon/tuichu.png
Normal file
|
After Width: | Height: | Size: 633 B |
BIN
src/assets/icon/zuanshi.png
Normal file
|
After Width: | Height: | Size: 606 B |
BIN
src/assets/kuaile8.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
1
src/assets/logo.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>
|
||||
|
After Width: | Height: | Size: 276 B |
25
src/assets/main.css
Normal file
@@ -0,0 +1,25 @@
|
||||
@import './base.css';
|
||||
|
||||
#app {
|
||||
margin: 0 auto;
|
||||
font-weight: normal;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-color: rgb(240, 242, 245);
|
||||
}
|
||||
|
||||
a,
|
||||
.green {
|
||||
text-decoration: none;
|
||||
color: hsla(160, 100%, 37%, 1);
|
||||
transition: 0.4s;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
a:hover {
|
||||
background-color: hsla(160, 100%, 37%, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
/* 移除可能影响布局的媒体查询 */
|
||||
BIN
src/assets/pailie3.png
Normal file
|
After Width: | Height: | Size: 292 KiB |
BIN
src/assets/pailie5.png
Normal file
|
After Width: | Height: | Size: 239 KiB |
BIN
src/assets/shuangseqiu.png
Normal file
|
After Width: | Height: | Size: 96 KiB |