生成开发计划,前端代码完成初步融合对接。
39
README.md
@ -0,0 +1,39 @@
|
||||
# Finyx Data - 更新说明(后续研发指引)
|
||||
|
||||
本仓库包含“数据资产盘点/价值挖掘”相关的**AI 后端服务、业务后端服务、前端工程**以及用于评审的**原型界面**。本文用于统一说明各目录职责与后续研发协作方式。
|
||||
|
||||
## 目录职责与边界(必读)
|
||||
|
||||
### `finyx_data_ai_backend/`(大模型与 AI 技术相关后台服务)
|
||||
|
||||
- **定位**:专注大模型能力、AI 算法/提示词工程、AI 相关工具链与接口封装。
|
||||
- **对接方式**:通过 API 接口与其他服务/前端对接(不直接耦合具体业务后端实现)。
|
||||
- **推荐入口文档**:
|
||||
- `finyx_data_ai_backend/README.md`
|
||||
- `finyx_data_ai_backend/API_DOCUMENTATION.md`
|
||||
- `finyx_data_ai_backend/研发进度说明.md`
|
||||
|
||||
### `finyx_data_backend/`(前后端分离架构的业务后端服务,Python)
|
||||
|
||||
- **定位**:业务后端(非 AI),提供业务数据、权限、项目流程等后端能力。
|
||||
- **技术**:采用 **Python** 提供后端服务(具体框架与启动方式以目录内文档/脚本为准)。
|
||||
- **对接方式**:向 `finyx_data_frontend/` 提供业务 API;必要时再去调用 `finyx_data_ai_backend/` 的 AI 能力接口。
|
||||
|
||||
### `finyx_data_frontend/`(前端开发目录)
|
||||
|
||||
- **定位**:正式前端工程,与 `finyx_data_backend/`、`finyx_data_ai_backend/` 等后端目录对接。
|
||||
- **对接方式**:通过环境配置(如 baseURL/代理)对接后端接口;接口以各后端的 API 文档为准。
|
||||
|
||||
### `frontend_demo/`(新设计原型界面:设计/演示/评审)
|
||||
|
||||
- **定位**:用于**前期设计与演示**,支持评审确认与快速迭代;不作为最终生产代码的唯一来源。
|
||||
- **融合策略**:评审确认后,将原型中确认的页面结构、交互与组件方案**逐步融合**到 `finyx_data_frontend/`:
|
||||
- **先对齐**:路由结构、页面信息架构、交互流程
|
||||
- **再迁移**:通用组件、样式规范、状态管理模式
|
||||
- **最后接入**:真实接口联调、鉴权、错误处理、埋点/日志等工程化能力
|
||||
|
||||
## 协作约定(建议)
|
||||
|
||||
- **接口优先**:以各后端目录下的 API 文档为准;接口变更需同步更新对应文档并标注版本/日期。
|
||||
- **边界清晰**:AI 能力统一在 `finyx_data_ai_backend/` 对外提供;业务后端避免在前端直接散落多套 AI 调用逻辑。
|
||||
- **原型到生产**:`frontend_demo/` 仅做设计与评审载体;生产交付以 `finyx_data_frontend/` 为准。
|
||||
1
finyx_data_ai_backend
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit ebb03caa52ddbd99e707a370947019b88badd834
|
||||
22
finyx_data_frontend/.eslintrc.cjs
Executable file
@ -0,0 +1,22 @@
|
||||
/* eslint-env node */
|
||||
require('@rushstack/eslint-patch/modern-module-resolution')
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
'extends': [
|
||||
'plugin:vue/vue3-essential',
|
||||
'eslint:recommended',
|
||||
'@vue/eslint-config-typescript',
|
||||
'@vue/eslint-config-prettier/skip-formatting'
|
||||
],
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest'
|
||||
},
|
||||
rules: {
|
||||
// 添加组件命名忽略规则
|
||||
"vue/multi-word-component-names":"off",
|
||||
// "vue/multi-word-component-names": ["error",{
|
||||
// "ignores": ["index","main"]//需要忽略的组件名
|
||||
// }]
|
||||
}
|
||||
}
|
||||
29
finyx_data_frontend/.gitignore
vendored
Executable file
@ -0,0 +1,29 @@
|
||||
# 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?
|
||||
stats.html
|
||||
8
finyx_data_frontend/.prettierrc.json
Executable file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/prettierrc",
|
||||
"semi": false,
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true,
|
||||
"printWidth": 100,
|
||||
"trailingComma": "none"
|
||||
}
|
||||
100
finyx_data_frontend/README.md
Executable file
@ -0,0 +1,100 @@
|
||||
## Project Setup
|
||||
|
||||
```sh
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compile and Hot-Reload for Development
|
||||
|
||||
```sh
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Type-Check, Compile and Minify for Production
|
||||
|
||||
```sh
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Run Unit Tests with [Vitest](https://vitest.dev/)
|
||||
|
||||
```sh
|
||||
npm run test:unit
|
||||
```
|
||||
|
||||
### Lint with [ESLint](https://eslint.org/)
|
||||
|
||||
```sh
|
||||
npm run lint
|
||||
```
|
||||
|
||||
### css全局变量说明
|
||||
|
||||
```sh
|
||||
:root {
|
||||
--app-base-px: 8px;
|
||||
--app-layout-bg-color: #f5f6f7;
|
||||
--app-text-color: #1f2329; 全局文本颜色
|
||||
--app-text-color-light-1: rgba(31, 35, 41, 0.1);
|
||||
--app-text-color-secondary: #646a73;
|
||||
--app-text-color-disable: #bbbfc4;
|
||||
--app-input-color-placeholder: #8f959e;
|
||||
--app-view-padding: 24px;
|
||||
--app-view-bg-color: #ffffff;
|
||||
--app-border-color-dark: #bbbfc4;
|
||||
--md-bk-hover-color:var(--el-border-color-hover);
|
||||
/** header 组件 */
|
||||
--app-header-height: 56px;
|
||||
--app-header-padding: 0 20px;
|
||||
--app-header-bg-color: linear-gradient(90deg, #ebf1ff 24.34%, #e5fbf8 56.18%, #f2ebfe 90.18%);
|
||||
--app-logo-color: linear-gradient(180deg, #3370FF 0%, #7f3bf5 100%);
|
||||
--app-avatar-gradient-color: linear-gradient(270deg, #9258f7 0%, #3370FF 100%);
|
||||
|
||||
/* 计算高度 */
|
||||
--app-main-height: calc(100vh - var(--app-header-height) - var(--app-view-padding) * 2 - 40px);
|
||||
|
||||
/** sidebar 组件 */
|
||||
--sidebar-bg-color: #ffffff;
|
||||
--sidebar-width: 240px;
|
||||
/** tag */
|
||||
--tag-default-bg: rgba(51, 112, 255, 0.2);
|
||||
--tag-default-color: #2b5fd9;
|
||||
--tag-success-bg: rgba(52, 199, 36, 0.2);
|
||||
--tag-success-color: #2ca91f;
|
||||
--tag-warning-bg: rgba(255, 136, 0, 0.2);
|
||||
--tag-warning-color: #d97400;
|
||||
--tag-danger-bg: rgba(245, 74, 69, 0.2);
|
||||
|
||||
/** card */
|
||||
--card-width: 330px;
|
||||
--card-min-height: 166px;
|
||||
--card-min-width: 220px;
|
||||
|
||||
/** setting */
|
||||
--setting-left-width: 280px;
|
||||
|
||||
/** dataset */
|
||||
--create-dataset-height: calc(var(--app-main-height) - 70px);
|
||||
|
||||
/** ai-chat */
|
||||
--dialog-bg-gradient-color: linear-gradient(
|
||||
188deg,
|
||||
rgba(235, 241, 255, 0.2) 39.6%,
|
||||
rgba(231, 249, 255, 0.2) 94.3%
|
||||
),
|
||||
#eff0f1;
|
||||
}
|
||||
|
||||
# element-plus css全局变量
|
||||
|
||||
:root {
|
||||
--el-color-primary: #3370ff;
|
||||
--el-menu-item-height: 45px;
|
||||
--el-box-shadow-light: 0px 2px 4px 0px rgba(31, 35, 41, 0.12);
|
||||
--el-border-color: #dee0e3;
|
||||
--el-text-color-regular: #1f2329;
|
||||
--el-color-info: #8f959e !important;
|
||||
--el-disabled-bg-color: #eff0f1 !important;
|
||||
--el-text-color-primary: #1f2329;
|
||||
}
|
||||
```
|
||||
75
finyx_data_frontend/build.sh
Executable file
@ -0,0 +1,75 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 构建脚本 - 自动加载 nvm 并执行构建
|
||||
|
||||
set -e # 遇到错误立即退出
|
||||
|
||||
# 颜色定义
|
||||
RED='\033[0;31m'
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
NC='\033[0m' # No Color
|
||||
|
||||
# 打印带颜色的消息
|
||||
print_info() {
|
||||
echo -e "${GREEN}[INFO]${NC} $1"
|
||||
}
|
||||
|
||||
print_warn() {
|
||||
echo -e "${YELLOW}[WARN]${NC} $1"
|
||||
}
|
||||
|
||||
print_error() {
|
||||
echo -e "${RED}[ERROR]${NC} $1"
|
||||
}
|
||||
|
||||
# 获取脚本所在目录
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd "$SCRIPT_DIR"
|
||||
|
||||
print_info "开始构建项目..."
|
||||
|
||||
# 加载 nvm
|
||||
if [ -s "$HOME/.nvm/nvm.sh" ]; then
|
||||
print_info "加载 nvm..."
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
else
|
||||
print_warn "未找到 nvm,尝试使用系统 Node.js..."
|
||||
fi
|
||||
|
||||
# 检查 Node.js 是否可用
|
||||
if ! command -v node &> /dev/null; then
|
||||
print_error "Node.js 未找到!请确保已安装 Node.js 或配置了 nvm。"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 显示 Node.js 版本
|
||||
NODE_VERSION=$(node --version)
|
||||
print_info "使用 Node.js 版本: $NODE_VERSION"
|
||||
|
||||
# 检查 pnpm 是否可用
|
||||
if ! command -v pnpm &> /dev/null; then
|
||||
print_error "pnpm 未找到!请先安装 pnpm: npm install -g pnpm"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 显示 pnpm 版本
|
||||
PNPM_VERSION=$(pnpm --version)
|
||||
print_info "使用 pnpm 版本: $PNPM_VERSION"
|
||||
|
||||
# 执行构建
|
||||
print_info "执行构建命令: pnpm run build"
|
||||
echo ""
|
||||
|
||||
pnpm run build
|
||||
|
||||
# 检查构建结果
|
||||
if [ $? -eq 0 ]; then
|
||||
print_info "构建成功完成!"
|
||||
print_info "构建产物位于: $SCRIPT_DIR/dist"
|
||||
exit 0
|
||||
else
|
||||
print_error "构建失败!"
|
||||
exit 1
|
||||
fi
|
||||
1020
finyx_data_frontend/docs/数据资产盘点报告-大模型接口设计文档.md
Executable file
258
finyx_data_frontend/docs/部署指南.md
Executable file
@ -0,0 +1,258 @@
|
||||
# 生产环境部署指南
|
||||
|
||||
## 一、服务器地址配置说明
|
||||
|
||||
### 1. 当前代码中的服务器地址配置位置
|
||||
|
||||
代码中使用了**相对路径**作为 API 的 baseURL,这意味着:
|
||||
|
||||
- **开发环境**:通过 Vite 代理转发到后端服务器
|
||||
- **生产环境**:需要通过 Nginx 等反向代理服务器配置转发
|
||||
|
||||
#### 代码中的 API 路径配置:
|
||||
|
||||
1. **登录接口** (`src/request/http.ts`)
|
||||
- baseURL: `/dada`
|
||||
- 开发环境代理:`vite.config.ts` 第 44-48 行
|
||||
|
||||
2. **智能审核接口** (`src/request/reviewHttp.ts`)
|
||||
- baseURL: `/ai-review/api`
|
||||
- 开发环境代理:`vite.config.ts` 第 25-29 行
|
||||
|
||||
3. **智能写作接口** (`src/request/writingHttp.ts`)
|
||||
- baseURL: `/ai-doc/api`
|
||||
- 开发环境代理:`vite.config.ts` 第 31-35 行
|
||||
|
||||
4. **AI助手对话接口** (`src/api/finyxbot.ts`)
|
||||
- baseURL: `/finyx-bot/api`
|
||||
- 开发环境代理:`vite.config.ts` 第 37-41 行
|
||||
|
||||
### 2. 开发环境服务器地址
|
||||
|
||||
当前开发环境配置的服务器地址为:`https://finyxdev.datacubeworld.com`
|
||||
|
||||
位置:`vite.config.ts` 第 26、32、38、45 行
|
||||
|
||||
```typescript
|
||||
// 开发环境代理配置(仅开发时使用)
|
||||
proxyConf['/ai-review/api'] = {
|
||||
target: 'https://finyxdev.datacubeworld.com', // 开发环境地址
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(ENV.VITE_BASE_PATH, '/')
|
||||
}
|
||||
```
|
||||
|
||||
## 二、生产环境部署步骤
|
||||
|
||||
### 步骤 1:修改开发环境代理地址(可选)
|
||||
|
||||
如果需要在开发环境测试生产服务器,可以修改 `vite.config.ts` 中的 `target` 地址:
|
||||
|
||||
```typescript
|
||||
// 将以下地址改为你的生产环境地址
|
||||
const PROD_SERVER = 'https://your-production-server.com'
|
||||
|
||||
proxyConf['/ai-review/api'] = {
|
||||
target: PROD_SERVER,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(ENV.VITE_BASE_PATH, '/')
|
||||
}
|
||||
|
||||
proxyConf['/ai-doc/api'] = {
|
||||
target: PROD_SERVER,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(ENV.VITE_BASE_PATH, '/')
|
||||
}
|
||||
|
||||
proxyConf['/finyx-bot/api'] = {
|
||||
target: PROD_SERVER,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(ENV.VITE_BASE_PATH, '/')
|
||||
}
|
||||
|
||||
proxyConf['/dada'] = {
|
||||
target: PROD_SERVER,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(ENV.VITE_BASE_PATH, '/')
|
||||
}
|
||||
```
|
||||
|
||||
### 步骤 2:构建生产版本
|
||||
|
||||
```bash
|
||||
# 构建生产版本
|
||||
pnpm run build:prd
|
||||
|
||||
# 或者
|
||||
pnpm run build
|
||||
```
|
||||
|
||||
构建完成后,会在 `dist` 目录生成静态文件。
|
||||
|
||||
### 步骤 3:配置 Nginx 反向代理
|
||||
|
||||
生产环境需要配置 Nginx 反向代理,将前端请求转发到后端服务器。
|
||||
|
||||
#### Nginx 配置示例:
|
||||
|
||||
```nginx
|
||||
server {
|
||||
listen 80;
|
||||
server_name your-domain.com;
|
||||
|
||||
# 前端静态文件目录
|
||||
root /path/to/your/dist;
|
||||
index index.html;
|
||||
|
||||
# 前端路由(Vue Router history 模式)
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
# 登录接口代理
|
||||
location /dada {
|
||||
proxy_pass https://your-production-server.com;
|
||||
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;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
|
||||
# 智能审核接口代理
|
||||
location /ai-review/api {
|
||||
proxy_pass https://your-production-server.com;
|
||||
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;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
|
||||
# 智能写作接口代理
|
||||
location /ai-doc/api {
|
||||
proxy_pass https://your-production-server.com;
|
||||
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;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
|
||||
# AI助手对话接口代理
|
||||
location /finyx-bot/api {
|
||||
proxy_pass https://your-production-server.com;
|
||||
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;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
|
||||
# WebSocket 支持(如果需要)
|
||||
location /finyx-bot/api/v1/chat/stream {
|
||||
proxy_pass https://your-production-server.com;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
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;
|
||||
proxy_read_timeout 3600s;
|
||||
proxy_ssl_verify off;
|
||||
}
|
||||
|
||||
# 静态资源缓存
|
||||
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
|
||||
expires 1y;
|
||||
add_header Cache-Control "public, immutable";
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**重要提示**:
|
||||
- 将 `your-production-server.com` 替换为你的实际生产环境服务器地址
|
||||
- 将 `your-domain.com` 替换为你的实际域名
|
||||
- 将 `/path/to/your/dist` 替换为实际的 dist 目录路径
|
||||
|
||||
### 步骤 4:部署静态文件
|
||||
|
||||
将构建好的 `dist` 目录内容上传到服务器,并确保 Nginx 配置的 `root` 路径正确。
|
||||
|
||||
### 步骤 5:重启 Nginx
|
||||
|
||||
```bash
|
||||
# 测试 Nginx 配置
|
||||
sudo nginx -t
|
||||
|
||||
# 重启 Nginx
|
||||
sudo systemctl restart nginx
|
||||
# 或
|
||||
sudo service nginx restart
|
||||
```
|
||||
|
||||
## 三、环境变量配置(可选)
|
||||
|
||||
如果需要使用环境变量,可以在 `env` 目录下创建环境变量文件:
|
||||
|
||||
### 创建 `env/.env.production` 文件:
|
||||
|
||||
```env
|
||||
# 基础路径
|
||||
VITE_BASE_PATH=/
|
||||
|
||||
# 应用端口(开发环境)
|
||||
VITE_APP_PORT=5173
|
||||
|
||||
# 构建模式
|
||||
VITE_BUILD=PRD
|
||||
|
||||
# Mock 服务器(开发环境)
|
||||
VITE_MOCK_DEV_SERVER=false
|
||||
```
|
||||
|
||||
## 四、常见问题
|
||||
|
||||
### Q1: 如何确认当前连接的是哪个服务器?
|
||||
|
||||
**开发环境**:
|
||||
- 查看浏览器开发者工具的 Network 面板
|
||||
- 查看请求的实际 URL,开发环境会显示为 `localhost:5173` 开头的地址
|
||||
|
||||
**生产环境**:
|
||||
- 查看浏览器开发者工具的 Network 面板
|
||||
- 查看请求的 Response Headers 中的 `X-Forwarded-Host` 或实际请求的域名
|
||||
|
||||
### Q2: 生产环境如何切换服务器地址?
|
||||
|
||||
生产环境的服务器地址在 **Nginx 配置**中设置,修改 `proxy_pass` 后面的地址即可:
|
||||
|
||||
```nginx
|
||||
location /dada {
|
||||
proxy_pass https://new-production-server.com; # 修改这里
|
||||
# ... 其他配置
|
||||
}
|
||||
```
|
||||
|
||||
修改后需要:
|
||||
1. 测试配置:`sudo nginx -t`
|
||||
2. 重新加载:`sudo nginx -s reload` 或重启 Nginx
|
||||
|
||||
### Q3: 代码中需要修改服务器地址吗?
|
||||
|
||||
**不需要**。代码中使用的是相对路径(如 `/dada`、`/ai-review/api`),这些路径会通过 Nginx 代理转发到实际的后端服务器。只需要在 Nginx 配置中修改 `proxy_pass` 的目标地址即可。
|
||||
|
||||
### Q4: 如何同时支持多个环境?
|
||||
|
||||
可以通过环境变量和 Nginx 配置来实现:
|
||||
|
||||
1. 在 `vite.config.ts` 中根据环境变量动态设置代理地址
|
||||
2. 在 Nginx 配置中使用变量或不同的 server 块来区分环境
|
||||
|
||||
## 五、总结
|
||||
|
||||
1. **开发环境**:服务器地址在 `vite.config.ts` 的代理配置中(第 26、32、38、45 行)
|
||||
2. **生产环境**:服务器地址在 **Nginx 配置**的 `proxy_pass` 中设置
|
||||
3. **代码中**:使用相对路径,无需修改代码即可切换服务器
|
||||
4. **部署流程**:构建 → 上传静态文件 → 配置 Nginx → 重启服务
|
||||
19
finyx_data_frontend/env.d.ts
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
/// <reference types="vite/client" />
|
||||
declare module 'element-plus/dist/locale/zh-cn.mjs'
|
||||
declare module 'element-plus/dist/locale/en.mjs'
|
||||
declare module 'element-plus/dist/locale/zh-tw.mjs'
|
||||
declare module 'markdown-it-task-lists'
|
||||
declare module 'markdown-it-abbr'
|
||||
declare module 'markdown-it-anchor'
|
||||
declare module 'markdown-it-footnote'
|
||||
declare module 'markdown-it-sub'
|
||||
declare module 'markdown-it-sup'
|
||||
declare module 'markdown-it-toc-done-right'
|
||||
declare module 'katex'
|
||||
interface Window {
|
||||
sendMessage: ?((message: string, other_params_data: any) => void)
|
||||
}
|
||||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv
|
||||
}
|
||||
declare type Recordable<T = any> = Record<string, T>
|
||||
4
finyx_data_frontend/env/.env
vendored
Executable file
@ -0,0 +1,4 @@
|
||||
VITE_APP_NAME=ui
|
||||
VITE_BASE_PATH=./
|
||||
VITE_APP_PORT=8302
|
||||
VITE_APP_TITLE = '智慧纪检助手'
|
||||
6
finyx_data_frontend/env/.env.development
vendored
Executable file
@ -0,0 +1,6 @@
|
||||
NODE_ENV = development
|
||||
VITE_APP_NAME=ui
|
||||
VITE_BASE_PATH=./
|
||||
VITE_APP_PORT=8302
|
||||
VITE_APP_TITLE = '智慧纪检助手'
|
||||
VITE_MOCK_DEV_SERVER=true
|
||||
6
finyx_data_frontend/env/.env.production
vendored
Executable file
@ -0,0 +1,6 @@
|
||||
NODE_ENV = production
|
||||
VITE_BUILD=PRD
|
||||
VITE_APP_NAME=ui
|
||||
VITE_BASE_PATH=./
|
||||
VITE_APP_PORT=8302
|
||||
VITE_APP_TITLE = '智慧纪检助手'
|
||||
24
finyx_data_frontend/index.html
Executable file
@ -0,0 +1,24 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no,
|
||||
viewport-fit=cover"
|
||||
/>
|
||||
<meta http-equiv="pragram" content="no-cache">
|
||||
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
|
||||
<meta http-equiv="expires" content="0">
|
||||
<base target="_blank" />
|
||||
<title>%VITE_APP_TITLE%</title>
|
||||
<script>
|
||||
window.__BUILD_TIME__ = '<%= buildTime %>'; // 将时间注入全局变量
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
31
finyx_data_frontend/mock/user.mock.ts
Executable file
@ -0,0 +1,31 @@
|
||||
import { defineMock } from 'vite-plugin-mock-dev-server'
|
||||
|
||||
export default defineMock([
|
||||
// 获取用户列表
|
||||
{
|
||||
url: '/ai-doc/api/v1/users',
|
||||
method: 'GET',
|
||||
body: {
|
||||
code: 0,
|
||||
message: '获取用户列表成功',
|
||||
data: [
|
||||
{ id: 1, name: '1娃', age: 25 },
|
||||
{ id: 2, name: '2娃', age: 22 },
|
||||
{ id: 3, name: '3娃', age: 18 }
|
||||
]
|
||||
}
|
||||
},
|
||||
// 获取单个用户
|
||||
{
|
||||
url: '/ai-doc/api/v1/users/:id',
|
||||
method: 'GET',
|
||||
body: (params) => {
|
||||
// 这里可以根据params.id返回不同的用户
|
||||
return {
|
||||
code: 0,
|
||||
message: `获取用户${params.query.id}成功`,
|
||||
data: { id: params.query.id, name: `用户${params.query.id}`, age: 20 + Number(params.query.id) }
|
||||
}
|
||||
}
|
||||
}
|
||||
])
|
||||
57
finyx_data_frontend/openapi.config.js
Executable file
@ -0,0 +1,57 @@
|
||||
import { generateService } from "@lz-ui/openapi";
|
||||
|
||||
const openapiList = [
|
||||
{
|
||||
apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-8-12/1066410/finyx_OpenAPI.json',
|
||||
localPath: 'finyx',
|
||||
apiPrefix: 'finyx',
|
||||
},
|
||||
{
|
||||
apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-7-28/1030149/base_OpenAPI.json',
|
||||
localPath: 'base',
|
||||
apiPrefix: 'base',
|
||||
},
|
||||
{
|
||||
apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-8-1/1091284/oauth_OpenAPI.json',
|
||||
localPath: 'oauth',
|
||||
apiPrefix: 'oauth',
|
||||
},
|
||||
|
||||
|
||||
// {
|
||||
// // apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-4-3/1012708/ai_OpenAPI.json',
|
||||
// apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-4-7/1073770/ai_OpenAPI.json',
|
||||
// localPath: 'ai',
|
||||
// apiPrefix: 'ai',
|
||||
// },
|
||||
// {
|
||||
// apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-3-29/1040347/oauth_OpenAPI.json',
|
||||
// localPath: 'oauth',
|
||||
// apiPrefix: 'oauth',
|
||||
// },
|
||||
// {
|
||||
// apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-3-18/1009894/base_OpenAPI.json',
|
||||
// localPath: 'base/file',
|
||||
// apiPrefix: 'base',
|
||||
// },
|
||||
// {
|
||||
// apiUrl: 'https://cos-1251140835.cos.ap-shanghai.myqcloud.com/object/2025-3-18/1098024/base-%E5%9F%BA%E7%A1%80%E6%A8%A1%E5%9D%97_OpenAPI.json',
|
||||
// localPath: 'base/jichu',
|
||||
// apiPrefix: 'base',
|
||||
// }
|
||||
]
|
||||
|
||||
async function main() {
|
||||
for (const item of openapiList) {
|
||||
const p = {
|
||||
requestLibPath: "import request from '@/request/http'", // 整合axios导出的实例位置
|
||||
schemaPath: item.apiUrl, // 后端swagger接口文档地址
|
||||
serversPath: `./src/servers/${item.localPath}`, // 代码生成目录
|
||||
apiPrefix: `"/${item.apiPrefix}"`,
|
||||
}
|
||||
// console.log(p)
|
||||
await generateService(p);
|
||||
}
|
||||
}
|
||||
|
||||
main()
|
||||
16555
finyx_data_frontend/package-lock.json
generated
Normal file
115
finyx_data_frontend/package.json
Executable file
@ -0,0 +1,115 @@
|
||||
{
|
||||
"type": "module",
|
||||
"name": "web",
|
||||
"version": "v1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build:prd": "rimraf dist && NODE_OPTIONS=--max_old_space_size=4096 run-p type-check build-only",
|
||||
"build": "rimraf dist && NODE_OPTIONS=--max_old_space_size=4096 run-p build-only",
|
||||
"preview": "vite preview",
|
||||
"test:unit": "vitest",
|
||||
"build-only": "vite build --mode production",
|
||||
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||
"openapi": "node openapi.config.js",
|
||||
"clear": "rimraf node_modules dist",
|
||||
"lzui": "pnpm install --registry https://npm.jczxw.cn @lzui/lzui-lib@latest",
|
||||
"i": "pnpm install --registry https://npm.jczxw.cn",
|
||||
"format": "prettier --write src/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@codemirror/lang-json": "^6.0.1",
|
||||
"@codemirror/lang-python": "^6.1.7",
|
||||
"@codemirror/lint": "^6.8.4",
|
||||
"@codemirror/theme-one-dark": "^6.1.2",
|
||||
"@element-plus/icons-vue": "^2.3.1",
|
||||
"@js-preview/docx": "^1.6.0",
|
||||
"@js-preview/excel": "^1.7.3",
|
||||
"@js-preview/pdf": "^2.0.0",
|
||||
"@lzui/lzui-lib": "0.1.0-alpha5",
|
||||
"@popperjs/core": "2.11.8",
|
||||
"@tiptap/core": "^2.14.0",
|
||||
"@tiptap/extension-color": "^2.14.0",
|
||||
"@tiptap/extension-font-family": "^2.14.0",
|
||||
"@tiptap/extension-font-size": "3.0.0-next.3",
|
||||
"@tiptap/extension-text-align": "^2.14.0",
|
||||
"@tiptap/extension-text-style": "^2.14.0",
|
||||
"@tiptap/extension-underline": "^2.14.0",
|
||||
"@tiptap/starter-kit": "^2.14.0",
|
||||
"@tiptap/vue-3": "^2.14.0",
|
||||
"@vavt/cm-extension": "^1.6.0",
|
||||
"@vueuse/core": "^10.9.0",
|
||||
"axios": "^0.28.0",
|
||||
"codemirror": "^6.0.1",
|
||||
"core-js": "^3.47.0",
|
||||
"cropperjs": "^1.6.2",
|
||||
"crypto-js": "^4.2.0",
|
||||
"dayjs": "^1.11.13",
|
||||
"echarts": "^5.5.0",
|
||||
"element-plus": "^2.9.1",
|
||||
"highlight.js": "^11.9.0",
|
||||
"katex": "^0.16.10",
|
||||
"lodash-es": "^4.17.21",
|
||||
"lucide-vue-next": "^0.344.0",
|
||||
"marked": "^12.0.2",
|
||||
"md-editor-v3": "^5.8.4",
|
||||
"mermaid": "^10.9.0",
|
||||
"mitt": "^3.0.0",
|
||||
"moment": "^2.30.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"pinia": "^2.1.6",
|
||||
"pinyin-pro": "^3.18.2",
|
||||
"pptx-preview": "^1.0.5",
|
||||
"screenfull": "^6.0.2",
|
||||
"vue": "^3.3.4",
|
||||
"vue-clipboard3": "^2.0.0",
|
||||
"vue-codemirror": "^6.1.1",
|
||||
"vue-draggable-plus": "^0.6.0",
|
||||
"vue-pdf-embed": "^2.1.3",
|
||||
"vue-router": "^4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lz-ui/openapi": "^0.0.1",
|
||||
"@rushstack/eslint-patch": "^1.3.2",
|
||||
"@tsconfig/node18": "^18.2.0",
|
||||
"@types/crypto-js": "^4.2.2",
|
||||
"@types/file-saver": "^2.0.7",
|
||||
"@types/jsdom": "^21.1.1",
|
||||
"@types/lodash": "^4.17.16",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/node": "^18.19.79",
|
||||
"@types/nprogress": "^0.2.0",
|
||||
"@vitejs/plugin-vue": "^4.3.1",
|
||||
"@vue/eslint-config-prettier": "^8.0.0",
|
||||
"@vue/eslint-config-typescript": "^11.0.3",
|
||||
"@vue/test-utils": "^2.4.1",
|
||||
"@vue/tsconfig": "^0.4.0",
|
||||
"aieditor": "^1.3.8",
|
||||
"archiver": "^7.0.1",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"esbuild": "0.25.5",
|
||||
"eslint": "^8.46.0",
|
||||
"eslint-plugin-vue": "^9.16.1",
|
||||
"jsdom": "^22.1.0",
|
||||
"mockjs": "^1.1.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.4.32",
|
||||
"prettier": "^3.0.0",
|
||||
"rimraf": "^6.0.1",
|
||||
"rollup-plugin-visualizer": "^5.14.0",
|
||||
"sass": "1.66.1",
|
||||
"tailwindcss": "^3.3.6",
|
||||
"terser": "^5.39.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "~5.1.6",
|
||||
"unplugin-vue-define-options": "^1.3.18",
|
||||
"vite": "^6.3.5",
|
||||
"vite-plugin-compression": "^0.5.1",
|
||||
"vite-plugin-html": "^3.2.2",
|
||||
"vite-plugin-mock-dev-server": "^1.8.7",
|
||||
"vite-plugin-svg-icons": "^2.0.1",
|
||||
"vitest": "^0.34.2",
|
||||
"vue-tsc": "^1.8.8"
|
||||
}
|
||||
}
|
||||
10699
finyx_data_frontend/pnpm-lock.yaml
generated
Executable file
7
finyx_data_frontend/postcss.config.js
Normal file
@ -0,0 +1,7 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
|
||||
BIN
finyx_data_frontend/public/favicon.ico
Executable file
|
After Width: | Height: | Size: 43 KiB |
11
finyx_data_frontend/public/images/def_agent.svg
Executable file
|
After Width: | Height: | Size: 430 KiB |
10
finyx_data_frontend/src/App.vue
Executable file
@ -0,0 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<router-view v-slot="{ Component }">
|
||||
<component :is="Component" />
|
||||
</router-view>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
165
finyx_data_frontend/src/api/dada.ts
Executable file
@ -0,0 +1,165 @@
|
||||
import { post, get } from '@/request/http'
|
||||
import request from '@/request/http'
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
|
||||
export interface LoginRequest {
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
username?: string
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
password?: string
|
||||
/**
|
||||
* 授权类型 CAPTCHA MOBILE
|
||||
*/
|
||||
grantType?: string
|
||||
/**
|
||||
* 手机号
|
||||
*/
|
||||
mobile?: string
|
||||
/**
|
||||
* 验证码
|
||||
*/
|
||||
code?: string
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户登录函数
|
||||
*
|
||||
* 该函数用于处理用户登录请求,通过发送POST请求到指定的登录接口,并返回登录结果。
|
||||
*
|
||||
* @param {LoginRequest} request - 登录请求参数,包含用户登录所需的信息,如用户名、密码等。
|
||||
* @param {Ref<boolean>} [loading] - 可选的加载状态引用,用于在请求过程中控制加载状态的显示。
|
||||
*
|
||||
* @returns {Promise<string>} - 返回一个Promise,解析为登录结果。Result<string>包含登录成功后的令牌或错误信息。
|
||||
*/
|
||||
const login: (
|
||||
request: LoginRequest,
|
||||
loading?: Ref<boolean>
|
||||
) => Promise<any> = (request, loading) => {
|
||||
return post('/oauth/anyTenant/login', { ...request }, undefined, loading)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 执行用户登出操作。
|
||||
* 该函数通过发送POST请求到指定的登出接口,以结束当前用户的会话。
|
||||
*
|
||||
* @returns {Promise<any>} 返回一个Promise对象,该对象解析为登出操作的结果。
|
||||
* Result<any>表示登出操作返回的结果,具体类型取决于后端接口的返回结构。
|
||||
*/
|
||||
const logout: () => Promise<any> = () => {
|
||||
return post('/oauth/anyUser/logout',)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取用户信息
|
||||
*
|
||||
* 该函数通过调用 `/oauth/anyone/getUserInfoById` 接口获取当前用户的信息。
|
||||
*
|
||||
* @param {Ref<boolean>} [loading] - 可选参数,用于控制加载状态的引用。如果提供,函数会在请求开始时将 `loading` 设置为 `true`,请求结束后设置为 `false`。
|
||||
* @returns {Promise<any>} - 返回一个 Promise,解析为包含用户信息的结果对象。结果对象的类型为 `Result<any>`,其中 `any` 表示用户信息的具体数据结构。
|
||||
*/
|
||||
const getUserInfo: (
|
||||
loading?: Ref<boolean>
|
||||
) => Promise<any> = ( loading) => {
|
||||
return get('/oauth/anyone/getUserInfoById', undefined, loading)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取租户信息
|
||||
*
|
||||
* 该函数通过调用 `/oauth/anyone/findCompanyDept` 接口获取当前租户的信息。
|
||||
*
|
||||
* @returns {Promise<any>} - 返回一个 Promise,解析为包含用户信息的结果对象。结果对象的类型为 `Result<any>`,其中 `any` 表示用户信息的具体数据结构。
|
||||
* @param tenantId
|
||||
*/
|
||||
const findCompanyDept: (
|
||||
tenantId?: string
|
||||
) => Promise<any> = ( tenantId) => {
|
||||
return get('/oauth/anyone/findCompanyDept', { tenantId })
|
||||
}
|
||||
|
||||
|
||||
type uploadData = {
|
||||
/** 业务类型 */
|
||||
bizType: string
|
||||
/** 桶 */
|
||||
bucket?: string
|
||||
/** 存储类型 */
|
||||
storageType?: string
|
||||
/** 附件 */
|
||||
file: any
|
||||
}
|
||||
type FileResultVO = {
|
||||
/** 业务类型 */
|
||||
bizType?: string
|
||||
/** 文件类型-枚举 */
|
||||
fileType?: 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOC' | 'OTHER'
|
||||
/** 文件存储类型 */
|
||||
storageType?: 'LOCAL' | 'FAST_DFS' | 'MIN_IO' | 'ALI_OSS' | 'QINIU_OSS' | 'HUAWEI_OSS'
|
||||
/** 桶 */
|
||||
bucket?: string
|
||||
/** 文件相对地址 */
|
||||
path?: string
|
||||
/** 文件访问地址 */
|
||||
url?: string
|
||||
/** 唯一文件名 */
|
||||
uniqueFileName?: string
|
||||
/** 文件md5 */
|
||||
fileMd5?: string
|
||||
/** 原始文件名 */
|
||||
originalFileName?: string
|
||||
/** 文件类型 */
|
||||
contentType?: string
|
||||
/** 后缀 */
|
||||
suffix?: string
|
||||
/** 大小 */
|
||||
size?: number
|
||||
/** 主键 */
|
||||
id?: number
|
||||
tenantId?: number
|
||||
}
|
||||
|
||||
type RFileResultVO = {
|
||||
/** 响应编码:0/200-请求处理成功 */
|
||||
code?: number
|
||||
data?: FileResultVO
|
||||
/** 提示消息 */
|
||||
msg?: string
|
||||
/** 请求路径 */
|
||||
path?: string
|
||||
/** 附加数据 */
|
||||
extra?: Record<string, any>
|
||||
/** 响应时间戳 */
|
||||
timestamp?: number
|
||||
/** 异常消息 */
|
||||
errorMsg?: string
|
||||
isSuccess?: boolean
|
||||
}
|
||||
|
||||
|
||||
/** 上传文件 上传文件 POST /anyone/file/upload */
|
||||
export async function upload(
|
||||
data: uploadData,
|
||||
options?: { [key: string]: any }
|
||||
) {
|
||||
return request<RFileResultVO>(`/base/anyone/file/upload`, {
|
||||
method: 'POST',
|
||||
data,
|
||||
...(options || {})
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export default {
|
||||
login,
|
||||
logout,
|
||||
getUserInfo,
|
||||
findCompanyDept,
|
||||
}
|
||||
88
finyx_data_frontend/src/api/document.ts
Executable file
@ -0,0 +1,88 @@
|
||||
import { post, get, del, download } from '@/request/http'
|
||||
|
||||
/**
|
||||
* 获取智能文书列表
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const getDocumentList: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicTask/page`, params)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 删除智能文书
|
||||
* @returns
|
||||
* @param document_ids
|
||||
*/
|
||||
export const deleteDocuments: (document_ids: any) => Promise<any> = (document_ids) => {
|
||||
return del(`/finyx/fPolicTask`, undefined, document_ids)
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 获取业务文书模板树
|
||||
* @returns
|
||||
*/
|
||||
export const getTemplateTree: () => Promise<any> = () => {
|
||||
return post(`/finyx/fPolicFileConfig/getTree`)
|
||||
}
|
||||
|
||||
/**
|
||||
* 选择文书模板新增
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const addDocument: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicTask`, params)
|
||||
}
|
||||
|
||||
/**
|
||||
* 输入基本信息获取动态表单
|
||||
* @returns
|
||||
* @param params
|
||||
* "fieldType": 0,
|
||||
*/
|
||||
export const getBasicInfoForm: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicField/queryTask`, params)
|
||||
}
|
||||
|
||||
/**
|
||||
* 解析输入基本信息字段
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const parseBasicInfo: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicTask/paras`, params)
|
||||
}
|
||||
|
||||
/**
|
||||
* 输入信息汇总获取动态表单
|
||||
* @returns
|
||||
* @param params
|
||||
* "fieldType": 1,
|
||||
*/
|
||||
export const getSummaryInfoForm: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicField/queryTask`, params)
|
||||
}
|
||||
|
||||
/**
|
||||
* 确认输出文档
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const confirmOutputDocument: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicTask/getDocument`, params)
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表点击文件链接/查看按钮跳转文书详情
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const getDocumentDetail: (params: any) => Promise<any> = (params) => {
|
||||
return post(`/finyx/fPolicFile/query`, params)
|
||||
}
|
||||
|
||||
|
||||
|
||||
15
finyx_data_frontend/src/api/finyxbot.ts
Executable file
@ -0,0 +1,15 @@
|
||||
import { fetchWithAbort } from '@/request/fetchWithAbort'
|
||||
|
||||
/**
|
||||
*
|
||||
* AI助手对话, SSE
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const aiChat: (data: any) => Promise<any> = (data) => {
|
||||
return fetchWithAbort(`/finyx-bot/api/v1/chat/stream`, { ...data })
|
||||
}
|
||||
|
||||
export default {
|
||||
aiChat
|
||||
}
|
||||
147
finyx_data_frontend/src/api/review.ts
Executable file
@ -0,0 +1,147 @@
|
||||
import { post, get, del, download } from '@/request/reviewHttp'
|
||||
|
||||
interface PageParams{
|
||||
page?: number;
|
||||
page_size?: number;
|
||||
keyword?: number|string;
|
||||
include_default?: boolean;
|
||||
status?: number;
|
||||
}
|
||||
|
||||
// 2.1 获取审核方案列表
|
||||
export const reviewPlanPageList:(params: PageParams) => Promise<any> = (params) => {
|
||||
return get(`/v1/review_plan`, params)
|
||||
}
|
||||
|
||||
// 2.2 新建审核方案
|
||||
export const saveReviewPlan: (data: any) => Promise<any> = (data) => {
|
||||
return post(`/v1/review_plan`, data)
|
||||
}
|
||||
|
||||
// 2.3 编辑审核方案
|
||||
export const updateReviewPlan: (id: any, data: any) => Promise<any> = (id, data) => {
|
||||
return post(`/v1/review_plan/${id}`, data)
|
||||
}
|
||||
|
||||
// 2.4 删除审核方案
|
||||
export const deleteReviewPlan: (ids: any) => Promise<any> = (ids) => {
|
||||
return del(`/v1/review_plan`, undefined, { review_plan_ids: ids })
|
||||
}
|
||||
|
||||
// 2.8 规则清单---待后端提供接口
|
||||
export const reviewRuleList:(params: PageParams) => Promise<any> = (params) => {
|
||||
return get(`/v1/review_plan`, params)
|
||||
}
|
||||
|
||||
// 2.8 预览审核方案
|
||||
export const reviewPlanList:(id:any, params: PageParams) => Promise<any> = (id, params) => {
|
||||
return get(`/v1/review_plan/${id}`, params)
|
||||
}
|
||||
|
||||
// 2.9 删除规则
|
||||
export const deleteReviewRule: (ids: any) => Promise<any> = (ids) => {
|
||||
return del(`/v1/review_rule`, undefined, { review_rule_ids: ids })
|
||||
}
|
||||
|
||||
// 2.5 新建规则
|
||||
export const saveReviewRule: (data: any) => Promise<any> = (data) => {
|
||||
return post(`/v1/review_rule`, data)
|
||||
}
|
||||
|
||||
// 2.5.5 规则详情
|
||||
export const getReviewRule: (rule_id: string) => Promise<any> = (rule_id) => {
|
||||
return get(`/v1/review_rule/${rule_id}`)
|
||||
}
|
||||
// 2.6 编辑规则
|
||||
export const editReviewRule: (rule_id: string, data: any) => Promise<any> = (rule_id, data) => {
|
||||
return post(`/v1/review_rule/${rule_id}`, data)
|
||||
}
|
||||
|
||||
// 2.7 规则测试
|
||||
export const testRule: (rule: string, content: string) => Promise<any> = (rule, content) => {
|
||||
return post(`/v1/review_rule/validate`, { content, rule })
|
||||
}
|
||||
|
||||
// 2.10 上传文档
|
||||
export const uploadDocument: ( data: any) => Promise<any> = ( data) => {
|
||||
return post(`/v1/document`, data)
|
||||
}
|
||||
|
||||
// 2.11 获取文档
|
||||
export const getDocument: ( document_id: string) => Promise<any> = ( document_id) => {
|
||||
return get(`/v1/document/${document_id}`)
|
||||
}
|
||||
|
||||
// 2.12 编辑文档(保存)
|
||||
export const saveDocumentApi: ( document_id: string, content: any) => Promise<any> = ( document_id, content) => {
|
||||
return post(`/v1/document/${document_id}`, { content })
|
||||
}
|
||||
|
||||
|
||||
// 2.15 获取审核状态
|
||||
export const getReviewStatus: ( document_id: string) => Promise<any> = ( document_id) => {
|
||||
return get(`/v1/document/${document_id}/status`)
|
||||
}
|
||||
|
||||
// 2.16 获取审核结果
|
||||
export const getReviewResult: ( document_id: string) => Promise<any> = ( document_id) => {
|
||||
return get(`/v1/document/${document_id}/result`)
|
||||
}
|
||||
|
||||
// 2.15 审核操作
|
||||
export const reviewDocument: (document_id: string, action: string) => Promise<any> = (document_id, action) => {
|
||||
return post(`/v1/document/${document_id}/review`, { action })
|
||||
}
|
||||
|
||||
// 2.13 文档列表
|
||||
export const documentPageList:(params: PageParams) => Promise<any> = (params) => {
|
||||
return get(`/v1/document`, params)
|
||||
}
|
||||
|
||||
// 2.14 删除文档
|
||||
export const deleteDocument: (ids: any) => Promise<any> = (ids) => {
|
||||
return del(`/v1/document`, undefined, { document_ids: ids })
|
||||
}
|
||||
|
||||
// 2.19 设置文档审核方案
|
||||
export const setReviewPlan: ( document_id: string, data: any) => Promise<any> = ( document_id, data) => {
|
||||
return post(`/v1/document/${document_id}/review_plan`, data)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 2.20 审核规则列表
|
||||
export const reviewRulePageList:(params: PageParams) => Promise<any> = (params) => {
|
||||
return get(`/v1/review_rule`, params)
|
||||
}
|
||||
|
||||
// 2.21 切换审核规则状态
|
||||
export const reviewRuleCheckStatus: ( id: any, status: any) => Promise<any> = ( id, status) => {
|
||||
return post(`/v1/review_rule/${id}/status`, { status })
|
||||
}
|
||||
// 2.17 获取审核方案结果
|
||||
export const getReviewResultPlan: ( document_id: string, review_plan_id: string) => Promise<any> = ( document_id, review_plan_id) => {
|
||||
return get(`/v1/document/${document_id}/result/${review_plan_id}`)
|
||||
}
|
||||
// 2.24 审核结果修订
|
||||
export const revisionOfAuditResults: ( document_id: string, data: any) => Promise<any> = ( document_id, data) => {
|
||||
return post(`/v1/document/${document_id}/result`, data)
|
||||
}
|
||||
|
||||
/**
|
||||
* 2.15 ai润色
|
||||
* @returns
|
||||
*/
|
||||
export const downloadDocument: (document_id: string,) => Promise<any> = (document_id) => {
|
||||
return download(`/v1/document/${document_id}/download`, 'get')
|
||||
}
|
||||
|
||||
/**
|
||||
* 规则抽取预留接口
|
||||
* @param data
|
||||
* @returns
|
||||
*/
|
||||
export const saveReference: (data: any) => Promise<any> = (data) => {
|
||||
console.log(data)
|
||||
return Promise.resolve(true);
|
||||
}
|
||||
229
finyx_data_frontend/src/api/writing.ts
Executable file
@ -0,0 +1,229 @@
|
||||
import { post, get, del, download } from '@/request/writingHttp'
|
||||
import { fetchWithAbort } from '@/request/fetchWithAbort';
|
||||
import useStore from '@/stores'
|
||||
|
||||
const { docs } = useStore();
|
||||
|
||||
|
||||
/**
|
||||
* 2.1 获取模版
|
||||
* @returns
|
||||
* @param type 模版类型, 0 - 法定类, 1 - 事物类, 2 - 自定义
|
||||
*/
|
||||
export const getTemplate: (type: number) => Promise<any> = (type) => {
|
||||
return get(`/v1/template?official_document_type=${type}`, undefined)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.2 获取模版字段数据
|
||||
* @returns
|
||||
* @param template_id
|
||||
*/
|
||||
export const getTemplateById: (template_id: number) => Promise<any> = (template_id) => {
|
||||
return get(`/v1/template/${template_id}`, undefined)
|
||||
}
|
||||
|
||||
|
||||
interface CreateDocumentData {
|
||||
template_type: number
|
||||
template_id: string
|
||||
}
|
||||
|
||||
/**
|
||||
* 2.3 创建新文档
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const createDocument: (data: {
|
||||
template_type: 0 | 1
|
||||
template_id: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
|
||||
}) => Promise<any> = (data) => {
|
||||
return post(`/v1/document`, data)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.4 获取文档基本信息
|
||||
* @returns
|
||||
*/
|
||||
export const getBasicInfo: () => Promise<any> = () => {
|
||||
return get(`/v1/document/${docs.document_id}/basic_info`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.5 提交基本信息字段数据
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const saveBasicInfo: (data: any) => Promise<any> = (data) => {
|
||||
return post(`/v1/document/${docs.document_id}/basic_info`, data)
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 2.6 获取大纲
|
||||
* @returns
|
||||
*/
|
||||
export const getOutline: () => Promise<any> = () => {
|
||||
return get(`/v1/document/${docs.document_id}/outline`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.7 编辑大纲
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const saveOutline: ( data: any) => Promise<any> = (data) => {
|
||||
return post(`/v1/document/${docs.document_id}/outline/${docs.outlineId}`, data)
|
||||
}
|
||||
|
||||
interface SaveReferenceData {
|
||||
file: File,
|
||||
file_name: string
|
||||
file_type: 0 | 1 // 0 参考素材 1 数据参考
|
||||
}
|
||||
|
||||
/**
|
||||
* 2.8 提交参考文献
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const saveReference: (formData: FormData) => Promise<any> = (data) => {
|
||||
return post(`/v1/document/${docs.document_id}/reference`, data)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.9 查看参考文献
|
||||
* @returns
|
||||
* @param reference_id
|
||||
*/
|
||||
export const delReference: (reference_id: string) => Promise<any> = (reference_id) => {
|
||||
return del(`/v1/document/reference/${reference_id}`)
|
||||
}
|
||||
|
||||
interface actionDocumentData {
|
||||
// 0 - start 开始生成, 1- rewrite,重写, 2 - delete 删除, 3- approve 采纳
|
||||
action: 0 | 1 | 2 | 3,
|
||||
}
|
||||
|
||||
/**
|
||||
* 2.10 文档操作
|
||||
* 生成公文正文, SSE
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const actionDocument: (data: actionDocumentData) => Promise<any> = (data) => {
|
||||
return fetchWithAbort(`/ai-doc/api/v1/document/${docs.document_id}/content`, { ...data, model_id: docs.modelId })
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.11 获取文档列表
|
||||
* @returns
|
||||
* @param params
|
||||
*/
|
||||
export const getDocumentList: (params: any) => Promise<any> = (params) => {
|
||||
return get(`/v1/document`, params)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.12 删除文档
|
||||
* @returns
|
||||
* @param document_ids
|
||||
*/
|
||||
export const deleteDocuments: (document_ids: any) => Promise<any> = (document_ids) => {
|
||||
return del(`/v1/document`, undefined, { document_ids })
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 2.13 获取文档
|
||||
* @returns
|
||||
* @param document_id
|
||||
*/
|
||||
export const getDocumentItem: (document_id: string) => Promise<any> = (document_id) => {
|
||||
return get(`/v1/document/${document_id}`, undefined)
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 2.14 编辑文档
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const saveDocumentItem: (data: any) => Promise<any> = (data) => {
|
||||
return post(`/v1/document/${docs.document_id}`, data)
|
||||
}
|
||||
|
||||
interface CreatePolishData {
|
||||
content: string
|
||||
action: 0 | 1 | 2 | 3// int, 0 - polish 润色,1 - extend 扩写
|
||||
preferences?: {
|
||||
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 2.15 ai润色
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const createPolish: (data: CreatePolishData) => Promise<any> = (data) => {
|
||||
return fetchWithAbort(`/ai-doc/api/v1/document/polish`, { ...data, model_id: docs.modelId })
|
||||
}
|
||||
|
||||
/**
|
||||
* 2.15 ai润色
|
||||
* @returns
|
||||
*/
|
||||
export const downloadDocument: () => Promise<any> = () => {
|
||||
return download(`/v1/document/${docs.document_id}/download`, 'get')
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* AI助手对话, SSE
|
||||
* @returns
|
||||
* @param data
|
||||
*/
|
||||
export const aiChat: (data: any) => Promise<any> = (data) => {
|
||||
return fetchWithAbort(`/ai-doc/api/v1/chat`, { ...data, model_id: docs.modelId })
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* 获取所有模型列表
|
||||
* @returns
|
||||
*/
|
||||
export const getAllModel: () => Promise<any> = () => {
|
||||
return get(`/v1/llm`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* 根据UUID获取特定LLM模型的配置详情
|
||||
* @returns
|
||||
*/
|
||||
export const getModel: (llm_uuid: string) => Promise<any> = (llm_uuid) => {
|
||||
return get(`/v1/llm/${llm_uuid}`)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* 设置ai相关调用llm信息
|
||||
* @returns
|
||||
*/
|
||||
export const setModel: (id: string) => Promise<any> = (id) => {
|
||||
return post(`/v1/llm`, { id })
|
||||
}
|
||||
BIN
finyx_data_frontend/src/assets/404.png
Executable file
|
After Width: | Height: | Size: 359 KiB |
BIN
finyx_data_frontend/src/assets/agent/banner.png
Executable file
|
After Width: | Height: | Size: 636 KiB |
5
finyx_data_frontend/src/assets/agent/chat/buxihuan.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="buxihuan">
|
||||
<path id="Vector" d="M8.13872 13.7547C8.17803 13.3685 8.21562 13.0028 8.31303 12.6712C8.66507 11.4818 9.50586 10.6 10.28 9.89253C10.4799 9.7131 10.7141 9.37131 10.7158 9.00731C10.7277 7.66923 10.7277 6.32944 10.7277 4.99135L10.7294 2.57494C10.7312 1.93068 10.4065 1.43509 9.83739 1.21293C9.50244 1.07622 9.14699 1.00103 8.7864 0.990776M8.13872 13.7547L7.64132 13.7038L7.64307 13.6866C7.68085 13.3152 7.72224 12.9083 7.83331 12.5303L7.83359 12.5293C8.22693 11.2004 9.1583 10.2403 9.94269 9.52345L9.94603 9.5204L9.94604 9.52041C10.005 9.46747 10.0776 9.38164 10.1334 9.27954C10.1893 9.1771 10.2154 9.08227 10.2158 9.00496L10.2158 9.00284C10.2277 7.66737 10.2277 6.32981 10.2277 4.99135V4.991L10.2294 2.57459L10.2294 2.57362C10.2306 2.121 10.0189 1.82054 9.65556 1.6787L9.64842 1.67591L9.64844 1.67586C9.36996 1.56219 9.07495 1.49963 8.77587 1.49068M8.13872 13.7547L7.64129 13.7041C7.58316 14.2719 7.25361 14.5244 6.89463 14.5244C6.73735 14.5244 6.56345 14.4779 6.37177 14.3645M8.13872 13.7547C8.06011 14.5237 7.56111 15.0244 6.89463 15.0244C6.63317 15.0244 6.3717 14.9458 6.11536 14.7937M8.77587 1.49068C8.77719 1.4907 8.77852 1.49072 8.77984 1.49073L8.7864 0.990776M8.77587 1.49068C8.77464 1.49064 8.77342 1.49061 8.77219 1.49057L8.7864 0.990776M8.77587 1.49068C8.12992 1.48224 7.48513 1.48223 6.83653 1.48223H5.86415H5.86283C5.22718 1.48223 4.5884 1.48223 3.95087 1.4754M8.7864 0.990776C8.13531 0.98223 7.48592 0.98223 6.83653 0.98223H5.86415C5.22673 0.98223 4.5893 0.98223 3.95358 0.975395M3.95358 0.975395V1.4754H3.95087M3.95358 0.975395H3.93308C3.35204 0.975395 2.91456 1.24882 2.70265 1.74783L2.62233 1.93239M3.95358 0.975395L3.9482 1.47537C3.94909 1.47538 3.94998 1.47539 3.95087 1.4754M3.95087 1.4754H3.93308C3.53268 1.4754 3.28884 1.64663 3.16288 1.94326L3.16114 1.94735L3.16112 1.94735L3.08126 2.13085L2.62233 1.93239M2.62233 1.93239L3.0808 2.13191L3.07574 2.14361L3.07572 2.14365C2.88866 2.57611 2.71611 2.97793 2.61272 3.40516M2.62233 1.93239L2.61682 1.94515C2.43226 2.37181 2.24181 2.8121 2.12675 3.28756M5.09001 10.2241V10.2275C4.91912 11.1418 4.76361 12.2081 5.0678 13.307C5.25749 13.9991 5.60098 14.4844 6.11536 14.7937M5.09001 10.2241L5.10859 10.2275L5.58176 10.3145C5.58511 10.2963 5.58786 10.2781 5.59001 10.26M5.09001 10.2241H5.59001V10.2275V10.26M5.09001 10.2241C5.12932 10.0104 4.96868 9.81221 4.74994 9.81221H2.52835C2.14555 9.81221 1.59698 9.76436 1.25862 9.35422M5.59001 10.26V10.2738L5.5815 10.3193C5.41188 11.2268 5.27851 12.194 5.54967 13.1736L5.55002 13.1748C5.7123 13.7669 5.98831 14.1334 6.37177 14.3645M5.59001 10.26C5.64851 9.76696 5.26937 9.31221 4.74994 9.31221H2.52835C2.14863 9.31221 1.82332 9.25261 1.64462 9.03642M6.37177 14.3645C6.37135 14.3642 6.37092 14.364 6.3705 14.3637L6.11536 14.7937M6.37177 14.3645C6.37219 14.3647 6.37261 14.365 6.37303 14.3652L6.11536 14.7937M1.64462 9.03642C1.64465 9.03646 1.64468 9.03649 1.64471 9.03652L1.25862 9.35422M1.64462 9.03642C1.52671 8.89305 1.45003 8.66158 1.53742 8.21461L1.53756 8.21388C1.85309 6.58703 2.24041 4.94394 2.61272 3.40516M1.64462 9.03642C1.64452 9.03629 1.64441 9.03616 1.6443 9.03603L1.25862 9.35422M1.25862 9.35422C1.01253 9.05516 0.942467 8.65186 1.04671 8.11867C1.36457 6.47982 1.7542 4.8273 2.12675 3.28756M2.61272 3.40516L2.12675 3.28756M2.61272 3.40516C2.61272 3.40516 2.61272 3.40515 2.61273 3.40514L2.12675 3.28756M12.2017 2.4741L12.2017 2.47294C12.2006 2.01367 12.5774 1.63601 13.0381 1.63601H13.6636C14.1223 1.63601 14.5 2.01369 14.5 2.47239V8.42797C14.5 8.88666 14.1223 9.26434 13.6636 9.26434H13.0381C12.5794 9.26434 12.2017 8.88666 12.2017 8.42797L12.2017 2.4741Z" stroke="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
8
finyx_data_frontend/src/assets/agent/chat/buxihuan_h.svg
Executable file
@ -0,0 +1,8 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="buxihuan_h">
|
||||
<g id="Vector">
|
||||
<path d="M13.8205 1.74881H14.4461C15.1809 1.74881 15.7825 2.35035 15.7825 3.08518V9.04076C15.7825 9.7756 15.1809 10.3771 14.4461 10.3771H13.8205C13.0857 10.3771 12.4842 9.7756 12.4842 9.04076V3.08689C12.4824 2.35035 13.084 1.74881 13.8205 1.74881Z" fill="#3067EF"/>
|
||||
<path d="M4.73605 1.58819H4.71555C4.13451 1.58819 3.69703 1.86162 3.48512 2.36062L3.4048 2.54518L3.39929 2.55794C3.21473 2.9846 3.02428 3.42489 2.90922 3.90035C2.53668 5.44009 2.14704 7.09261 1.82918 8.73147C1.72494 9.26465 1.795 9.66795 2.04109 9.96702C2.37945 10.3772 2.92802 10.425 3.31082 10.425H5.53241C5.75115 10.425 5.91179 10.6232 5.87248 10.8369V10.8403C5.70159 11.7545 5.54608 12.8209 5.85027 13.9197C6.03996 14.6119 6.38345 15.0972 6.89783 15.4065C7.15417 15.5586 7.41564 15.6372 7.6771 15.6372C8.34358 15.6372 8.84258 15.1365 8.92119 14.3675C8.9605 13.9813 8.9981 13.6156 9.0955 13.284C9.44754 12.0946 10.2883 11.2128 11.0625 10.5053C11.2624 10.3259 11.4965 9.9841 11.4982 9.6201C11.5102 8.28202 11.5102 6.94223 11.5102 5.60415L11.5119 3.18774C11.5136 2.54347 11.1889 2.04789 10.6199 1.82573C10.2849 1.68901 9.92946 1.61382 9.56887 1.60357C8.91778 1.59502 8.26839 1.59502 7.619 1.59502H6.64662C6.0092 1.59502 5.37177 1.59502 4.73605 1.58819Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
6
finyx_data_frontend/src/assets/agent/chat/check.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="多选-已选">
|
||||
<rect x="2" y="2" width="14" height="14" rx="7" fill="white"/>
|
||||
<rect x="2" y="2" width="14" height="14" rx="7" stroke="#D9D9D9" stroke-width="4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 338 B |
6
finyx_data_frontend/src/assets/agent/chat/checkbox.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="多选-未选">
|
||||
<rect x="0.5" y="0.5" width="11" height="11" rx="1.5" fill="#F5F5F5"/>
|
||||
<rect x="0.5" y="0.5" width="11" height="11" rx="1.5" stroke="#999999"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 335 B |
6
finyx_data_frontend/src/assets/agent/chat/checkboxed.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="多选-已选">
|
||||
<rect width="12" height="12" rx="2" fill="#0082FF"/>
|
||||
<path id="Vector 484" d="M2.57129 5.57122L5.14272 8.14265L9.42843 3.85693" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 383 B |
6
finyx_data_frontend/src/assets/agent/chat/checked.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="多选-已选">
|
||||
<rect width="18" height="18" rx="9" fill="#3067EF"/>
|
||||
<path id="Vector 484" d="M5 9L8 12L13 7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 368 B |
13
finyx_data_frontend/src/assets/agent/chat/file.svg
Executable file
@ -0,0 +1,13 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="JD文件" clip-path="url(#clip0_200_3015)">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M17.1775 6.48592C17.1775 6.46828 17.174 6.45417 17.1705 6.44006L17.1599 6.39772C17.1599 6.39772 17.1599 6.3942 17.1564 6.3942C17.1528 6.38361 17.1493 6.3695 17.1423 6.35892C17.1423 6.35539 17.1387 6.35186 17.1387 6.34833C17.1352 6.33775 17.1281 6.32716 17.1246 6.32011C17.1211 6.31658 17.1211 6.31305 17.1176 6.306C17.114 6.29894 17.107 6.28836 17.1034 6.2813C17.0999 6.27777 17.0964 6.27072 17.0929 6.26719C17.0893 6.26013 17.0823 6.25308 17.0752 6.24602C17.0717 6.24249 17.0682 6.23544 17.0611 6.23191C17.0541 6.22485 17.0505 6.2178 17.0435 6.21427L17.0364 6.20721L12.7817 2.2806C12.7782 2.27707 12.7746 2.27707 12.7711 2.27354C12.7676 2.27001 12.7605 2.26296 12.7535 2.25943C12.7464 2.2559 12.7429 2.25237 12.7358 2.24532C12.7288 2.24179 12.7252 2.23826 12.7182 2.23473C12.7111 2.2312 12.7076 2.22768 12.7006 2.22415L12.6794 2.21356C12.6723 2.21004 12.6688 2.20651 12.6617 2.20651L12.6406 2.19592C12.6335 2.1924 12.63 2.1924 12.6229 2.18887C12.6159 2.18534 12.6088 2.18181 12.5982 2.18181C12.5912 2.18181 12.5877 2.17828 12.5806 2.17828C12.5735 2.17476 12.5665 2.17476 12.5594 2.17123C12.5524 2.17123 12.5453 2.1677 12.5383 2.1677C12.5312 2.1677 12.5242 2.16417 12.5206 2.16417C12.5065 2.16417 12.4924 2.16064 12.4783 2.16064H5.186C3.88065 2.16064 2.82227 3.22256 2.82227 4.52438V17.472C2.82227 18.7773 3.88418 19.8357 5.186 19.8357H14.8173C16.1227 19.8357 17.1811 18.7738 17.1811 17.472V6.53179C17.1811 6.51767 17.1775 6.50003 17.1775 6.48592ZM12.9228 3.61064L15.6111 6.09079H14.4081C13.5896 6.09079 12.9263 5.42401 12.9263 4.60905V3.61064H12.9228ZM14.8138 18.9573H5.186C4.36751 18.9573 3.70426 18.2905 3.70426 17.4755V4.5279C3.70426 3.70942 4.37104 3.04616 5.186 3.04616H12.0408V4.60905C12.0408 5.91439 13.1027 6.97278 14.4046 6.97278H16.2991V17.472C16.2991 18.2905 15.6323 18.9573 14.8138 18.9573Z" fill="#333333"/>
|
||||
<path id="Vector_2" d="M13.7595 15.7047H6.20965C5.99092 15.7047 5.74043 15.8387 5.74043 16.1033C5.74043 16.3256 5.93447 16.502 6.20965 16.502H13.8759C14.1864 16.502 14.2322 16.3538 14.2322 16.1033C14.2287 15.8599 14.1299 15.7047 13.7595 15.7047ZM13.7595 12.9529H7.90307C7.68434 12.9529 7.43385 13.0869 7.43385 13.3515C7.43385 13.5738 7.62789 13.7502 7.90307 13.7502H13.8759C14.1864 13.7502 14.2322 13.602 14.2322 13.3515C14.2287 13.1081 14.1299 12.9529 13.7595 12.9529ZM13.7595 10.3422H10.7254C10.5067 10.3422 10.2562 10.4762 10.2562 10.7408C10.2562 10.9631 10.4503 11.1395 10.7254 11.1395H13.8759C14.1864 11.1395 14.2322 10.9913 14.2322 10.7408C14.2287 10.4974 14.1299 10.3422 13.7595 10.3422ZM6.60478 9.58719H8.49224C8.9544 9.58719 9.36718 9.32612 9.56827 8.90983C9.76584 8.50058 9.71644 8.02431 9.43421 7.66798C9.23311 7.41397 8.98616 7.20582 8.70745 7.05412C8.93676 6.78599 9.07436 6.44025 9.07436 6.06276C9.07436 5.21958 8.38993 4.53516 7.54675 4.53516C6.70357 4.53516 6.01914 5.21958 6.01914 6.06276C6.01914 6.44025 6.15673 6.78952 6.38605 7.05412C6.12145 7.20229 5.88155 7.39633 5.68399 7.63976C5.38764 7.99961 5.32766 8.48647 5.52876 8.9063C5.72985 9.32612 6.14262 9.58719 6.60478 9.58719ZM7.55028 5.38187C7.92424 5.38187 8.23117 5.6888 8.23117 6.06276C8.23117 6.43673 7.92424 6.74366 7.55028 6.74366C7.17631 6.74366 6.86938 6.43673 6.86938 6.06276C6.86938 5.6888 7.17279 5.38187 7.55028 5.38187ZM6.34019 8.17954C6.63654 7.81616 7.07753 7.60801 7.54675 7.60801C8.02655 7.60801 8.47107 7.82321 8.77095 8.20071C8.88385 8.34535 8.83445 8.49 8.80623 8.54645C8.78506 8.59231 8.69334 8.74401 8.49224 8.74401H6.60478C6.41075 8.74401 6.32255 8.60642 6.29432 8.54997C6.27316 8.50058 6.21318 8.33477 6.34019 8.17954Z" fill="#333333"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_200_3015">
|
||||
<rect width="20" height="20" fill="white" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
6
finyx_data_frontend/src/assets/agent/chat/jd.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="JD文件">
|
||||
<path id="Vector" d="M15.5566 1.75586H4.5332C3.32422 1.75586 2.34766 2.73438 2.34766 3.94141V13.7793C1.74414 13.7793 1.25586 14.2695 1.25586 14.8711V17.0566C1.25586 18.2656 2.23438 19.2422 3.44141 19.2422H15.5566C16.7656 19.2422 17.7422 18.2637 17.7422 17.0566V3.94141C17.7422 2.73438 16.7637 1.75586 15.5566 1.75586ZM4.5332 18.1504H3.43945C2.83594 18.1504 2.34766 17.6602 2.34766 17.0586V14.8711H13.3672V16.5098C13.3379 17.1426 13.4473 17.7031 13.6875 18.1484L4.5332 18.1504ZM16.6504 17.0586C16.6504 17.6621 16.1602 18.1504 15.5586 18.1504H15.5566C14.7812 18.0977 14.416 17.5508 14.4629 16.5117V14.873C14.4629 14.2695 13.9727 13.7812 13.3711 13.7812H3.43945V3.94141C3.43945 3.33789 3.92969 2.84961 4.5332 2.84961H15.5566C16.1602 2.84961 16.6484 3.33984 16.6484 3.94141L16.6504 17.0586Z" fill="#333333"/>
|
||||
<path id="Vector_2" d="M14.4629 6.12891C14.7656 6.12891 15.0098 6.37305 15.0098 6.67578C15.0098 6.97852 14.7656 7.22266 14.4629 7.22266H7.8125C7.50977 7.22266 7.26562 6.97852 7.26562 6.67578C7.26562 6.37305 7.50977 6.12891 7.8125 6.12891H14.4629ZM5.62695 6.16016C5.92969 6.16016 6.17383 6.4043 6.17383 6.70703C6.17383 7.00977 5.92969 7.25391 5.62695 7.25391C5.32422 7.25391 5.08008 7.00977 5.08008 6.70703C5.08203 6.4043 5.32422 6.16016 5.62695 6.16016ZM11.1816 10.0098C11.4844 10.0098 11.7285 10.2539 11.7285 10.5566C11.7285 10.8594 11.4844 11.1035 11.1816 11.1035H7.8125C7.50977 11.1035 7.26562 10.8594 7.26562 10.5566C7.26562 10.2539 7.50977 10.0098 7.8125 10.0098H11.1816ZM5.62695 10.043C5.92969 10.043 6.17383 10.2871 6.17383 10.5898C6.17383 10.8926 5.92969 11.1367 5.62695 11.1367C5.32422 11.1367 5.08008 10.8926 5.08008 10.5898C5.08203 10.2891 5.32422 10.043 5.62695 10.043Z" fill="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
6
finyx_data_frontend/src/assets/agent/chat/kejian.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector 483 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2C1.5 1.72386 1.72386 1.5 2 1.5H11C11.2761 1.5 11.5 1.72386 11.5 2V6.5C11.5 6.77614 11.2761 7 11 7C10.7239 7 10.5 6.77614 10.5 6.5V2.5H2.5V10.5H5.375C5.65114 10.5 5.875 10.7239 5.875 11C5.875 11.2761 5.65114 11.5 5.375 11.5H2C1.72386 11.5 1.5 11.2761 1.5 11V2Z" fill="#8C8C8C"/>
|
||||
<path id="Vector" d="M13.6737 9.29346L6.61548 6.53516L8.1928 13.6737L9.94212 11.0537L12.3022 13.3484L12.9899 12.6798L10.6912 10.4449L13.6737 9.29346Z" fill="#8C8C8C"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 649 B |
7
finyx_data_frontend/src/assets/agent/chat/loading-s.svg
Executable file
@ -0,0 +1,7 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="loading-s">
|
||||
<g clip-path="url(#paint0_angular_200_4073_clip_path)" data-figma-skip-parse="true"><g transform="matrix(0.0032 -0.0096 0.0096 0.0032 9.6 10.2333)"><foreignObject x="-1295.83" y="-1295.83" width="2591.67" height="2591.67"><div xmlns="http://www.w3.org/1999/xhtml" style="background:conic-gradient(from 90deg,rgba(48, 103, 239, 0.9397) 0deg,rgba(48, 103, 239, 0) 67.2145deg,rgba(48, 103, 239, 1) 355.688deg,rgba(48, 103, 239, 0.9397) 360deg);height:100%;width:100%;opacity:1"></div></foreignObject></g></g><path id="Ellipse 15" d="M19 10.5C19 9.94772 18.5523 9.5 18 9.5C17.4477 9.5 17 9.94772 17 10.5H19ZM10 3.5C10.5523 3.5 11 3.05228 11 2.5C11 1.94772 10.5523 1.5 10 1.5V3.5ZM17 10.5C17 14.366 13.866 17.5 10 17.5V19.5C14.9706 19.5 19 15.4706 19 10.5H17ZM10 17.5C6.13401 17.5 3 14.366 3 10.5H1C1 15.4706 5.02944 19.5 10 19.5V17.5ZM3 10.5C3 6.63401 6.13401 3.5 10 3.5V1.5C5.02944 1.5 1 5.52944 1 10.5H3Z" data-figma-gradient-fill="{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":0.18823529779911041,"g":0.40392157435417175,"b":0.93725490570068359,"a":0.0},"position":0.18670707941055298},{"color":{"r":0.18823529779911041,"g":0.40392157435417175,"b":0.93725490570068359,"a":1.0},"position":0.98802274465560913}],"stopsVar":[{"color":{"r":0.18823529779911041,"g":0.40392157435417175,"b":0.93725490570068359,"a":0.0},"position":0.18670707941055298},{"color":{"r":0.18823529779911041,"g":0.40392157435417175,"b":0.93725490570068359,"a":1.0},"position":0.98802274465560913}],"transform":{"m00":6.4000000953674316,"m01":19.200000762939453,"m02":-3.2000007629394531,"m10":-19.200000762939453,"m11":6.4000000953674316,"m12":16.633335113525391},"opacity":1.0,"blendMode":"NORMAL","visible":true}"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="paint0_angular_200_4073_clip_path"><path id="Ellipse 15" d="M19 10.5C19 9.94772 18.5523 9.5 18 9.5C17.4477 9.5 17 9.94772 17 10.5H19ZM10 3.5C10.5523 3.5 11 3.05228 11 2.5C11 1.94772 10.5523 1.5 10 1.5V3.5ZM17 10.5C17 14.366 13.866 17.5 10 17.5V19.5C14.9706 19.5 19 15.4706 19 10.5H17ZM10 17.5C6.13401 17.5 3 14.366 3 10.5H1C1 15.4706 5.02944 19.5 10 19.5V17.5ZM3 10.5C3 6.63401 6.13401 3.5 10 3.5V1.5C5.02944 1.5 1 5.52944 1 10.5H3Z"/></clipPath></defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
17
finyx_data_frontend/src/assets/agent/chat/loading.svg
Executable file
@ -0,0 +1,17 @@
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="loading" clip-path="url(#clip0_60_6856)">
|
||||
<path id="Vector" d="M12.0759 3.96374C12.0759 4.18897 12.1654 4.40498 12.3247 4.56424C12.4839 4.7235 12.6999 4.81298 12.9252 4.81298C13.1504 4.81298 13.3664 4.7235 13.5257 4.56424C13.6849 4.40498 13.7744 4.18897 13.7744 3.96374C13.7744 3.73851 13.6849 3.5225 13.5257 3.36324C13.3664 3.20397 13.1504 3.1145 12.9252 3.1145C12.6999 3.1145 12.4839 3.20397 12.3247 3.36324C12.1654 3.5225 12.0759 3.73851 12.0759 3.96374Z" fill="#3067EF"/>
|
||||
<path id="Vector_2" d="M13.6533 8.55324C13.6533 8.69091 13.6804 8.82723 13.7331 8.95442C13.7857 9.08162 13.863 9.19719 13.9603 9.29454C14.0576 9.39189 14.1732 9.46912 14.3004 9.5218C14.4276 9.57449 14.5639 9.60161 14.7016 9.60161C14.8392 9.60161 14.9755 9.57449 15.1027 9.5218C15.2299 9.46912 15.3455 9.39189 15.4428 9.29454C15.5402 9.19719 15.6174 9.08162 15.67 8.95442C15.7227 8.82723 15.7498 8.69091 15.7498 8.55324C15.7498 8.41558 15.7227 8.27926 15.67 8.15206C15.6174 8.02487 15.5402 7.9093 15.4428 7.81195C15.3455 7.7146 15.2299 7.63737 15.1027 7.58469C14.9755 7.532 14.8392 7.50488 14.7016 7.50488C14.5639 7.50488 14.4276 7.532 14.3004 7.58469C14.1732 7.63737 14.0576 7.7146 13.9603 7.81195C13.863 7.9093 13.7857 8.02487 13.7331 8.15206C13.6804 8.27926 13.6533 8.41558 13.6533 8.55324Z" fill="#3067EF"/>
|
||||
<path id="Vector_3" d="M11.731 13.1656C11.731 13.4929 11.861 13.8068 12.0924 14.0382C12.3238 14.2696 12.6377 14.3996 12.9649 14.3996C13.2922 14.3996 13.6061 14.2696 13.8375 14.0382C14.0689 13.8068 14.1989 13.4929 14.1989 13.1656C14.1989 12.8383 14.0689 12.5245 13.8375 12.2931C13.6061 12.0616 13.2922 11.9316 12.9649 11.9316C12.6377 11.9316 12.3238 12.0616 12.0924 12.2931C11.861 12.5245 11.731 12.8383 11.731 13.1656Z" fill="#3067EF"/>
|
||||
<path id="Vector_4" d="M6.92725 15.0099C6.92723 15.1977 6.96419 15.3836 7.03602 15.557C7.10785 15.7305 7.21314 15.8881 7.34588 16.0208C7.47862 16.1536 7.63621 16.2589 7.80965 16.3308C7.98309 16.4026 8.16899 16.4396 8.35672 16.4396C8.54446 16.4396 8.73035 16.4026 8.9038 16.3308C9.07724 16.2589 9.23483 16.1536 9.36757 16.0208C9.50031 15.8881 9.6056 15.7305 9.67743 15.557C9.74926 15.3836 9.78622 15.1977 9.7862 15.0099C9.78622 14.8222 9.74926 14.6363 9.67743 14.4629C9.6056 14.2894 9.50031 14.1318 9.36757 13.9991C9.23483 13.8663 9.07724 13.761 8.9038 13.6891C8.73035 13.6173 8.54446 13.5803 8.35672 13.5803C8.16899 13.5803 7.98309 13.6173 7.80965 13.6891C7.63621 13.761 7.47862 13.8663 7.34588 13.9991C7.21314 14.1318 7.10785 14.2894 7.03602 14.4629C6.96419 14.6363 6.92723 14.8222 6.92725 15.0099Z" fill="#3067EF"/>
|
||||
<path id="Vector_5" d="M2.2168 13.093C2.2168 13.3021 2.25798 13.5091 2.338 13.7023C2.41801 13.8955 2.5353 14.071 2.68315 14.2188C2.831 14.3667 3.00653 14.484 3.1997 14.564C3.39288 14.644 3.59993 14.6852 3.80902 14.6852C4.01812 14.6852 4.22516 14.644 4.41834 14.564C4.61152 14.484 4.78704 14.3667 4.9349 14.2188C5.08275 14.071 5.20003 13.8955 5.28005 13.7023C5.36006 13.5091 5.40125 13.3021 5.40125 13.093C5.40125 12.6707 5.2335 12.2657 4.9349 11.9671C4.63629 11.6685 4.23131 11.5007 3.80902 11.5007C3.38674 11.5007 2.98175 11.6685 2.68315 11.9671C2.38455 12.2657 2.2168 12.6707 2.2168 13.093Z" fill="#3067EF"/>
|
||||
<path id="Vector_6" d="M6.69946 2.18547C6.69946 2.63242 6.87701 3.06106 7.19305 3.3771C7.50909 3.69314 7.93774 3.87069 8.38469 3.87069C8.83164 3.87069 9.26028 3.69314 9.57632 3.3771C9.89236 3.06106 10.0699 2.63242 10.0699 2.18547C10.0699 1.96416 10.0263 1.74502 9.94163 1.54056C9.85694 1.3361 9.73281 1.15032 9.57632 0.993835C9.41983 0.837347 9.23406 0.713215 9.02959 0.628524C8.82513 0.543834 8.60599 0.500244 8.38469 0.500244C8.16338 0.500244 7.94424 0.543834 7.73978 0.628524C7.53532 0.713215 7.34954 0.837347 7.19305 0.993835C7.03657 1.15032 6.91243 1.3361 6.82774 1.54056C6.74305 1.74502 6.69946 1.96416 6.69946 2.18547Z" fill="#3067EF"/>
|
||||
<path id="Vector_7" d="M2.12378 4.00334C2.12378 4.22465 2.16737 4.44379 2.25206 4.64825C2.33675 4.85271 2.46088 5.03848 2.61737 5.19497C2.77386 5.35146 2.95964 5.47559 3.1641 5.56028C3.36856 5.64497 3.5877 5.68856 3.809 5.68856C4.03031 5.68856 4.24945 5.64497 4.45391 5.56028C4.65837 5.47559 4.84415 5.35146 5.00064 5.19497C5.15712 5.03848 5.28126 4.85271 5.36595 4.64825C5.45064 4.44379 5.49423 4.22465 5.49423 4.00334C5.49423 3.55639 5.31668 3.12775 5.00064 2.81171C4.6846 2.49567 4.25595 2.31812 3.809 2.31812C3.36205 2.31812 2.93341 2.49567 2.61737 2.81171C2.30133 3.12775 2.12378 3.55639 2.12378 4.00334Z" fill="#3067EF"/>
|
||||
<path id="Vector_8" d="M0.416504 8.50001C0.416504 8.71088 0.458037 8.91968 0.538732 9.1145C0.619428 9.30931 0.737704 9.48633 0.88681 9.63543C1.03592 9.78454 1.21293 9.90281 1.40774 9.98351C1.60256 10.0642 1.81136 10.1057 2.02223 10.1057C2.2331 10.1057 2.4419 10.0642 2.63671 9.98351C2.83153 9.90281 3.00854 9.78454 3.15765 9.63543C3.30675 9.48633 3.42503 9.30931 3.50573 9.1145C3.58642 8.91968 3.62795 8.71088 3.62795 8.50001C3.62795 8.07415 3.45878 7.66572 3.15765 7.36459C2.85652 7.06346 2.44809 6.89429 2.02223 6.89429C1.59636 6.89429 1.18794 7.06346 0.88681 7.36459C0.585678 7.66572 0.416504 8.07415 0.416504 8.50001Z" fill="#3067EF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_60_6856">
|
||||
<rect width="16" height="16" fill="white" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
3
finyx_data_frontend/src/assets/agent/chat/more.svg
Executable file
@ -0,0 +1,3 @@
|
||||
<svg width="2" height="14" viewBox="0 0 2 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1C2 1.55229 1.55228 2 1 2C0.447715 2 0 1.55229 0 1C0 0.447715 0.447715 0 1 0C1.55228 0 2 0.447715 2 1ZM2 7C2 7.55228 1.55228 8 1 8C0.447715 8 0 7.55228 0 7C0 6.44771 0.447715 6 1 6C1.55228 6 2 6.44771 2 7ZM1 14C1.55228 14 2 13.5523 2 13C2 12.4477 1.55228 12 1 12C0.447715 12 0 12.4477 0 13C0 13.5523 0.447715 14 1 14Z" fill="#999999"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 489 B |
5
finyx_data_frontend/src/assets/agent/chat/shanchu.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M12.5137 3.38005H11.7932V3.37995H10.1121L10.1122 2.17928C10.1122 1.51886 9.57781 0.978516 8.91139 0.978516H5.06893C4.40851 0.978516 3.86817 1.51886 3.86817 2.17928V3.38005H3.86816V3.37995H2.18709L2.21446 3.38005H1.46663C1.33455 3.38005 1.21447 3.43408 1.12442 3.51814C1.04036 3.60219 0.986328 3.72227 0.986328 3.86035C0.986328 4.12452 1.20247 4.34066 1.46663 4.34066H2.23513L2.64339 11.7854C2.64339 12.4518 3.15371 12.9862 3.79012 12.9862H10.1962C10.8266 12.9862 11.3369 12.4518 11.3369 11.7854L11.7452 4.34066H12.5197C12.6518 4.34066 12.7719 4.28663 12.8619 4.20257C12.946 4.11252 13 3.99244 13 3.86035C12.994 3.59619 12.7779 3.38005 12.5137 3.38005ZM10.1121 3.37995L10.1395 3.38005H10.1122L10.1121 3.37995ZM4.82878 2.17928C4.82878 2.0472 4.93685 1.93913 5.06893 1.93913H8.91139C9.04347 1.93913 9.15154 2.0472 9.15154 2.17928V3.38005H4.82878L4.82878 3.37995H9.15154V3.37395L4.82878 3.37995L4.82878 2.17928ZM10.3763 11.7374V11.7914C10.3763 11.9355 10.2803 12.0316 10.1962 12.0316H3.78411C3.69406 12.0316 3.598 11.9355 3.598 11.7914V11.7374L3.20206 4.34653H10.0712L10.1121 4.34657V4.34653H10.7783L10.3763 11.7374ZM10.7786 4.34052H3.20174V4.33466H10.7786V4.34066L10.7786 4.3408V4.34052ZM5.30309 9.81019C5.30309 10.0744 5.51923 10.2905 5.7834 10.2905C6.05357 10.2905 6.26371 10.0744 6.26371 9.81019V6.44804C6.26371 6.18387 6.04757 5.96774 5.7834 5.96774C5.51923 5.96774 5.30309 6.18387 5.30309 6.44804V9.81019ZM7.70463 9.81019C7.70463 10.0744 7.92076 10.2905 8.18493 10.2905C8.45511 10.2905 8.66524 10.0744 8.66524 9.81019V6.44804C8.66524 6.18387 8.4491 5.96774 8.18493 5.96774C7.92076 5.96774 7.70463 6.18387 7.70463 6.44804V9.81019Z" fill="#8C8C8C"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
4
finyx_data_frontend/src/assets/agent/chat/shouqi.svg
Executable file
@ -0,0 +1,4 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.9023 2.5V11.5C10.9023 11.7222 10.7222 11.9023 10.5 11.9023C10.2778 11.9023 10.0977 11.7222 10.0977 11.5V2.5C10.0977 2.27779 10.2778 2.09766 10.5 2.09766C10.7222 2.09766 10.9023 2.27779 10.9023 2.5Z" fill="#8C8C8C" stroke="#8C8C8C" stroke-width="0.195312"/>
|
||||
<path d="M7 3L3 7L7 11" stroke="#8C8C8C" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 463 B |
5
finyx_data_frontend/src/assets/agent/chat/tingzhi.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="tingzhi">
|
||||
<path id="Vector" d="M8 16C4.13398 16 1 12.866 1 9C1 5.13398 4.13398 2 8 2C11.866 2 15 5.13398 15 9C15 12.866 11.866 16 8 16ZM8.00675 14.6928C11.1475 14.6928 13.6945 12.1458 13.6945 9.00506C13.6945 5.86434 11.1475 3.31735 8.00675 3.31735C4.86602 3.31735 2.31904 5.86434 2.31904 9.00506C2.31904 12.1458 4.86434 14.6928 8.00675 14.6928ZM5.81229 6.37373H10.1877C10.4289 6.37373 10.6246 6.5694 10.6246 6.8106V11.1877C10.6246 11.4289 10.4289 11.6246 10.1877 11.6246H5.81229C5.57108 11.6246 5.37542 11.4289 5.37542 11.1877V6.81229C5.37542 6.5694 5.57108 6.37373 5.81229 6.37373Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 716 B |
5
finyx_data_frontend/src/assets/agent/chat/upload-avatar.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M5.53575 17.6373C4.82535 17.6373 4.14404 17.3549 3.64171 16.8523C3.13938 16.3497 2.85718 15.668 2.85718 14.9573V9.60524C2.85718 9.36831 2.95125 9.14108 3.11869 8.97355C3.28613 8.80601 3.51323 8.71189 3.75003 8.71189C3.98684 8.71189 4.21394 8.80601 4.38138 8.97355C4.54882 9.14108 4.64289 9.36831 4.64289 9.60524V14.9626C4.64289 15.1995 4.73696 15.4268 4.9044 15.5943C4.98731 15.6773 5.08574 15.7431 5.19407 15.788C5.30239 15.8329 5.4185 15.856 5.53575 15.856H14.4643C14.7011 15.856 14.9282 15.7618 15.0957 15.5943C15.2631 15.4268 15.3572 15.1995 15.3572 14.9626V9.6106C15.3572 9.37367 15.4512 9.14644 15.6187 8.97891C15.7861 8.81137 16.0132 8.71725 16.25 8.71725C16.4868 8.71725 16.7139 8.81137 16.8814 8.97891C17.0488 9.14644 17.1429 9.37367 17.1429 9.6106V14.9626C17.1429 15.6734 16.8607 16.3551 16.3584 16.8577C15.856 17.3603 15.1747 17.6426 14.4643 17.6426L5.53575 17.6373ZM9.10718 12.2826V6.40617L7.95271 7.56037C7.7833 7.71661 7.56008 7.80127 7.32973 7.79666C7.09938 7.79205 6.87972 7.69852 6.71669 7.53563C6.55366 7.37274 6.45987 7.1531 6.45494 6.92263C6.45 6.69216 6.5343 6.4687 6.69021 6.29897L9.36878 3.61894C9.45171 3.53588 9.55018 3.46999 9.65857 3.42503C9.76696 3.38007 9.88315 3.35693 10.0005 3.35693C10.1178 3.35693 10.234 3.38007 10.3424 3.42503C10.4508 3.46999 10.5493 3.53588 10.6322 3.61894L13.1027 6.08814C13.1923 6.16949 13.2643 6.2682 13.3146 6.37827C13.3649 6.48835 13.3923 6.60749 13.3951 6.72847C13.398 6.84946 13.3762 6.96976 13.3312 7.08207C13.2861 7.19439 13.2188 7.29639 13.1332 7.38187C13.0476 7.46735 12.9455 7.53453 12.8331 7.57935C12.7208 7.62416 12.6005 7.64566 12.4796 7.64256C12.3587 7.63945 12.2396 7.6118 12.1297 7.56127C12.0198 7.51075 11.9213 7.43841 11.8402 7.34865L10.8929 6.40796V12.2826C10.8929 12.3999 10.8698 12.5161 10.8249 12.6245C10.7801 12.7328 10.7143 12.8313 10.6314 12.9143C10.5485 12.9972 10.45 13.063 10.3417 13.1079C10.2334 13.1528 10.1173 13.1759 10 13.1759C9.88278 13.1759 9.76668 13.1528 9.65835 13.1079C9.55003 13.063 9.4516 12.9972 9.36869 12.9143C9.28578 12.8313 9.22001 12.7328 9.17514 12.6245C9.13027 12.5161 9.10718 12.3999 9.10718 12.2826Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
5
finyx_data_frontend/src/assets/agent/chat/upload-img.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M5.53575 17.6373C4.82535 17.6373 4.14404 17.3549 3.64171 16.8523C3.13938 16.3497 2.85718 15.668 2.85718 14.9573V9.60524C2.85718 9.36831 2.95125 9.14108 3.11869 8.97355C3.28613 8.80601 3.51323 8.71189 3.75003 8.71189C3.98684 8.71189 4.21394 8.80601 4.38138 8.97355C4.54882 9.14108 4.64289 9.36831 4.64289 9.60524V14.9626C4.64289 15.1995 4.73696 15.4268 4.9044 15.5943C4.98731 15.6773 5.08574 15.7431 5.19407 15.788C5.30239 15.8329 5.4185 15.856 5.53575 15.856H14.4643C14.7011 15.856 14.9282 15.7618 15.0957 15.5943C15.2631 15.4268 15.3572 15.1995 15.3572 14.9626V9.6106C15.3572 9.37367 15.4512 9.14644 15.6187 8.97891C15.7861 8.81137 16.0132 8.71725 16.25 8.71725C16.4868 8.71725 16.7139 8.81137 16.8814 8.97891C17.0488 9.14644 17.1429 9.37367 17.1429 9.6106V14.9626C17.1429 15.6734 16.8607 16.3551 16.3584 16.8577C15.856 17.3603 15.1747 17.6426 14.4643 17.6426L5.53575 17.6373ZM9.10718 12.2826V6.40617L7.95271 7.56037C7.7833 7.71661 7.56008 7.80127 7.32973 7.79666C7.09938 7.79205 6.87972 7.69852 6.71669 7.53563C6.55366 7.37274 6.45987 7.1531 6.45494 6.92263C6.45 6.69216 6.5343 6.4687 6.69021 6.29897L9.36878 3.61894C9.45171 3.53588 9.55018 3.46999 9.65857 3.42503C9.76696 3.38007 9.88315 3.35693 10.0005 3.35693C10.1178 3.35693 10.234 3.38007 10.3424 3.42503C10.4508 3.46999 10.5493 3.53588 10.6322 3.61894L13.1027 6.08814C13.1923 6.16949 13.2643 6.2682 13.3146 6.37827C13.3649 6.48835 13.3923 6.60749 13.3951 6.72847C13.398 6.84946 13.3762 6.96976 13.3312 7.08207C13.2861 7.19439 13.2188 7.29639 13.1332 7.38187C13.0476 7.46735 12.9455 7.53453 12.8331 7.57935C12.7208 7.62416 12.6005 7.64566 12.4796 7.64256C12.3587 7.63945 12.2396 7.6118 12.1297 7.56127C12.0198 7.51075 11.9213 7.43841 11.8402 7.34865L10.8929 6.40796V12.2826C10.8929 12.3999 10.8698 12.5161 10.8249 12.6245C10.7801 12.7328 10.7143 12.8313 10.6314 12.9143C10.5485 12.9972 10.45 13.063 10.3417 13.1079C10.2334 13.1528 10.1173 13.1759 10 13.1759C9.88278 13.1759 9.76668 13.1528 9.65835 13.1079C9.55003 13.063 9.4516 12.9972 9.36869 12.9143C9.28578 12.8313 9.22001 12.7328 9.17514 12.6245C9.13027 12.5161 9.10718 12.3999 9.10718 12.2826Z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
23
finyx_data_frontend/src/assets/agent/chat/uploadFile.svg
Executable file
@ -0,0 +1,23 @@
|
||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 26743" clip-path="url(#clip0_172_4957)">
|
||||
<g id="上传icon">
|
||||
<g id="Group 26669">
|
||||
<rect id="Rectangle 5593" x="11" width="35" height="43" rx="5" fill="#5784F3"/>
|
||||
<foreignObject x="-2" y="1" width="43" height="51"><div xmlns="http://www.w3.org/1999/xhtml" style="backdrop-filter:blur(2px);clip-path:url(#bgblur_1_172_4957_clip_path);height:100%;width:100%"></div></foreignObject><path id="Rectangle 5594" data-figma-bg-blur-radius="4" d="M2 10C2 7.23858 4.23858 5 7 5L28.8333 5L37 14.0526V43C37 45.7614 34.7614 48 32 48H7C4.23858 48 2 45.7614 2 43V10Z" fill="#D0DEFF" fill-opacity="0.64"/>
|
||||
<path id="Vector 498" d="M37 14L29 5V12C29 13.1046 29.8954 14 31 14H37Z" fill="#3067EF"/>
|
||||
<g id="Frame" clip-path="url(#clip2_172_4957)">
|
||||
<path id="Vector" d="M14.6239 32.9879C13.928 32.9879 13.2606 32.7115 12.7685 32.2194C12.2764 31.7273 12 31.06 12 30.3641V25.1242C12 24.8922 12.0921 24.6698 12.2562 24.5057C12.4202 24.3417 12.6427 24.2496 12.8746 24.2496C13.1066 24.2496 13.3291 24.3417 13.4931 24.5057C13.6571 24.6698 13.7492 24.8922 13.7492 25.1242V30.3693C13.7492 30.6013 13.8414 30.8237 14.0054 30.9878C14.0866 31.069 14.183 31.1334 14.2892 31.1774C14.3953 31.2213 14.509 31.2439 14.6239 31.2439H23.3701C23.6021 31.2439 23.8245 31.1518 23.9885 30.9878C24.1526 30.8237 24.2447 30.6013 24.2447 30.3693V25.1294C24.2447 24.8975 24.3369 24.675 24.5009 24.511C24.6649 24.347 24.8874 24.2548 25.1193 24.2548C25.3513 24.2548 25.5738 24.347 25.7378 24.511C25.9018 24.675 25.994 24.8975 25.994 25.1294V30.3693C25.994 31.0652 25.7175 31.7326 25.2254 32.2247C24.7334 32.7167 24.066 32.9932 23.3701 32.9932L14.6239 32.9879ZM18.1224 27.7454V21.9922L16.9915 23.1222C16.8255 23.2751 16.6069 23.358 16.3812 23.3535C16.1556 23.349 15.9404 23.2574 15.7807 23.098C15.621 22.9385 15.5291 22.7234 15.5243 22.4978C15.5194 22.2722 15.602 22.0534 15.7548 21.8872L18.3786 19.2634C18.4598 19.182 18.5563 19.1175 18.6625 19.0735C18.7687 19.0295 18.8825 19.0068 18.9974 19.0068C19.1124 19.0068 19.2262 19.0295 19.3323 19.0735C19.4385 19.1175 19.535 19.182 19.6162 19.2634L22.0363 21.6808C22.124 21.7605 22.1946 21.8571 22.2439 21.9649C22.2931 22.0726 22.3199 22.1893 22.3227 22.3077C22.3255 22.4262 22.3042 22.5439 22.2601 22.6539C22.216 22.7639 22.15 22.8637 22.0661 22.9474C21.9823 23.0311 21.8823 23.0969 21.7722 23.1408C21.6621 23.1846 21.5443 23.2057 21.4259 23.2026C21.3074 23.1996 21.1908 23.1725 21.0832 23.1231C20.9755 23.0736 20.879 23.0028 20.7996 22.9149L19.8716 21.9939V27.7454C19.8716 27.8603 19.849 27.974 19.805 28.0801C19.7611 28.1863 19.6966 28.2827 19.6154 28.3639C19.5342 28.4451 19.4378 28.5095 19.3317 28.5535C19.2256 28.5974 19.1118 28.6201 18.997 28.6201C18.8821 28.6201 18.7684 28.5974 18.6623 28.5535C18.5562 28.5095 18.4597 28.4451 18.3785 28.3639C18.2973 28.2827 18.2329 28.1863 18.1889 28.0801C18.145 27.974 18.1224 27.8603 18.1224 27.7454Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="bgblur_1_172_4957_clip_path" transform="translate(2 -1)"><path d="M2 10C2 7.23858 4.23858 5 7 5L28.8333 5L37 14.0526V43C37 45.7614 34.7614 48 32 48H7C4.23858 48 2 45.7614 2 43V10Z"/>
|
||||
</clipPath><clipPath id="clip0_172_4957">
|
||||
<rect width="48" height="48" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2_172_4957">
|
||||
<rect width="14" height="14" fill="white" transform="translate(12 19)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
5
finyx_data_frontend/src/assets/agent/chat/xihuan.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="xihuan">
|
||||
<path id="Vector" d="M7.86128 2.24531C7.82197 2.63153 7.78438 2.99724 7.68697 3.32877C7.33493 4.51817 6.49414 5.39998 5.72 6.10747C5.52006 6.2869 5.28594 6.62869 5.28423 6.99269C5.27227 8.33077 5.27227 9.67056 5.27227 11.0086L5.27056 13.4251C5.26885 14.0693 5.59354 14.5649 6.16261 14.7871C6.49756 14.9238 6.85301 14.999 7.2136 15.0092M7.86128 2.24531L8.35868 2.29616L8.35693 2.31338C8.31915 2.68484 8.27776 3.09167 8.16669 3.46972L8.16641 3.47067C7.77307 4.79962 6.8417 5.75969 6.05731 6.47655L6.05397 6.4796L6.05396 6.47959C5.99496 6.53253 5.92238 6.61836 5.86663 6.72046C5.8107 6.8229 5.78459 6.91773 5.78422 6.99504L5.78421 6.99716C5.77227 8.33263 5.77227 9.67019 5.77227 11.0086V11.009L5.77056 13.4254L5.77056 13.4264C5.76935 13.879 5.98112 14.1795 6.34444 14.3213L6.35158 14.3241L6.35156 14.3241C6.63004 14.4378 6.92505 14.5004 7.22413 14.5093M7.86128 2.24531L8.35871 2.29594C8.41684 1.72806 8.74639 1.47559 9.10537 1.47559C9.26265 1.47559 9.43655 1.52207 9.62823 1.63554M7.86128 2.24531C7.93989 1.4763 8.43889 0.975586 9.10537 0.975586C9.36683 0.975586 9.6283 1.0542 9.88464 1.20629M7.22413 14.5093C7.22281 14.5093 7.22148 14.5093 7.22016 14.5093L7.2136 15.0092M7.22413 14.5093C7.22536 14.5094 7.22658 14.5094 7.22781 14.5094L7.2136 15.0092M7.22413 14.5093C7.87008 14.5178 8.51488 14.5178 9.16347 14.5178H10.1358H10.1374C10.773 14.5178 11.4117 14.5178 12.0491 14.5246M7.2136 15.0092C7.86469 15.0178 8.51408 15.0178 9.16347 15.0178H10.1358H10.1361C10.7734 15.0178 11.4108 15.0178 12.0464 15.0246M12.0464 15.0246V14.5246H12.0491M12.0464 15.0246H12.0669C12.648 15.0246 13.0854 14.7512 13.2973 14.2522L13.3777 14.0676M12.0464 15.0246L12.0518 14.5246C12.0509 14.5246 12.05 14.5246 12.0491 14.5246M12.0491 14.5246H12.0669C12.4673 14.5246 12.7112 14.3534 12.8371 14.0567L12.8389 14.0526L12.8389 14.0527L12.9187 13.8691L13.3777 14.0676M13.3777 14.0676L12.9192 13.8681L12.9243 13.8564L12.9243 13.8563C13.1113 13.4239 13.2839 13.0221 13.3873 12.5948M13.3777 14.0676L13.3832 14.0549L13.3832 14.0548C13.5677 13.6282 13.7582 13.1879 13.8733 12.7124M10.91 5.77594V5.77252C11.0809 4.85825 11.2364 3.79188 10.9322 2.69305C10.7425 2.00094 10.399 1.5156 9.88464 1.20629M10.91 5.77594L10.8914 5.77252L10.4182 5.68545C10.4149 5.70369 10.4121 5.72189 10.41 5.74004M10.91 5.77594H10.41V5.77252V5.74004M10.91 5.77594C10.8707 5.98955 11.0313 6.18779 11.2501 6.18779H13.4717C13.8545 6.18779 14.403 6.23564 14.7414 6.64578M10.41 5.74004V5.72619L10.4185 5.68065C10.5881 4.77318 10.7215 3.806 10.4503 2.82645L10.45 2.82521C10.2877 2.23307 10.0117 1.86657 9.62823 1.63554M10.41 5.74004C10.3515 6.23304 10.7306 6.68779 11.2501 6.68779H13.4717C13.8515 6.68779 14.1768 6.74741 14.3555 6.96372M9.62823 1.63554C9.62865 1.63579 9.62908 1.63605 9.6295 1.6363L9.88464 1.20629M9.62823 1.63554C9.62781 1.63529 9.62739 1.63504 9.62697 1.63479L9.88464 1.20629M14.3555 6.96372C14.3554 6.96364 14.3554 6.96356 14.3553 6.96348L14.7414 6.64578M14.3555 6.96372C14.4733 7.10709 14.5499 7.33856 14.4626 7.78539L14.4624 7.78612C14.1469 9.41297 13.7596 11.0561 13.3873 12.5948M14.3555 6.96372C14.3556 6.9638 14.3556 6.96389 14.3557 6.96397L14.7414 6.64578M14.7414 6.64578C14.9875 6.94484 15.0575 7.34814 14.9533 7.88133C14.6354 9.52018 14.2458 11.1727 13.8733 12.7124M13.3873 12.5948L13.8733 12.7124M13.3873 12.5948C13.3873 12.5948 13.3873 12.5948 13.3873 12.5949L13.8733 12.7124M3.79832 13.5259L3.79832 13.5271C3.79939 13.9863 3.42257 14.364 2.96195 14.364H2.33637C1.87768 14.364 1.5 13.9863 1.5 13.5276V7.57203C1.5 7.11334 1.87768 6.73566 2.33637 6.73566H2.96195C3.42064 6.73566 3.79832 7.11334 3.79832 7.57203L3.79832 13.5259Z" stroke="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
8
finyx_data_frontend/src/assets/agent/chat/xihuan_h.svg
Executable file
@ -0,0 +1,8 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="xihuan_h">
|
||||
<g id="Vector">
|
||||
<path d="M3.74442 15.4768H3.11884C2.38401 15.4768 1.78247 14.8752 1.78247 14.1404V8.18482C1.78247 7.44999 2.38401 6.84845 3.11884 6.84845H3.74442C4.47925 6.84845 5.08079 7.44999 5.08079 8.18482V14.1387C5.0825 14.8752 4.48096 15.4768 3.74442 15.4768Z" fill="#3067EF"/>
|
||||
<path d="M12.8289 15.6374H12.8494C13.4304 15.6374 13.8679 15.364 14.0798 14.865L14.1601 14.6804L14.1657 14.6676C14.3502 14.241 14.5407 13.8007 14.6557 13.3252C15.0283 11.7855 15.4179 10.133 15.7358 8.49412C15.84 7.96094 15.7699 7.55763 15.5239 7.25857C15.1855 6.84843 14.6369 6.80058 14.2541 6.80058H12.0325C11.8138 6.80058 11.6532 6.60234 11.6925 6.38873V6.38531C11.8633 5.47104 12.0189 4.40468 11.7147 3.30584C11.525 2.61373 11.1815 2.1284 10.6671 1.81908C10.4108 1.66699 10.1493 1.58838 9.88784 1.58838C9.22136 1.58838 8.72236 2.08909 8.64375 2.85811C8.60444 3.24432 8.56685 3.61003 8.46944 3.94156C8.1174 5.13097 7.27661 6.01277 6.50247 6.72026C6.30253 6.8997 6.06841 7.24148 6.0667 7.60548C6.05474 8.94356 6.05474 10.2834 6.05474 11.6214L6.05303 14.0378C6.05132 14.6821 6.37601 15.1777 6.94508 15.3999C7.28003 15.5366 7.63549 15.6118 7.99607 15.622C8.64717 15.6306 9.29655 15.6306 9.94594 15.6306H10.9183C11.5557 15.6306 12.1932 15.6306 12.8289 15.6374Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
5
finyx_data_frontend/src/assets/agent/chat/yangshengqi_h.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="yangshengqi_h">
|
||||
<path id="Vector" d="M9.1451 15.0869C8.96202 15.0869 8.86551 15.0654 8.75136 15.0494C8.56181 15.0228 8.37565 14.9761 8.19605 14.9099C8.11443 14.8798 8.03469 14.8448 7.95728 14.8051C7.88103 14.7675 7.80879 14.7222 7.74166 14.67L4.71255 12.3208H3.23907C2.31154 12.3208 1.58252 11.6039 1.58252 10.6632V6.95852C1.58252 6.01775 2.31154 5.30032 3.23907 5.30032H4.6381L7.65453 2.71733C7.69479 2.68203 7.7378 2.65005 7.78302 2.62027C8.27381 2.29822 9.128 1.93923 9.69986 2.27065C10.2397 2.56127 10.4057 3.35701 10.4057 3.99448V13.3542C10.4057 13.9597 10.2712 14.6375 9.77761 14.9358C9.59563 15.0626 9.32873 15.0869 9.1451 15.0869ZM11.6569 6.46884C11.557 6.36411 11.5022 6.22428 11.5045 6.07953C11.5067 5.93478 11.5658 5.79671 11.669 5.69515C11.7721 5.59358 11.9111 5.53665 12.0559 5.53665C12.2006 5.53665 12.3396 5.59358 12.4428 5.69515C13.228 6.49255 13.6251 7.48075 13.6251 8.62886C13.6251 9.7858 13.2209 10.7453 12.4191 11.4688C12.3652 11.5173 12.3024 11.5548 12.2341 11.579C12.1659 11.6033 12.0935 11.6138 12.0211 11.6101C11.9488 11.6063 11.8779 11.5884 11.8124 11.5572C11.747 11.5261 11.6884 11.4824 11.6399 11.4286C11.5913 11.3748 11.5539 11.3119 11.5297 11.2437C11.5054 11.1754 11.4949 11.103 11.4986 11.0306C11.5023 10.9583 11.5203 10.8874 11.5514 10.822C11.5826 10.7565 11.6263 10.6979 11.6801 10.6494C12.2442 10.1409 12.5222 9.48085 12.5222 8.62886C12.5222 7.7675 12.2376 7.05778 11.6569 6.46884ZM13.4073 4.97275C13.3558 4.92056 13.3153 4.85864 13.2881 4.79062C13.2608 4.72259 13.2474 4.64981 13.2486 4.57655C13.2499 4.50328 13.2657 4.43099 13.2951 4.3639C13.3246 4.29681 13.3671 4.23627 13.4203 4.18581C13.4734 4.13535 13.5361 4.09599 13.6046 4.07002C13.6731 4.04405 13.7461 4.032 13.8194 4.03457C13.8926 4.03714 13.9646 4.05428 14.0311 4.08498C14.0976 4.11569 14.1574 4.15935 14.2069 4.21341C15.387 5.45582 15.9825 6.95797 15.9825 8.69118C15.9825 10.4304 15.3831 11.8995 14.1931 13.0664C14.1416 13.1183 14.0804 13.1594 14.0129 13.1875C13.9454 13.2155 13.873 13.2298 13.7999 13.2296C13.7268 13.2294 13.6545 13.2147 13.5872 13.1863C13.5198 13.1579 13.4588 13.1164 13.4077 13.0642C13.3565 13.012 13.3162 12.9502 13.2892 12.8823C13.2621 12.8144 13.2488 12.7418 13.2501 12.6688C13.2513 12.5957 13.2671 12.5236 13.2964 12.4567C13.3258 12.3897 13.3681 12.3293 13.421 12.2789C14.396 11.3227 14.8796 10.1382 14.8796 8.69173C14.8796 7.23976 14.3921 6.00948 13.4073 4.97275Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
11
finyx_data_frontend/src/assets/agent/def_agent.svg
Executable file
|
After Width: | Height: | Size: 430 KiB |
10
finyx_data_frontend/src/assets/agent/icon_send.svg
Executable file
@ -0,0 +1,10 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="fasong" clip-path="url(#clip0_49_2314)">
|
||||
<path id="Vector" d="M15.9336 0.507096L1.33141 4.9984C0.315312 5.311 0.130512 6.6694 1.02631 7.2421L5.34061 10C5.56496 10.1434 5.8293 10.2112 6.09498 10.1936C6.36065 10.176 6.61373 10.0739 6.81721 9.9022L12.2019 5.3584C12.4938 5.1121 12.8877 5.5057 12.6414 5.7979L8.09791 11.1835C7.92622 11.3869 7.82413 11.64 7.80659 11.9056C7.78905 12.1713 7.85697 12.4355 8.00041 12.6598L10.7577 16.9735C11.3301 17.869 12.6888 17.6842 13.0014 16.6684L17.4927 2.0665C17.787 1.1092 16.8906 0.212796 15.9336 0.507096Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_49_2314">
|
||||
<rect width="18" height="18" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 774 B |
12
finyx_data_frontend/src/assets/agent/senior.svg
Executable file
@ -0,0 +1,12 @@
|
||||
<svg width="25" height="14" viewBox="0 0 25 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="高级定制">
|
||||
<path d="M0 6C0 2.68629 2.68629 0 6 0H23C24.1046 0 25 0.895431 25 2V8C25 11.3137 22.3137 14 19 14H2C0.89543 14 0 13.1046 0 12V6Z" fill="url(#paint0_linear_299_34432)"/>
|
||||
<path id="高级定制_2" d="M4.56 4.288H6.928C8.288 4.288 8.968 4.864 8.968 6.024C8.968 7.192 8.28 7.776 6.912 7.776H5.432V10H4.56V4.288ZM5.432 5.032V7.032H6.856C7.288 7.032 7.6 6.952 7.8 6.792C7.992 6.632 8.096 6.376 8.096 6.024C8.096 5.672 7.992 5.416 7.792 5.272C7.592 5.112 7.28 5.032 6.856 5.032H5.432ZM9.77875 4.288H12.3068C12.8828 4.288 13.3468 4.416 13.6828 4.68C14.0348 4.968 14.2108 5.376 14.2108 5.92C14.2108 6.224 14.1308 6.488 13.9708 6.72C13.7868 6.976 13.5388 7.144 13.2268 7.224V7.24C13.7387 7.352 14.0188 7.688 14.0828 8.248L14.1788 9.16C14.2108 9.512 14.3228 9.792 14.5148 10H13.5708C13.4348 9.824 13.3548 9.568 13.3228 9.248L13.2508 8.536C13.2188 8.216 13.1148 7.992 12.9468 7.848C12.7708 7.704 12.5228 7.64 12.1948 7.64H10.6508V10H9.77875V4.288ZM10.6508 5.032V6.896H12.1948C12.5788 6.896 12.8668 6.808 13.0588 6.648C13.2428 6.488 13.3388 6.256 13.3388 5.952C13.3388 5.632 13.2428 5.4 13.0668 5.256C12.8748 5.104 12.5868 5.032 12.1868 5.032H10.6508ZM17.8458 4.176C18.7098 4.176 19.3978 4.456 19.9018 5.024C20.3818 5.56 20.6218 6.272 20.6218 7.152C20.6218 8.024 20.3818 8.728 19.9018 9.272C19.3978 9.832 18.7098 10.112 17.8458 10.112C16.9738 10.112 16.2858 9.824 15.7898 9.264C15.3098 8.72 15.0778 8.016 15.0778 7.152C15.0778 6.28 15.3098 5.576 15.7898 5.032C16.2858 4.456 16.9738 4.176 17.8458 4.176ZM17.8458 4.944C17.2378 4.944 16.7658 5.144 16.4298 5.56C16.1098 5.952 15.9498 6.48 15.9498 7.152C15.9498 7.816 16.1098 8.344 16.4298 8.736C16.7658 9.136 17.2378 9.344 17.8458 9.344C18.4538 9.344 18.9258 9.144 19.2538 8.752C19.5738 8.368 19.7418 7.832 19.7418 7.152C19.7418 6.464 19.5738 5.928 19.2538 5.536C18.9258 5.136 18.4538 4.944 17.8458 4.944Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_299_34432" x1="2.5" y1="0.500001" x2="26.6698" y2="6.45736" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E19267"/>
|
||||
<stop offset="1" stop-color="#AE683F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
5
finyx_data_frontend/src/assets/agent/user.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M7.00012 1.38037C5.37728 1.38107 3.8211 2.02605 2.67357 3.17357C1.52605 4.3211 0.881067 5.87728 0.880371 7.50012C0.881067 9.12297 1.52605 10.6791 2.67357 11.8267C3.8211 12.9742 5.37728 13.6192 7.00012 13.6199C8.62297 13.6192 10.1791 12.9742 11.3267 11.8267C12.4742 10.6791 13.1192 9.12297 13.1199 7.50012C13.1189 5.87735 12.4739 4.3213 11.3264 3.17383C10.1789 2.02635 8.62289 1.3813 7.00012 1.38037ZM7.00012 12.7545C6.31007 12.7546 5.62676 12.6188 4.98922 12.3548C4.35168 12.0907 3.7724 11.7037 3.28446 11.2158C2.79652 10.7278 2.40949 10.1486 2.14548 9.51102C1.88146 8.87348 1.74563 8.19017 1.74575 7.50012C1.74563 6.81007 1.88146 6.12676 2.14548 5.48922C2.40949 4.85168 2.79652 4.2724 3.28446 3.78446C3.7724 3.29652 4.35168 2.90949 4.98922 2.64548C5.62676 2.38146 6.31007 2.24563 7.00012 2.24575C7.69017 2.24563 8.37348 2.38146 9.01102 2.64548C9.64856 2.90949 10.2278 3.29652 10.7158 3.78446C11.2037 4.2724 11.5907 4.85168 11.8548 5.48922C12.1188 6.12676 12.2546 6.81007 12.2545 7.50012C12.2546 8.19017 12.1188 8.87348 11.8548 9.51102C11.5907 10.1486 11.2037 10.7278 10.7158 11.2158C10.2278 11.7037 9.64856 12.0907 9.01102 12.3548C8.37348 12.6188 7.69017 12.7546 7.00012 12.7545ZM10.1326 10.2765C10.011 9.81401 9.78653 9.38495 9.47594 9.02133C9.16535 8.65771 8.77666 8.36892 8.33887 8.1765C8.67225 7.96453 8.94672 7.67184 9.13685 7.32554C9.32698 6.97924 9.4266 6.59055 9.4265 6.1955C9.4258 5.57215 9.17787 4.97454 8.7371 4.53377C8.29633 4.093 7.69871 3.84507 7.07537 3.84437C6.45188 3.84483 5.85404 4.09266 5.41308 4.53346C4.97212 4.97425 4.72407 5.572 4.72337 6.1955C4.72337 7.03287 5.15562 7.76525 5.81187 8.1765C5.37181 8.36659 4.9809 8.65454 4.66886 9.01843C4.35682 9.38233 4.13187 9.81259 4.01112 10.2765C3.98368 10.3839 3.99984 10.4978 4.05606 10.5934C4.11228 10.689 4.20402 10.7584 4.31125 10.7866C4.36451 10.8006 4.42 10.8038 4.47453 10.7962C4.52906 10.7886 4.58154 10.7703 4.62895 10.7423C4.67637 10.7143 4.71778 10.6772 4.75081 10.6332C4.78383 10.5891 4.80781 10.539 4.82137 10.4856C4.95081 9.98808 5.24169 9.54756 5.64842 9.23311C6.05514 8.91866 6.55471 8.74807 7.06881 8.74807C7.58291 8.74807 8.08248 8.91866 8.4892 9.23311C8.89592 9.54756 9.18681 9.98808 9.31625 10.4856C9.34424 10.593 9.41365 10.6849 9.50928 10.7411C9.6049 10.7974 9.71893 10.8134 9.82637 10.7857C9.88054 10.7735 9.93167 10.7505 9.97668 10.7179C10.0217 10.6854 10.0596 10.6441 10.0883 10.5965C10.1169 10.5489 10.1356 10.4961 10.1432 10.4411C10.1508 10.386 10.1472 10.3301 10.1326 10.2765ZM7.07712 4.68087C7.91362 4.68087 8.59087 5.35812 8.59087 6.19462C8.59087 7.03112 7.91362 7.70837 7.07712 7.70837C6.23975 7.70837 5.56337 7.03112 5.56337 6.19462C5.56337 5.35812 6.23975 4.68087 7.07712 4.68087Z" fill="#999999"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
11
finyx_data_frontend/src/assets/dataset/icon_document.svg
Executable file
|
After Width: | Height: | Size: 47 KiB |
7
finyx_data_frontend/src/assets/fileType/csv-icon.svg
Executable file
@ -0,0 +1,7 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#34C724"/>
|
||||
<path d="M9.27052 14.1558H10.1825C10.1545 13.9078 10.0865 13.6878 9.97852 13.4958C9.87052 13.3038 9.73252 13.1438 9.56452 13.0158C9.40052 12.8838 9.21252 12.7838 9.00052 12.7158C8.79252 12.6478 8.57052 12.6138 8.33452 12.6138C8.00652 12.6138 7.71052 12.6718 7.44652 12.7878C7.18652 12.9038 6.96652 13.0638 6.78652 13.2678C6.60652 13.4718 6.46852 13.7118 6.37252 13.9878C6.27652 14.2598 6.22852 14.5558 6.22852 14.8758C6.22852 15.1878 6.27652 15.4798 6.37252 15.7518C6.46852 16.0198 6.60652 16.2538 6.78652 16.4538C6.96652 16.6538 7.18652 16.8118 7.44652 16.9278C7.71052 17.0398 8.00652 17.0958 8.33452 17.0958C8.59852 17.0958 8.84052 17.0558 9.06052 16.9758C9.28052 16.8958 9.47252 16.7798 9.63652 16.6278C9.80052 16.4758 9.93252 16.2918 10.0325 16.0758C10.1325 15.8598 10.1945 15.6178 10.2185 15.3498H9.30652C9.27052 15.6378 9.17052 15.8698 9.00652 16.0458C8.84652 16.2218 8.62252 16.3098 8.33452 16.3098C8.12252 16.3098 7.94252 16.2698 7.79452 16.1898C7.64652 16.1058 7.52652 15.9958 7.43452 15.8598C7.34252 15.7238 7.27452 15.5718 7.23052 15.4038C7.19052 15.2318 7.17052 15.0558 7.17052 14.8758C7.17052 14.6878 7.19052 14.5058 7.23052 14.3298C7.27452 14.1538 7.34252 13.9978 7.43452 13.8618C7.52652 13.7218 7.64652 13.6118 7.79452 13.5318C7.94252 13.4478 8.12252 13.4058 8.33452 13.4058C8.45052 13.4058 8.56052 13.4258 8.66452 13.4658C8.77252 13.5018 8.86852 13.5538 8.95252 13.6218C9.03652 13.6898 9.10652 13.7698 9.16252 13.8618C9.21852 13.9498 9.25452 14.0478 9.27052 14.1558Z" fill="white"/>
|
||||
<path d="M11.5038 15.5778H10.5918C10.5878 15.8418 10.6358 16.0698 10.7358 16.2618C10.8358 16.4538 10.9698 16.6118 11.1378 16.7358C11.3098 16.8598 11.5058 16.9498 11.7258 17.0058C11.9498 17.0658 12.1798 17.0958 12.4158 17.0958C12.7078 17.0958 12.9638 17.0618 13.1838 16.9938C13.4078 16.9258 13.5938 16.8318 13.7418 16.7118C13.8938 16.5878 14.0078 16.4418 14.0838 16.2738C14.1598 16.1058 14.1978 15.9238 14.1978 15.7278C14.1978 15.4878 14.1458 15.2918 14.0418 15.1398C13.9418 14.9838 13.8218 14.8598 13.6818 14.7678C13.5418 14.6758 13.3998 14.6098 13.2558 14.5698C13.1158 14.5258 13.0058 14.4958 12.9258 14.4798C12.6578 14.4118 12.4398 14.3558 12.2718 14.3118C12.1078 14.2678 11.9778 14.2238 11.8818 14.1798C11.7898 14.1358 11.7278 14.0878 11.6958 14.0358C11.6638 13.9838 11.6478 13.9158 11.6478 13.8318C11.6478 13.7398 11.6678 13.6638 11.7078 13.6038C11.7478 13.5438 11.7978 13.4938 11.8578 13.4538C11.9218 13.4138 11.9918 13.3858 12.0678 13.3698C12.1438 13.3538 12.2198 13.3458 12.2958 13.3458C12.4118 13.3458 12.5178 13.3558 12.6138 13.3758C12.7138 13.3958 12.8018 13.4298 12.8778 13.4778C12.9538 13.5258 13.0138 13.5918 13.0578 13.6758C13.1058 13.7598 13.1338 13.8658 13.1418 13.9938H14.0538C14.0538 13.7458 14.0058 13.5358 13.9098 13.3638C13.8178 13.1878 13.6918 13.0438 13.5318 12.9318C13.3718 12.8198 13.1878 12.7398 12.9798 12.6918C12.7758 12.6398 12.5618 12.6138 12.3378 12.6138C12.1458 12.6138 11.9538 12.6398 11.7618 12.6918C11.5698 12.7438 11.3978 12.8238 11.2458 12.9318C11.0938 13.0398 10.9698 13.1758 10.8738 13.3398C10.7818 13.4998 10.7358 13.6898 10.7358 13.9098C10.7358 14.1058 10.7718 14.2738 10.8438 14.4138C10.9198 14.5498 11.0178 14.6638 11.1378 14.7558C11.2578 14.8478 11.3938 14.9238 11.5458 14.9838C11.6978 15.0398 11.8538 15.0878 12.0138 15.1278C12.1698 15.1718 12.3238 15.2118 12.4758 15.2478C12.6278 15.2838 12.7638 15.3258 12.8838 15.3738C13.0038 15.4218 13.0998 15.4818 13.1718 15.5538C13.2478 15.6258 13.2858 15.7198 13.2858 15.8358C13.2858 15.9438 13.2578 16.0338 13.2018 16.1058C13.1458 16.1738 13.0758 16.2278 12.9918 16.2678C12.9078 16.3078 12.8178 16.3358 12.7218 16.3518C12.6258 16.3638 12.5358 16.3698 12.4518 16.3698C12.3278 16.3698 12.2078 16.3558 12.0918 16.3278C11.9758 16.2958 11.8738 16.2498 11.7858 16.1898C11.7018 16.1258 11.6338 16.0438 11.5818 15.9438C11.5298 15.8438 11.5038 15.7218 11.5038 15.5778Z" fill="white"/>
|
||||
<path d="M16.7503 16.9998L18.1723 12.7158H17.2003L16.2343 15.7278H16.2223L15.2683 12.7158H14.3023L15.6883 16.9998H16.7503Z" fill="white"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2CA91F"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
5
finyx_data_frontend/src/assets/fileType/doc-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#3370FF"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2B5FD9"/>
|
||||
<path d="M15.1218 17.9996L17.4138 9.43164H16.2738L14.5338 16.5596H14.5098L12.6138 9.43164H11.3778L9.45784 16.5596H9.43384L7.75384 9.43164H6.58984L8.78584 17.9996H9.97384L11.9538 10.7996H11.9778L13.9338 17.9996H15.1218Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 777 B |
5
finyx_data_frontend/src/assets/fileType/docx-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#3370FF"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2B5FD9"/>
|
||||
<path d="M15.1218 17.9996L17.4138 9.43164H16.2738L14.5338 16.5596H14.5098L12.6138 9.43164H11.3778L9.45784 16.5596H9.43384L7.75384 9.43164H6.58984L8.78584 17.9996H9.97384L11.9538 10.7996H11.9778L13.9338 17.9996H15.1218Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 777 B |
6
finyx_data_frontend/src/assets/fileType/html-icon.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.00024 2.5C4.00024 1.94772 4.44796 1.5 5.00024 1.5H14.7931C14.9257 1.5 15.0529 1.55268 15.1467 1.64645L19.8538 6.35355C19.9476 6.44732 20.0002 6.5745 20.0002 6.70711V21.5C20.0002 22.0523 19.5525 22.5 19.0002 22.5H5.00024C4.44796 22.5 4.00024 22.0523 4.00024 21.5V2.5Z" fill="#D136D1"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.00024 2.5C4.00024 1.94772 4.44796 1.5 5.00024 1.5H14.7931C14.9257 1.5 15.0529 1.55268 15.1467 1.64645L19.8538 6.35355C19.9476 6.44732 20.0002 6.5745 20.0002 6.70711V21.5C20.0002 22.0523 19.5525 22.5 19.0002 22.5H5.00024C4.44796 22.5 4.00024 22.0523 4.00024 21.5V2.5Z" fill="#3370FF"/>
|
||||
<path d="M10.2966 11.4764L7.76958 14.1363L10.2966 16.7961C10.3873 16.8916 10.3857 17.0447 10.293 17.1381L10.292 17.1391L9.95252 17.4774C9.8597 17.5698 9.7118 17.5677 9.62149 17.4727L6.61239 14.3054C6.52308 14.2114 6.52308 14.0611 6.61239 13.9671L9.62149 10.7999C9.7118 10.7048 9.8597 10.7027 9.95252 10.7952L10.292 11.1335C10.3852 11.2263 10.3877 11.3794 10.2976 11.4754L10.2966 11.4764ZM16.3178 14.1363L13.9712 11.4764C13.887 11.381 13.8885 11.2278 13.9746 11.1344L13.9755 11.1335L14.2908 10.7952C14.3769 10.7027 14.5143 10.7048 14.5981 10.7999L17.3923 13.9671C17.4752 14.0611 17.4752 14.2114 17.3923 14.3054L14.5981 17.4727C14.5143 17.5677 14.3769 17.5698 14.2908 17.4774L13.9755 17.1391C13.8889 17.0462 13.8866 16.8931 13.9704 16.7971L13.9712 16.7961L16.3178 14.1363ZM12.6285 9.09234L13.1203 9.14509C13.2546 9.15949 13.3509 9.27213 13.3353 9.39669L12.1614 18.7083C12.1457 18.8327 12.0244 18.9219 11.8902 18.9075L11.3984 18.8547C11.2642 18.8403 11.1679 18.7277 11.1834 18.6031L12.3574 9.2915C12.373 9.16708 12.4944 9.07796 12.6285 9.09234Z" fill="white"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2B5FD9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
5
finyx_data_frontend/src/assets/fileType/md-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="40" height="42" viewBox="0 0 40 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.66663 5.16667C6.66663 4.24619 7.41282 3.5 8.33329 3.5H24.6548C24.8758 3.5 25.0878 3.5878 25.244 3.74408L33.0892 11.5893C33.2455 11.7455 33.3333 11.9575 33.3333 12.1785V36.8333C33.3333 37.7538 32.5871 38.5 31.6666 38.5H8.33329C7.41282 38.5 6.66663 37.7538 6.66663 36.8333V5.16667Z" fill="#14C0FF"/>
|
||||
<path d="M10 29.2051V21H12.0513L15.1282 24.0769L18.2051 21H20.2564V29.2051H18.2051V23.9026L15.1282 26.9795L12.0513 23.9026V29.2051H10ZM24.359 21H27.4359V25.1026H30L25.8974 29.7179L21.7949 25.1026H24.359V21Z" fill="white"/>
|
||||
<path d="M25 3.57495C25.09 3.6159 25.1728 3.67292 25.2441 3.74418L33.0893 11.5894C33.1605 11.6606 33.2175 11.7434 33.2585 11.8334H26.6667C25.7462 11.8334 25 11.0872 25 10.1668V3.57495Z" fill="#11A3D9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 839 B |
5
finyx_data_frontend/src/assets/fileType/pdf-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#F54A45"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#D03F3B"/>
|
||||
<path d="M17.6091 15.2316C17.3608 14.9368 16.8517 14.7934 16.0526 14.7934C15.5881 14.7934 15.027 14.8425 14.3839 14.9392C12.6276 13.6551 12.1372 12.2384 12.1372 12.2384C12.1372 12.2384 12.4371 11.4747 12.4562 10.2274C12.4682 9.43896 12.3461 8.9071 12.0307 8.59811C11.908 8.478 11.7023 8.40039 11.5066 8.40039C11.3539 8.40039 11.2109 8.44525 11.0937 8.53102C10.1806 9.19913 11.1775 12.3487 11.2041 12.4326C10.7733 13.4931 10.2305 14.6165 9.6718 15.6037C9.49028 15.9244 9.50797 15.8994 9.35494 16.1602C9.35494 16.1602 7.80983 16.8859 7.06037 17.7773C6.63691 18.281 6.58338 18.621 6.60586 18.8801L6.60643 18.8858C6.6421 19.1909 7.03273 19.4688 7.42598 19.4688C7.44229 19.4688 7.45871 19.4683 7.47478 19.4673C7.87445 19.4426 8.31243 19.1586 8.81374 18.5991C9.14462 18.2297 9.57462 17.5798 10.0924 16.6668C11.5778 16.2442 12.8851 15.9432 13.9807 15.7716C14.7842 16.204 15.9795 16.6936 16.7932 16.6936C17.0661 16.6936 17.2857 16.638 17.4458 16.5282C17.6373 16.397 17.7187 16.2334 17.7692 15.9306C17.8198 15.6278 17.7494 15.3982 17.6091 15.2316ZM15.8737 15.6003C16.5879 15.6003 16.9745 15.7041 17.1732 15.7912C17.2345 15.8181 17.279 15.844 17.3106 15.8657C17.2547 15.9014 17.1446 15.9466 16.9456 15.9466C16.6156 15.9466 16.1826 15.8314 15.6544 15.6034C15.7295 15.6013 15.8027 15.6003 15.8737 15.6003ZM11.6412 9.03253C11.6417 9.03159 11.6422 9.03062 11.6429 9.02961C11.7961 9.11028 11.8676 9.67679 11.8532 10.0053C11.8339 10.4461 11.8293 10.6164 11.752 10.8872C11.5422 10.3226 11.5273 9.30775 11.6412 9.03253ZM11.6972 13.5014C12.0575 14.0864 12.5917 14.7201 13.1065 15.1725C12.1018 15.3848 11.1372 15.651 10.537 15.8581C11.1803 14.7595 11.655 13.6103 11.6972 13.5014ZM7.56217 18.5462C7.64933 18.401 7.88748 18.1197 8.49143 17.5757C8.07746 18.1983 7.77338 18.5373 7.46488 18.7488C7.49042 18.6821 7.52255 18.6122 7.56217 18.5462Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
7
finyx_data_frontend/src/assets/fileType/txt-icon.svg
Executable file
@ -0,0 +1,7 @@
|
||||
<svg width="40" height="42" viewBox="0 0 40 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.66699 5.16667C6.66699 4.24619 7.41318 3.5 8.33366 3.5H24.6551C24.8762 3.5 25.0881 3.5878 25.2444 3.74408L33.0896 11.5893C33.2459 11.7455 33.3337 11.9575 33.3337 12.1785V36.8333C33.3337 37.7538 32.5875 38.5 31.667 38.5H8.33366C7.41318 38.5 6.66699 37.7538 6.66699 36.8333V5.16667Z" fill="#3370FF"/>
|
||||
<path d="M25.0532 21.8466H22.9132V20.5266H28.7632V21.8466H26.6232V27.6666H25.0532V21.8466Z" fill="white"/>
|
||||
<path d="M18.5533 23.9266L16.2533 20.5266H18.0733L19.4733 22.8066L20.9233 20.5266H22.6433L20.3533 23.9366L22.8433 27.6666H20.9733L19.4133 25.1966L17.8233 27.6666H16.0633L18.5533 23.9266Z" fill="white"/>
|
||||
<path d="M12.27 21.8466H10.13V20.5266H15.98V21.8466H13.84V27.6666H12.27V21.8466Z" fill="white"/>
|
||||
<path d="M25 3.57495C25.09 3.6159 25.1728 3.67292 25.2441 3.74418L33.0893 11.5894C33.1605 11.6606 33.2175 11.7434 33.2585 11.8334H26.6667C25.7462 11.8334 25 11.0872 25 10.1668V3.57495Z" fill="#2B5FD9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
5
finyx_data_frontend/src/assets/fileType/unknow-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#8F959E"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#646A73"/>
|
||||
<path d="M14.288 9.86441C13.7422 9.34739 13.026 9.09082 12.1353 9.09082C11.1347 9.09082 10.3505 9.41162 9.78235 10.065C9.30108 10.6265 9.04179 11.1646 9.00471 12.013C9.00384 12.033 9.00309 12.0697 9.00247 12.1122C9.00043 12.2508 9.11287 12.3635 9.25147 12.3635H9.84253C9.98 12.3635 10.0914 12.2525 10.0936 12.1151C10.0943 12.0737 10.0951 12.038 10.0961 12.0189C10.1251 11.4328 10.278 11.1262 10.5508 10.7851C10.8953 10.3259 11.4006 10.0999 12.0943 10.0999C12.7134 10.0999 13.1776 10.2578 13.4979 10.5782C13.8033 10.8963 13.9625 11.3294 13.9625 11.8726C13.9625 12.2435 13.8281 12.5967 13.5549 12.948C13.4678 13.0568 13.3425 13.1862 12.9388 13.5899C12.3012 14.1474 11.9073 14.601 11.6993 15.0468C11.5282 15.3888 11.441 15.7775 11.441 16.1954V16.4772C11.441 16.6153 11.5529 16.7272 11.691 16.7272H12.2956C12.4336 16.7272 12.5456 16.6153 12.5456 16.4772V16.1954C12.5456 15.8413 12.6327 15.5237 12.8133 15.2141C12.9486 14.9841 13.1223 14.8038 13.4251 14.5389C14.0321 13.9897 14.3689 13.6625 14.5198 13.4705C14.8821 12.9923 15.0671 12.4446 15.0671 11.8454C15.0671 11.0185 14.8075 10.355 14.288 9.86441ZM11.7046 17.8181C11.5666 17.8181 11.4546 17.93 11.4546 18.0681V18.659C11.4546 18.7971 11.5666 18.909 11.7046 18.909H12.2956C12.4336 18.909 12.5456 18.7971 12.5456 18.659V18.0681C12.5456 17.93 12.4336 17.8181 12.2956 17.8181H11.7046Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
5
finyx_data_frontend/src/assets/fileType/xls-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#34C724"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2CA91F"/>
|
||||
<path d="M11.308 13.5956L8.33203 17.9996H9.60403L11.98 14.4596L14.284 17.9996H15.676L12.664 13.5956L15.496 9.43164H14.224L11.992 12.7796L9.85603 9.43164H8.48803L11.308 13.5956Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 735 B |
5
finyx_data_frontend/src/assets/fileType/xlsx-icon.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#34C724"/>
|
||||
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2CA91F"/>
|
||||
<path d="M11.308 13.5956L8.33203 17.9996H9.60403L11.98 14.4596L14.284 17.9996H15.676L12.664 13.5956L15.496 9.43164H14.224L11.992 12.7796L9.85603 9.43164H8.48803L11.308 13.5956Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 735 B |
6
finyx_data_frontend/src/assets/fileType/zip-icon.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.00024 2.5C4.00024 1.94772 4.44796 1.5 5.00024 1.5H14.7931C14.9257 1.5 15.0529 1.55268 15.1467 1.64645L19.8538 6.35355C19.9476 6.44732 20.0002 6.5745 20.0002 6.70711V21.5C20.0002 22.0523 19.5525 22.5 19.0002 22.5H5.00024C4.44796 22.5 4.00024 22.0523 4.00024 21.5V2.5Z" fill="#D136D1"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.00024 2.5C4.00024 1.94772 4.44796 1.5 5.00024 1.5H14.7931C14.9257 1.5 15.0529 1.55268 15.1467 1.64645L19.8538 6.35355C19.9476 6.44732 20.0002 6.5745 20.0002 6.70711V21.5C20.0002 22.0523 19.5525 22.5 19.0002 22.5H5.00024C4.44796 22.5 4.00024 22.0523 4.00024 21.5V2.5Z" fill="#3370FF"/>
|
||||
<path d="M15 1.72408C15 1.6402 15.0871 1.58714 15.1464 1.64646L19.8536 6.35357C19.9129 6.41288 19.8598 6.50001 19.7759 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.72408Z" fill="#2B5FD9"/>
|
||||
<path d="M10.5347 6.53465H9.26733V7.80198H10.5347V9.06931H9.26733V10.3366H10.5347V11.604H9.26733V12.8317H10.5347V16H8V11.604H9.26733V10.3366H8V9.06931H9.26733V7.80198H8V6.53465H9.26733V5.26733H8V4H9.26733V5.26733H10.5347V6.53465Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
12
finyx_data_frontend/src/assets/icon_document.svg
Executable file
@ -0,0 +1,12 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_332_3845)">
|
||||
<path opacity="0.5" d="M11.5903 10.7326C11.5903 8.64041 13.2864 6.9444 15.3785 6.9444C17.4706 6.9444 19.1667 8.64042 19.1667 10.7326V15.3784C19.1667 17.4705 17.4706 19.1666 15.3785 19.1666C13.2864 19.1666 11.5903 17.4705 11.5903 15.3784V10.7326Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.6212 0.833374H14.6211V2.36113H13.1059V0.833374H2.83347C1.72892 0.833374 0.833495 1.72878 0.833474 2.83333L0.833313 11.1665C0.833228 15.5848 4.41497 19.1666 8.83331 19.1666H15.1666C15.5076 19.1666 15.8387 19.1239 16.1547 19.0436C15.2624 18.7368 14.6212 17.8902 14.6212 16.8937V0.833374ZM4.51881 6.35876C4.51881 5.89468 4.89501 5.51848 5.35909 5.51848H10.3457C10.8098 5.51848 11.186 5.89468 11.186 6.35876C11.186 6.82283 10.8098 7.19904 10.3457 7.19904H5.35909C4.89501 7.19904 4.51881 6.82283 4.51881 6.35876ZM5.35909 9.4398C4.89501 9.4398 4.51881 9.816 4.51881 10.2801C4.51881 10.7441 4.89501 11.1204 5.35909 11.1204H10.3457C10.8098 11.1204 11.186 10.7441 11.186 10.2801C11.186 9.816 10.8098 9.4398 10.3457 9.4398H5.35909Z" fill="white"/>
|
||||
<ellipse cx="13.1058" cy="2.36108" rx="1.51527" ry="1.52776" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_332_3845">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
10
finyx_data_frontend/src/assets/icon_send.svg
Executable file
@ -0,0 +1,10 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="fasong" clip-path="url(#clip0_49_2314)">
|
||||
<path id="Vector" d="M15.9336 0.507096L1.33141 4.9984C0.315312 5.311 0.130512 6.6694 1.02631 7.2421L5.34061 10C5.56496 10.1434 5.8293 10.2112 6.09498 10.1936C6.36065 10.176 6.61373 10.0739 6.81721 9.9022L12.2019 5.3584C12.4938 5.1121 12.8877 5.5057 12.6414 5.7979L8.09791 11.1835C7.92622 11.3869 7.82413 11.64 7.80659 11.9056C7.78905 12.1713 7.85697 12.4355 8.00041 12.6598L10.7577 16.9735C11.3301 17.869 12.6888 17.6842 13.0014 16.6684L17.4927 2.0665C17.787 1.1092 16.8906 0.212796 15.9336 0.507096Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_49_2314">
|
||||
<rect width="18" height="18" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 774 B |
14
finyx_data_frontend/src/assets/icon_send_colorful.svg
Executable file
@ -0,0 +1,14 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.1716 1.68834C20.6753 1.53273 21.0458 2.16193 20.6652 2.52691L12.2658 10.5836C11.0058 11.7921 9.32754 12.4668 7.5817 12.4668C5.68044 12.4668 3.8669 11.667 2.58487 10.263L1.45879 9.02985C1.33225 8.90313 1.24137 8.74527 1.19534 8.5722C1.14931 8.39913 1.14974 8.21698 1.19661 8.04413C1.24347 7.87129 1.3351 7.71386 1.46225 7.58775C1.5894 7.46164 1.74757 7.3713 1.92079 7.32585L20.1716 1.68834Z" fill="url(#paint0_linear_987_5140)"/>
|
||||
<path d="M12 16.1851C12 14.2766 12.7377 12.4419 14.0588 11.0646L21.4664 3.34177C21.8268 2.96601 22.4499 3.32266 22.3084 3.82374L17.143 22.1182C17.0971 22.291 17.0064 22.4487 16.8801 22.5754C16.7538 22.7021 16.5964 22.7932 16.4237 22.8397C16.251 22.8862 16.0691 22.8864 15.8964 22.8402C15.7236 22.794 15.566 22.7031 15.4395 22.5767L14.4439 21.6791C12.8881 20.2764 12 18.2799 12 16.1851Z" fill="url(#paint1_linear_987_5140)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_987_5140" x1="22.3289" y1="13.1532" x2="1.16113" y2="13.1532" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9258F7"/>
|
||||
<stop offset="1" stop-color="#3370FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_987_5140" x1="22.3289" y1="13.1532" x2="1.16113" y2="13.1532" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9258F7"/>
|
||||
<stop offset="1" stop-color="#3370FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
4
finyx_data_frontend/src/assets/icon_web.svg
Executable file
@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.5 2H21.5C22.0523 2 22.5 2.44772 22.5 3V17C22.5 17.5523 22.0523 18 21.5 18H2.5C1.94772 18 1.5 17.5523 1.5 17V3C1.5 2.44772 1.94772 2 2.5 2ZM3.5 14V16H20.5V14H3.5Z" fill="white"/>
|
||||
<path d="M6.5 20H17.5C17.7761 20 18 20.2239 18 20.5V21.5C18 21.7761 17.7761 22 17.5 22H6.5C6.22386 22 6 21.7761 6 21.5V20.5C6 20.2239 6.22386 20 6.5 20Z" fill="#D8D8D8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 464 B |
6
finyx_data_frontend/src/assets/icons/aicz.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M1.62598 4.25147C1.62543 3.85812 1.70254 3.46852 1.85291 3.10501C2.00327 2.74149 2.22393 2.4112 2.50224 2.13306C2.78054 1.85492 3.11103 1.63439 3.47476 1.48412C3.83849 1.33385 4.22832 1.25678 4.6219 1.25733H17.8915C19.5376 1.25733 20.8864 2.60736 20.8759 4.25042V11.2204C20.8743 11.4513 20.7817 11.6724 20.6183 11.8357C20.4549 11.999 20.2337 12.0915 20.0026 12.0932C19.888 12.0934 19.7744 12.0711 19.6685 12.0274C19.5625 11.9837 19.4662 11.9195 19.3852 11.8384C19.3041 11.7574 19.2399 11.6612 19.1961 11.5553C19.1524 11.4494 19.13 11.336 19.1303 11.2214V4.25147C19.1284 3.92371 18.9972 3.60992 18.7653 3.37816C18.5334 3.14639 18.2195 3.01534 17.8915 3.01342H4.6219C4.29395 3.01534 3.97997 3.14639 3.74807 3.37816C3.51617 3.60992 3.38504 3.92371 3.38311 4.25147V17.5257C3.38311 18.2049 3.94334 18.7638 4.6219 18.7638H10.6033C10.834 18.7657 11.0548 18.8582 11.218 19.0212C11.3811 19.1843 11.4736 19.4049 11.4756 19.6356C11.4758 19.7501 11.4535 19.8636 11.4097 19.9695C11.366 20.0754 11.3017 20.1716 11.2207 20.2526C11.1396 20.3336 11.0434 20.3978 10.9374 20.4415C10.8315 20.4852 10.7179 20.5076 10.6033 20.5073H4.6219C4.22841 20.5077 3.83869 20.4306 3.47508 20.2802C3.11147 20.1299 2.78111 19.9093 2.50291 19.6312C2.22472 19.3531 2.00415 19.0228 1.85386 18.6594C1.70356 18.296 1.62648 17.9064 1.62703 17.5132V4.25147H1.62598Z" fill="currentColor"/>
|
||||
<path id="Vector_2" d="M16.8512 14.2463C16.8126 14.1111 16.7312 13.9949 16.6212 13.9181C16.4893 13.8195 16.3318 13.7686 16.1714 13.7727C16.0104 13.7663 15.852 13.8174 15.7206 13.9181C15.6165 14.0016 15.5367 14.1155 15.4907 14.2463L13.7766 19.6283C13.6794 19.9303 13.7037 20.1654 13.8496 20.3098C13.9823 20.4411 14.1535 20.5067 14.3591 20.5067C14.5658 20.5067 14.737 20.4542 14.8454 20.3372C14.9602 20.2289 15.0444 20.0878 15.0885 19.9303L15.4177 18.9982H16.8998L17.2645 19.9685C17.3109 20.1076 17.3857 20.2336 17.4833 20.3372C17.6083 20.4534 17.7694 20.514 17.9341 20.5067H17.9706C18.1575 20.5141 18.34 20.4436 18.4801 20.3098C18.627 20.1665 18.6513 19.9434 18.5774 19.6535L16.8512 14.2452V14.2463ZM16.6081 17.6724H15.7206L16.1714 16.1235L16.6081 17.6724ZM20.6805 13.9313C20.5589 13.8252 20.3887 13.7727 20.182 13.7727C19.7454 13.7727 19.5134 14.0352 19.5134 14.4946V19.7727C19.5134 19.9959 19.5631 20.1797 19.6725 20.2978C19.7819 20.4291 19.9521 20.4947 20.182 20.4947C20.414 20.4947 20.5964 20.4291 20.7058 20.3109C20.8152 20.1928 20.876 20.009 20.876 19.7727V14.4957C20.876 14.2332 20.803 14.0483 20.6815 13.9302L20.6805 13.9313ZM17.0578 6.79025L14.737 4.28302C14.6559 4.19478 14.5592 4.12495 14.4528 4.07761C14.3463 4.03027 14.2321 4.00638 14.117 4.00735C14.0019 4.00638 13.8877 4.03027 13.7812 4.07761C13.6748 4.12495 13.5781 4.19478 13.497 4.28302L6.579 11.7391C6.4484 11.873 6.35925 12.0472 6.32371 12.2379L5.76452 15.3348C5.7403 15.4786 5.74866 15.6267 5.78887 15.7663C5.82909 15.9059 5.89998 16.0329 5.99549 16.1366C6.1531 16.3089 6.36688 16.4079 6.59115 16.4123C6.63978 16.4123 6.6884 16.4123 6.73703 16.3991L9.61912 15.8609C9.80713 15.8338 9.98197 15.7417 10.1175 15.5984L17.0578 8.11607C17.1397 8.02856 17.2046 7.92425 17.2486 7.80928C17.2926 7.69431 17.3149 7.571 17.3141 7.44659C17.316 7.32397 17.2941 7.20227 17.25 7.08927C17.2059 6.97626 17.1404 6.87443 17.0578 6.79025ZM13.1313 9.78318L9.13185 14.115L7.67308 14.3907L7.95267 12.8669L11.9643 8.53503L13.1313 9.78209V9.78318ZM15.2952 7.44659L14.3226 8.49674L13.1556 7.23656L14.1281 6.18641L15.2952 7.44659Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
7
finyx_data_frontend/src/assets/icons/airs.svg
Executable file
@ -0,0 +1,7 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M9.75788 17.5528C12.9094 16.8268 15.072 16.9324 18.3544 17.9081C18.6734 18.0038 18.9187 18.259 18.9946 18.578C19.0318 18.7355 19.0262 18.9001 18.9782 19.0547C18.9302 19.2092 18.8417 19.3481 18.7218 19.4569C18.6006 19.5668 18.4531 19.6436 18.2935 19.6799C18.134 19.7161 17.9678 19.7105 17.811 19.6637C15.0192 18.8321 13.2405 18.7067 10.7325 19.2193L10.3508 19.3018L9.77988 19.436C7.26748 20.0553 4.92778 20.052 2.77178 19.425C2.65471 19.3923 2.54532 19.3367 2.45001 19.2613C2.35469 19.1859 2.27537 19.0923 2.21668 18.9858C2.15799 18.8794 2.12111 18.7624 2.1082 18.6415C2.09529 18.5207 2.1066 18.3985 2.14148 18.2821C2.21599 18.0471 2.37988 17.8508 2.59781 17.7356C2.81573 17.6203 3.07022 17.5954 3.30638 17.6661C5.01798 18.1644 6.88248 18.1941 8.91528 17.7497L9.75788 17.5517V17.5528ZM18.2983 18.0962C15.0478 17.1293 12.9193 17.0248 9.80078 17.7442L8.95598 17.9411C7.16848 18.3316 5.50418 18.3613 3.95758 18.0313L3.60228 17.9488L3.25028 17.8531C3.06357 17.7974 2.86249 17.8172 2.69016 17.9081C2.51784 17.9989 2.38799 18.1537 2.32848 18.3393C2.30136 18.4309 2.29277 18.5271 2.30321 18.6221C2.31366 18.7171 2.34293 18.809 2.38933 18.8926C2.43572 18.9762 2.4983 19.0497 2.57341 19.1088C2.64852 19.1679 2.73465 19.2114 2.82678 19.2369C4.82328 19.8188 6.98258 19.8551 9.29808 19.3469L10.3068 19.1104C13.0568 18.4966 14.9048 18.5934 17.866 19.4767C18.1201 19.5515 18.3962 19.4888 18.5898 19.3117C18.6786 19.2318 18.7459 19.1307 18.7852 19.0179C18.8246 18.905 18.8348 18.7841 18.815 18.6662C18.7951 18.5484 18.7458 18.4375 18.6716 18.3438C18.5974 18.2501 18.5008 18.1766 18.3907 18.1303L18.2983 18.0962ZM16.7671 2.11976C19.5611 1.92836 20.704 3.37816 19.2993 5.30096C18.5161 6.37346 16.8705 7.68136 15.1688 8.61526L14.6474 8.89686C14.5286 8.96259 14.4137 9.03494 14.3031 9.11356L14.214 9.18176L14.28 9.22136C14.5484 9.36986 14.9873 9.53706 15.5527 9.70096L15.7705 9.76146L15.9993 9.82196L16.3117 9.89896C16.5419 9.95104 16.7432 10.0899 16.8737 10.2865C17.0042 10.4832 17.0539 10.7226 17.0124 10.955C16.6164 13.0692 14.7178 14.1626 11.4948 14.2275L11.1879 14.2297L10.6819 14.2407C8.16948 14.3474 5.97168 15.2395 4.04778 16.9357C3.89756 17.0669 3.7099 17.1475 3.51133 17.1663C3.31276 17.1851 3.11331 17.1409 2.94118 17.0402C2.76994 16.9414 2.63554 16.7895 2.55833 16.6075C2.48112 16.4255 2.46531 16.2233 2.51328 16.0315C4.65938 7.59006 9.32338 2.91726 16.403 2.15606L16.7671 2.12086V2.11976ZM19.1409 5.18546C20.4015 3.45956 19.4753 2.19896 16.9805 2.30346L16.7803 2.31446L16.4228 2.34966C9.43228 3.10206 4.82988 7.71216 2.70248 16.0799C2.66491 16.2306 2.67755 16.3896 2.7385 16.5325C2.79945 16.6754 2.90537 16.7946 3.04018 16.8719C3.31958 17.0358 3.67598 17.0017 3.91798 16.7883C5.78248 15.146 7.90328 14.2418 10.3112 14.0658L10.6742 14.0438L11.1868 14.035C14.5154 14.035 16.4316 12.9878 16.821 10.9198C16.8508 10.7544 16.8216 10.5838 16.7386 10.4377C16.6556 10.2916 16.524 10.1792 16.3667 10.1201L16.2666 10.0893L15.952 10.0123C15.0687 9.78566 14.4076 9.54036 14.0765 9.32696L13.994 9.26866L13.9896 9.11686L14.0908 9.02996C14.1788 8.95846 14.2888 8.88256 14.4175 8.80446L14.5528 8.72526L14.7574 8.61306C16.546 7.68466 18.3291 6.29756 19.1409 5.18546ZM17.9738 3.69606C18.1905 3.70706 18.2664 3.81156 18.1927 3.97766L18.1575 4.04146L17.9375 4.34946C17.3567 5.14366 16.0675 6.18866 14.6991 6.99056L14.4241 7.14786L14.0622 7.34146C12.6322 8.08396 12.0954 8.89246 12.531 9.75706L12.5926 9.87036L12.6938 10.0189C13.0238 10.4523 13.6365 10.8076 14.5935 11.1244L14.8399 11.2025L14.9994 11.2509L15.0511 11.4005L14.9763 11.505C14.445 12.1463 13.4209 12.5016 11.8677 12.5775L11.5707 12.5885L10.6379 12.605C8.82288 12.6644 7.04858 13.133 5.45248 13.969L5.11258 14.1527L4.96738 14.2385L4.82438 14.1208L4.95308 13.76C7.14538 7.69346 10.9921 4.39236 16.5592 3.78846L16.9024 3.75546L17.7813 3.69496H17.9738V3.69606ZM18.0013 3.89076H17.7879L16.9189 3.95016C11.3617 4.43636 7.50838 7.57356 5.27428 13.4542L5.09718 13.9382L5.36118 13.7952C6.87281 13.005 8.53312 12.54 10.2353 12.4301L10.6313 12.4103L11.563 12.3938C13.136 12.3542 14.1755 12.0484 14.7222 11.494L14.808 11.3983L14.7816 11.3917C13.7333 11.0705 13.037 10.7075 12.6289 10.2499L12.5332 10.1344L12.4254 9.97706C11.8314 8.98156 12.3473 8.06526 13.785 7.26886L14.3284 6.97736C15.6814 6.22166 17.0014 5.19426 17.6548 4.39236L17.7758 4.23506L18.0123 3.90616L18.0288 3.88856L17.9991 3.89186L18.0013 3.89076Z" fill="currentColor"/>
|
||||
<path id="Vector_2" d="M16.7752 2.21771C9.51739 2.85461 4.77529 7.52851 2.60719 16.0557C2.51919 16.4055 2.67319 16.7707 2.98999 16.9555C3.14432 17.0458 3.32312 17.0854 3.50115 17.0686C3.67917 17.0518 3.84744 16.9796 3.98219 16.862C5.92369 15.1515 8.14349 14.2506 10.6757 14.1428L11.1861 14.1318C14.4971 14.1318 16.5101 13.0978 16.916 10.9374C16.9528 10.7298 16.9082 10.516 16.7914 10.3404C16.6747 10.1648 16.4947 10.041 16.289 9.99471L15.9755 9.91771C14.9657 9.65811 14.3156 9.39301 14.0527 9.19171L14.1517 9.10591C14.2606 9.01791 14.4091 8.91781 14.5994 8.81111L14.8018 8.70001C16.5706 7.78261 18.3823 6.38781 19.2194 5.24271C20.5537 3.41671 19.5208 2.02851 16.773 2.21771H16.7752ZM14.3772 7.06211L14.0164 7.25461C12.582 8.00041 11.8956 8.89471 12.5116 9.92541L12.615 10.0772C12.9956 10.5777 13.7183 10.9627 14.8117 11.2971L14.9701 11.3444L14.8997 11.4434C14.3673 12.0858 13.2904 12.4466 11.5667 12.4906L10.6339 12.5071C8.67786 12.5704 6.76624 13.1063 5.06239 14.0691L4.91719 14.1538L5.04479 13.793C7.27449 7.62311 11.2092 4.35171 16.9072 3.85231L17.7795 3.79291H17.9665C18.1414 3.80391 18.1568 3.85561 18.0765 3.98541L17.8565 4.29121C17.2405 5.13381 15.8182 6.25691 14.3761 7.05991V7.06211H14.3772ZM9.34579 17.7519C12.7778 16.9049 14.9701 17.0039 18.3273 18.0016C18.6133 18.0874 18.8322 18.3151 18.8993 18.6C18.9326 18.7405 18.9276 18.8874 18.8849 19.0254C18.8421 19.1633 18.7631 19.2873 18.6562 19.3843C18.5475 19.4831 18.4152 19.5521 18.272 19.5846C18.1288 19.6172 17.9796 19.6122 17.8389 19.5702C14.9558 18.7122 13.1177 18.5835 10.3281 19.2072L9.75609 19.3403C7.26569 19.9552 4.94249 19.9552 2.79969 19.3304C2.69519 19.3013 2.59753 19.2517 2.5124 19.1845C2.42727 19.1172 2.35638 19.0337 2.30386 18.9388C2.25133 18.8439 2.21823 18.7395 2.20647 18.6316C2.19472 18.5238 2.20455 18.4147 2.23539 18.3107C2.30252 18.1004 2.44949 17.9249 2.6447 17.8218C2.83992 17.7188 3.06778 17.6964 3.27929 17.7596C5.11849 18.2953 7.13479 18.2953 9.34799 17.7497L9.34579 17.7519Z" fill="currentColor"/>
|
||||
<path id="Vector_3" d="M2.68575 1.94944C2.6543 1.79452 2.43175 1.79452 2.40029 1.94944C2.2865 2.51118 2.00899 3.02667 1.60274 3.43097C1.19648 3.83527 0.679652 4.11028 0.11737 4.22135C-0.0391234 4.25202 -0.0391234 4.47379 0.11737 4.50524C0.679652 4.61632 1.19648 4.89133 1.60274 5.29562C2.00899 5.69992 2.2865 6.21541 2.40029 6.77715C2.43096 6.93207 2.6543 6.93207 2.68575 6.77715C2.79954 6.21541 3.07705 5.69992 3.48331 5.29562C3.88956 4.89133 4.40639 4.61632 4.96867 4.50524C5.12438 4.47457 5.12438 4.25281 4.96867 4.22135C4.40639 4.11028 3.88956 3.83527 3.48331 3.43097C3.07705 3.02667 2.79954 2.51118 2.68575 1.94944Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.0 KiB |
5
finyx_data_frontend/src/assets/icons/aizs.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M18.9871 7.45076L18.7616 7.9696C18.7263 8.05408 18.6669 8.12625 18.5907 8.17701C18.5145 8.22778 18.425 8.25486 18.3335 8.25486C18.242 8.25486 18.1525 8.22778 18.0763 8.17701C18.0001 8.12625 17.9407 8.05408 17.9054 7.9696L17.6799 7.45076C17.2832 6.53308 16.5572 5.79725 15.6449 5.38826L14.9492 5.07751C14.8648 5.03868 14.7932 4.97647 14.7431 4.89824C14.693 4.82001 14.6664 4.72905 14.6664 4.63614C14.6664 4.54323 14.693 4.45227 14.7431 4.37404C14.7932 4.29581 14.8648 4.23359 14.9492 4.19476L15.6064 3.90235C16.542 3.48226 17.2806 2.71903 17.6698 1.77018L17.9017 1.2101C17.9358 1.12334 17.9952 1.04885 18.0722 0.996352C18.1492 0.943852 18.2403 0.915771 18.3335 0.915771C18.4267 0.915771 18.5177 0.943852 18.5948 0.996352C18.6718 1.04885 18.7312 1.12334 18.7652 1.2101L18.9972 1.76926C19.386 2.71829 20.1242 3.48185 21.0597 3.90235L21.7178 4.19568C21.802 4.23462 21.8732 4.29683 21.9232 4.37496C21.9731 4.45308 21.9996 4.54387 21.9996 4.6366C21.9996 4.72932 21.9731 4.82011 21.9232 4.89824C21.8732 4.97637 21.802 5.03857 21.7178 5.07751L21.0212 5.38735C20.1091 5.79674 19.3834 6.5329 18.9871 7.45076ZM9.16683 2.7501H12.8335V4.58343H9.16683C7.70814 4.58343 6.30919 5.16289 5.27774 6.19434C4.24629 7.22579 3.66683 8.62474 3.66683 10.0834C3.66683 13.3926 5.92366 15.5523 11.0002 17.8568V15.5834H12.8335C14.2922 15.5834 15.6911 15.004 16.7226 13.9725C17.754 12.9411 18.3335 11.5421 18.3335 10.0834H20.1668C20.1668 11.0465 19.9771 12.0001 19.6086 12.8898C19.2401 13.7795 18.6999 14.5879 18.0189 15.2689C17.338 15.9498 16.5296 16.49 15.6398 16.8585C14.7501 17.2271 13.7965 17.4168 12.8335 17.4168V20.6251C8.25016 18.7918 1.8335 16.0418 1.8335 10.0834C1.8335 9.1204 2.02318 8.1668 2.39171 7.27708C2.76025 6.38736 3.30042 5.57894 3.98138 4.89798C4.66234 4.21702 5.47076 3.67685 6.36048 3.30831C7.2502 2.93978 8.2038 2.7501 9.16683 2.7501Z" fill="currentColor"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
14
finyx_data_frontend/src/assets/icons/bg1.svg
Executable file
@ -0,0 +1,14 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 427319073">
|
||||
<g id="Form (表格)">
|
||||
<path id="Vector" d="M15.9999 4.66663H3.99992C3.63173 4.66663 3.33325 4.9651 3.33325 5.33329V14.6666C3.33325 15.0348 3.63173 15.3333 3.99992 15.3333H15.9999C16.3681 15.3333 16.6666 15.0348 16.6666 14.6666V5.33329C16.6666 4.9651 16.3681 4.66663 15.9999 4.66663Z" stroke="#333333" stroke-width="1.33333" stroke-linejoin="round"/>
|
||||
<path id="Vector_2" d="M3.33325 11.6666H16.6666" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_3" d="M3.33325 8.33337H16.6666" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_4" d="M7.66675 15.3334V8.33337" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_5" d="M3.33325 14.6666V7.66663" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_6" d="M16.6667 14.6666V7.66663" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_7" d="M12.3333 15.3334V8.33337" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_8" d="M5 15.3334H15" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
15
finyx_data_frontend/src/assets/icons/bg2.svg
Executable file
@ -0,0 +1,15 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 427319073">
|
||||
<rect width="20" height="20" rx="2" fill="#3067EF"/>
|
||||
<g id="Form (表格)">
|
||||
<path id="Vector" d="M15.9999 4.66675H3.99992C3.63173 4.66675 3.33325 4.96522 3.33325 5.33341V14.6667C3.33325 15.0349 3.63173 15.3334 3.99992 15.3334H15.9999C16.3681 15.3334 16.6666 15.0349 16.6666 14.6667V5.33341C16.6666 4.96522 16.3681 4.66675 15.9999 4.66675Z" stroke="white" stroke-width="1.33333" stroke-linejoin="round"/>
|
||||
<path id="Vector_2" d="M3.33325 11.6667H16.6666" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_3" d="M3.33325 8.33325H16.6666" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_4" d="M7.66675 15.3333V8.33325" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_5" d="M3.33325 14.6667V7.66675" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_6" d="M16.6667 14.6667V7.66675" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_7" d="M12.3333 15.3333V8.33325" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_8" d="M5 15.3333H15" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
5
finyx_data_frontend/src/assets/icons/bianji.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M9.20213 1.31413L9.25021 1.36097L11.3747 3.53956C11.5921 3.7624 11.718 4.0622 11.7265 4.37732C11.735 4.69244 11.6254 4.99892 11.4203 5.23374L11.375 5.28304L5.17649 11.6392C4.96778 11.8532 4.68958 11.981 4.39492 11.9981L4.32671 12H1.90146C1.67158 12 1.45037 11.91 1.28308 11.7483C1.11579 11.5866 1.01507 11.3654 1.0015 11.1301L1 11.0756V8.58883C0.999984 8.28603 1.10866 7.99382 1.3053 7.76793L1.35217 7.71708L7.55034 1.36097C7.76767 1.13813 8.05999 1.00912 8.3672 1.00047C8.67442 0.991811 8.9732 1.10417 9.20213 1.31444V1.31413ZM12.6995 10.7425C12.7792 10.7425 12.8556 10.7749 12.912 10.8327C12.9683 10.8905 13 10.9689 13 11.0506V11.6669C13 11.7074 12.9922 11.7474 12.9771 11.7848C12.962 11.8222 12.9399 11.8562 12.912 11.8848C12.8841 11.9134 12.851 11.9361 12.8145 11.9516C12.778 11.9671 12.739 11.975 12.6995 11.975H7.8917C7.85224 11.975 7.81316 11.9671 7.77671 11.9516C7.74025 11.9361 7.70712 11.9134 7.67922 11.8848C7.65132 11.8562 7.62918 11.8222 7.61408 11.7848C7.59898 11.7474 7.59121 11.7074 7.59121 11.6669V11.0506C7.59121 10.9689 7.62287 10.8905 7.67922 10.8327C7.73557 10.7749 7.812 10.7425 7.8917 10.7425H12.6995ZM6.70026 3.97558L2.20195 8.58821V10.7668L4.32671 10.7671L8.82502 6.15417L6.70026 3.97497V3.97558ZM12.6995 8.27729C12.739 8.27729 12.778 8.28526 12.8145 8.30075C12.851 8.31624 12.8841 8.33893 12.912 8.36755C12.9399 8.39616 12.962 8.43013 12.9771 8.46752C12.9922 8.5049 13 8.54497 13 8.58544V9.20173C13 9.28345 12.9683 9.36183 12.912 9.41962C12.8556 9.47741 12.7792 9.50988 12.6995 9.50988H10.2956C10.2159 9.50988 10.1395 9.47741 10.0831 9.41962C10.0268 9.36183 9.99512 9.28345 9.99512 9.20173V8.58544C9.99512 8.54497 10.0029 8.5049 10.018 8.46752C10.0331 8.43013 10.0552 8.39616 10.0831 8.36755C10.111 8.33893 10.1442 8.31624 10.1806 8.30075C10.2171 8.28526 10.2561 8.27729 10.2956 8.27729H12.6995ZM8.40013 2.2324L7.55064 3.10384L9.6751 5.28243L10.5249 4.4113L8.40043 2.2324H8.40013Z" fill="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
8
finyx_data_frontend/src/assets/icons/bt1.svg
Executable file
@ -0,0 +1,8 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 427319072">
|
||||
<g id="Chart-proportion (占比图)">
|
||||
<path id="Vector" d="M7.44812 3.83923C6.63325 4.17712 5.89995 4.67195 5.28587 5.28603C4.07945 6.49247 3.33325 8.15914 3.33325 10.0001C3.33325 13.682 6.31802 16.6667 9.99992 16.6667C11.8409 16.6667 13.5075 15.9205 14.714 14.7141C15.3281 14.1 15.8229 13.3667 16.1608 12.5519" stroke="#333333" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_2" d="M10 10H16.6667C16.6667 6.31814 13.6819 3.33337 10 3.33337V10Z" stroke="#333333" stroke-width="1.33333" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 736 B |
9
finyx_data_frontend/src/assets/icons/bt2.svg
Executable file
@ -0,0 +1,9 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 427319072">
|
||||
<rect width="20" height="20" rx="2" fill="#3067EF"/>
|
||||
<g id="Chart-proportion (占比图)">
|
||||
<path id="Vector" d="M7.44812 3.83923C6.63325 4.17712 5.89995 4.67195 5.28587 5.28603C4.07945 6.49247 3.33325 8.15914 3.33325 10.0001C3.33325 13.682 6.31802 16.6667 9.99992 16.6667C11.8409 16.6667 13.5075 15.9205 14.714 14.7141C15.3281 14.1 15.8229 13.3667 16.1608 12.5519" stroke="white" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path id="Vector_2" d="M10 10H16.6667C16.6667 6.31814 13.6819 3.33337 10 3.33337V10Z" stroke="white" stroke-width="1.33333" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 785 B |
6
finyx_data_frontend/src/assets/icons/chakan.svg
Executable file
@ -0,0 +1,6 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M2.52708 12.4879C1.91577 12.4879 1.50391 11.9773 1.50391 11.46V2.52917C1.50391 1.98891 1.96364 1.51172 2.52708 1.51172H11.4556C11.968 1.51172 12.4801 1.93306 12.4801 2.52917V4.93353C12.4801 5.22073 12.2463 5.45435 11.9591 5.45435C11.6759 5.45435 11.445 5.22348 11.445 4.94001V2.54686H2.53906V11.4526H6.4423C6.7295 11.4526 6.96336 11.6864 6.96336 11.9736C6.96336 12.2571 6.7325 12.488 6.44878 12.488L2.52708 12.4879Z" fill="white"/>
|
||||
<path id="Vector_2" d="M11.9655 12.4814C11.8085 12.4814 11.6609 12.4093 11.5606 12.2837L10.2931 10.622C9.93363 10.7988 9.52674 10.892 9.11139 10.892C7.60803 10.892 6.3849 9.66888 6.3849 8.16552C6.3849 6.66242 7.60803 5.4393 9.11139 5.4393C10.6142 5.4393 11.8374 6.66242 11.8374 8.16552C11.8374 8.85886 11.5816 9.50956 11.1154 10.0082L12.3724 11.6527C12.4537 11.7579 12.4896 11.8905 12.4726 12.0259C12.4562 12.1585 12.3834 12.2827 12.2742 12.3669C12.1944 12.439 12.0827 12.4814 11.9655 12.4814ZM9.11139 6.46123C8.17148 6.46123 7.4071 7.22562 7.4071 8.16552C7.4071 9.10542 8.17149 9.86982 9.11139 9.86982C10.0513 9.86982 10.8157 9.10542 10.8157 8.16552C10.8157 7.22562 10.0513 6.46123 9.11139 6.46123ZM3.73322 10.0045C3.44601 10.0045 3.21265 9.77085 3.21265 9.48364C3.21265 9.19644 3.446 8.96258 3.73322 8.96258H4.87258C5.15978 8.96258 5.39364 9.19644 5.39364 9.48364C5.39364 9.77085 5.15978 10.0045 4.87258 10.0045H3.73322ZM3.73322 7.51433C3.44601 7.51433 3.21265 7.28047 3.21265 6.99327C3.21265 6.70606 3.446 6.47245 3.73322 6.47245H5.80002C6.08723 6.47245 6.32059 6.70606 6.32059 6.99327C6.31261 7.28671 6.08076 7.51433 5.79305 7.51433H3.73322ZM3.73322 5.01746C3.44601 5.01746 3.21265 4.78361 3.21265 4.4964C3.21265 4.2092 3.446 3.97559 3.73322 3.97559H10.0917C10.3789 3.97559 10.6122 4.2092 10.6122 4.4964C10.6122 4.78361 10.3789 5.01746 10.0917 5.01746H3.73322Z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
10
finyx_data_frontend/src/assets/icons/chaoshi.svg
Executable file
@ -0,0 +1,10 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="chaoshi" clip-path="url(#clip0_167_15628)">
|
||||
<path id="Vector" d="M12 0C5.38393 0 0 5.38393 0 12C0 18.6161 5.38393 24 12 24C18.6161 24 24 18.6161 24 12C24 5.38393 18.6161 0 12 0ZM12.0134 19.3661H11.9839C11.0089 19.3661 10.2188 18.5759 10.2188 17.6009C10.2188 16.6259 11.0089 15.8357 11.9839 15.8357H12.0134C12.9884 15.8357 13.7786 16.6259 13.7786 17.6009C13.7786 18.5759 12.9884 19.3661 12.0134 19.3661ZM13.5536 12.6134C13.5134 13.4464 12.825 14.1 11.992 14.1C11.1563 14.1 10.4705 13.4437 10.4304 12.6107L10.1464 6.57857C10.1036 5.68661 10.8161 4.94196 11.708 4.94196H12.292C13.1866 4.94196 13.8991 5.68929 13.8536 6.58393L13.5536 12.6134Z" fill="#DE2626"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_167_15628">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 875 B |
10
finyx_data_frontend/src/assets/icons/cs.svg
Executable file
@ -0,0 +1,10 @@
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="chaoshi" clip-path="url(#clip0_171_22862)">
|
||||
<path id="Vector" d="M6 0C2.69196 0 0 2.69196 0 6C0 9.30804 2.69196 12 6 12C9.30804 12 12 9.30804 12 6C12 2.69196 9.30804 0 6 0ZM6.0067 9.68304H5.99196C5.50446 9.68304 5.10938 9.28795 5.10938 8.80045C5.10938 8.31295 5.50446 7.91786 5.99196 7.91786H6.0067C6.4942 7.91786 6.88929 8.31295 6.88929 8.80045C6.88929 9.28795 6.4942 9.68304 6.0067 9.68304ZM6.77679 6.3067C6.7567 6.72321 6.4125 7.05 5.99598 7.05C5.57813 7.05 5.23527 6.72187 5.21518 6.30536L5.07321 3.28929C5.05179 2.8433 5.40804 2.47098 5.85402 2.47098H6.14598C6.5933 2.47098 6.94955 2.84464 6.92679 3.29196L6.77679 6.3067Z" fill="#DE2626"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_171_22862">
|
||||
<rect width="12" height="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 863 B |
1
finyx_data_frontend/src/assets/icons/cx.svg
Executable file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.82843 6.99955L8.36396 9.53509L6.94975 10.9493L2 5.99955L6.94975 1.0498L8.36396 2.46402L5.82843 4.99955H13C17.4183 4.99955 21 8.58127 21 12.9996C21 17.4178 17.4183 20.9996 13 20.9996H4V18.9996H13C16.3137 18.9996 19 16.3133 19 12.9996C19 9.68584 16.3137 6.99955 13 6.99955H5.82843Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 367 B |
7
finyx_data_frontend/src/assets/icons/cxjg.svg
Executable file
@ -0,0 +1,7 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M13 1.25C13.4475 1.24997 13.8781 1.42139 14.2031 1.72903C14.5281 2.03667 14.7229 2.45714 14.7475 2.904L14.75 3V8C14.7499 8.19261 14.6757 8.3778 14.5428 8.51719C14.4099 8.65659 14.2284 8.73951 14.036 8.74876C13.8437 8.75802 13.6551 8.6929 13.5094 8.56691C13.3637 8.44092 13.2721 8.26371 13.2535 8.072L13.25 8V3C13.25 2.94149 13.2295 2.88482 13.1921 2.83987C13.1546 2.79492 13.1026 2.76453 13.045 2.754L13 2.75H3C2.94149 2.74998 2.88482 2.77049 2.83987 2.80794C2.79492 2.8454 2.76453 2.89744 2.754 2.955L2.75 3V13C2.74998 13.0585 2.77049 13.1152 2.80794 13.1601C2.8454 13.2051 2.89744 13.2355 2.955 13.246L3 13.25H8C8.19261 13.2501 8.3778 13.3243 8.51719 13.4572C8.65659 13.5901 8.73951 13.7716 8.74876 13.964C8.75802 14.1563 8.6929 14.3449 8.56691 14.4906C8.44092 14.6363 8.26371 14.7279 8.072 14.7465L8 14.75H3C2.55247 14.75 2.12193 14.5786 1.7969 14.271C1.47187 13.9633 1.27705 13.5429 1.2525 13.096L1.25 13V3C1.24997 2.55247 1.42139 2.12193 1.72903 1.7969C2.03667 1.47187 2.45714 1.27705 2.904 1.2525L3 1.25H13Z" fill="#3067EF"/>
|
||||
<path id="Vector_2" d="M10.6665 7.9165C10.3054 7.9165 9.94777 7.98763 9.61412 8.12584C9.28048 8.26404 8.97732 8.4666 8.72196 8.72196C8.4666 8.97732 8.26404 9.28048 8.12584 9.61412C7.98763 9.94777 7.9165 10.3054 7.9165 10.6665C7.9165 11.0276 7.98763 11.3852 8.12584 11.7189C8.26404 12.0525 8.4666 12.3557 8.72196 12.611C8.97732 12.8664 9.28048 13.069 9.61412 13.2072C9.94777 13.3454 10.3054 13.4165 10.6665 13.4165C11.3958 13.4165 12.0953 13.1268 12.611 12.611C13.1268 12.0953 13.4165 11.3958 13.4165 10.6665C13.4165 9.93716 13.1268 9.23769 12.611 8.72196C12.0953 8.20624 11.3958 7.9165 10.6665 7.9165ZM10.6665 9.4165C10.8307 9.4165 10.9932 9.44884 11.1449 9.51165C11.2965 9.57447 11.4343 9.66655 11.5504 9.78262C11.6665 9.89869 11.7585 10.0365 11.8214 10.1881C11.8842 10.3398 11.9165 10.5024 11.9165 10.6665C11.9165 10.8307 11.8842 10.9932 11.8214 11.1449C11.7585 11.2965 11.6665 11.4343 11.5504 11.5504C11.4343 11.6665 11.2965 11.7585 11.1449 11.8214C10.9932 11.8842 10.8307 11.9165 10.6665 11.9165C10.335 11.9165 10.017 11.7848 9.78262 11.5504C9.5482 11.316 9.4165 10.998 9.4165 10.6665C9.4165 10.335 9.5482 10.017 9.78262 9.78262C10.017 9.5482 10.335 9.4165 10.6665 9.4165Z" fill="#3067EF"/>
|
||||
<path id="Vector_3" d="M11.7476 11.5315C11.8636 11.3865 12.0292 11.2897 12.2125 11.2597C12.3957 11.2298 12.5835 11.2689 12.7396 11.3695L12.8021 11.4145L14.4686 12.7475C14.6202 12.8672 14.7198 13.0407 14.7466 13.2319C14.7734 13.4231 14.7255 13.6173 14.6127 13.7741C14.5 13.9309 14.3311 14.0381 14.1413 14.0735C13.9514 14.1088 13.7553 14.0696 13.5936 13.964L13.5316 13.919L11.8651 12.5855C11.7098 12.4613 11.6102 12.2805 11.5881 12.0828C11.5661 11.8852 11.6235 11.6869 11.7476 11.5315ZM11.3336 4.5835C11.5262 4.58359 11.7114 4.65778 11.8508 4.7907C11.9902 4.92362 12.0731 5.10507 12.0824 5.29745C12.0916 5.48984 12.0265 5.67841 11.9005 5.8241C11.7745 5.96978 11.5973 6.06141 11.4056 6.08L11.3336 6.0835H4.66662C4.47401 6.0834 4.28882 6.00921 4.14943 5.87629C4.01003 5.74338 3.92712 5.56192 3.91786 5.36954C3.9086 5.17715 3.97372 4.98858 4.09971 4.8429C4.2257 4.69721 4.40291 4.60558 4.59462 4.587L4.66662 4.5835H11.3336ZM7.33362 7.25C7.52623 7.25009 7.71142 7.32428 7.85082 7.4572C7.99021 7.59012 8.07313 7.77157 8.08238 7.96395C8.09164 8.15634 8.02653 8.34491 7.90053 8.4906C7.77454 8.63628 7.59733 8.72791 7.40562 8.7465L7.33362 8.75H4.66662C4.47401 8.7499 4.28882 8.67571 4.14943 8.54279C4.01003 8.40987 3.92712 8.22842 3.91786 8.03604C3.9086 7.84365 3.97372 7.65508 4.09971 7.5094C4.2257 7.36371 4.40291 7.27208 4.59462 7.2535L4.66662 7.25H7.33362Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
1
finyx_data_frontend/src/assets/icons/cz.svg
Executable file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.1716 6.99955H11C7.68629 6.99955 5 9.68584 5 12.9996C5 16.3133 7.68629 18.9996 11 18.9996H20V20.9996H11C6.58172 20.9996 3 17.4178 3 12.9996C3 8.58127 6.58172 4.99955 11 4.99955H18.1716L15.636 2.46402L17.0503 1.0498L22 5.99955L17.0503 10.9493L15.636 9.53509L18.1716 6.99955Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 361 B |
10
finyx_data_frontend/src/assets/icons/daochu.svg
Executable file
@ -0,0 +1,10 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame" clip-path="url(#clip0_70_17024)">
|
||||
<path id="Vector" d="M12.3756 2.44514C12.2852 2.36093 12.1843 2.26713 12.0752 2.16612C11.7636 1.87746 11.4493 1.58878 11.1521 1.31917C11.1186 1.28874 11.1186 1.28874 11.085 1.25832C10.6884 0.89935 10.3577 0.60671 10.1133 0.400499C9.97027 0.279851 9.8577 0.189502 9.77499 0.129906C9.72009 0.0903521 9.67546 0.0618618 9.63145 0.040998C9.57602 0.0147231 9.52435 -0.00128555 9.45147 8.10521e-05C9.25648 0.0037372 9.1 0.160909 9.1 0.357967V1.05756V1.75715V3.15633V3.50613H9.45H12.25L11.9 3.15633V13.6502L12.25 13.3004H3.14975C2.569 13.3004 2.1 12.8327 2.1 12.2528V0.357967L1.75 0.707763H8.05C8.2433 0.707763 8.4 0.551154 8.4 0.357967C8.4 0.16478 8.2433 0.00817126 8.05 0.00817126H1.75H1.4V0.357967V12.2528C1.4 13.2195 2.18275 14 3.14975 14H12.25H12.6V13.6502V3.15633V2.80654H12.25H9.45L9.8 3.15633V1.75715V1.05756V0.357967C9.8 0.544329 9.6489 0.696094 9.4646 0.699549C9.40223 0.700719 9.36619 0.689555 9.33144 0.673083C9.32777 0.671339 9.34261 0.680813 9.36564 0.697406C9.43058 0.744194 9.53129 0.825028 9.66173 0.935077C9.89856 1.13489 10.2241 1.42287 10.615 1.77682C10.6483 1.80699 10.6483 1.80699 10.6816 1.83718C10.9768 2.10498 11.2894 2.39209 11.5994 2.67923C11.7079 2.77975 11.8084 2.87307 11.8982 2.95681C11.9521 3.00701 11.9905 3.04289 12.0107 3.06184C12.1518 3.1939 12.3733 3.18666 12.5054 3.04566C12.6376 2.90466 12.6303 2.6833 12.4893 2.55124C12.4685 2.5318 12.4299 2.4957 12.3756 2.44514ZM1.4 6.30449H0V12.251H7H14V6.30449H2.1V6.29632H1.4V6.30449ZM4.77695 9.20391H3.1418V10.4289H5.05312V10.9812H2.45V7H5.03398V7.55781H3.1418V8.65703H4.77695V9.20391ZM6.98633 8.43828L7.82305 7H8.62148L7.41836 8.97422L8.64883 10.9812H7.84219L6.98633 9.52109L6.12773 10.9812H5.32383L6.55703 8.97422L5.35117 7H6.14961L6.98633 8.43828ZM9.85195 10.4289H11.6594V10.9812H9.16016V7H9.85195V10.4289Z" fill="#333333"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_70_17024">
|
||||
<rect width="14" height="14" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
5
finyx_data_frontend/src/assets/icons/daochuzip.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M6.0484 2L7.2484 3.22222H12.4C12.5591 3.22222 12.7117 3.28661 12.8243 3.40121C12.9368 3.51582 13 3.67126 13 3.83333V12.3889C13 12.551 12.9368 12.7064 12.8243 12.821C12.7117 12.9356 12.5591 13 12.4 13H1.6C1.44087 13 1.28826 12.9356 1.17574 12.821C1.06321 12.7064 1 12.551 1 12.3889V2.61111C1 2.44903 1.06321 2.2936 1.17574 2.17899C1.28826 2.06438 1.44087 2 1.6 2H6.0484ZM10.6 11.1667H8.2V9.33333H9.4V8.11111H8.2V6.88889H9.4V5.66667H8.2V4.44444H6.7516L5.5516 3.22222H2.2V11.7778H11.8V4.44444H9.4V5.66667H10.6V6.88889H9.4V8.11111H10.6V11.1667Z" fill="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 703 B |
5
finyx_data_frontend/src/assets/icons/delete.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Union" d="M8.91113 0.97876C9.57756 0.97876 10.1123 1.51951 10.1123 2.17993V3.38013H12.5137C12.7778 3.38013 12.994 3.59643 13 3.8606C13 3.99247 12.9461 4.11238 12.8623 4.20239C12.7722 4.28645 12.6516 4.34106 12.5195 4.34106H11.7451L11.3369 11.7854C11.3369 12.4518 10.8267 12.9865 10.1963 12.9866H3.79004C3.15367 12.9865 2.64355 12.4518 2.64355 11.7854L2.23535 4.34106H1.4668C1.20263 4.34106 0.986328 4.12476 0.986328 3.8606C0.986329 3.72273 1.0402 3.60283 1.12402 3.5188C1.21408 3.43475 1.33471 3.38013 1.4668 3.38013H3.86816V2.17993C3.86816 1.51951 4.40891 0.97876 5.06934 0.97876H8.91113ZM3.59766 11.7375V11.7913C3.59766 11.9354 3.69412 12.0315 3.78418 12.0315H10.1963C10.2803 12.0314 10.376 11.9353 10.376 11.7913V11.7375L10.7783 4.34692H3.20215L3.59766 11.7375ZM5.7832 5.96802C6.04737 5.96802 6.26367 6.18432 6.26367 6.44849V9.81079C6.26348 10.0748 6.05325 10.2903 5.7832 10.2903C5.51924 10.2902 5.30293 10.0747 5.30273 9.81079V6.44849C5.30273 6.18438 5.51912 5.96813 5.7832 5.96802ZM8.18457 5.96802C8.44874 5.96802 8.66504 6.18432 8.66504 6.44849V9.81079C8.66485 10.0748 8.45462 10.2903 8.18457 10.2903C7.92069 10.2901 7.70527 10.0747 7.70508 9.81079V6.44849C7.70508 6.18444 7.92057 5.96822 8.18457 5.96802ZM3.20215 4.34106H10.7783V4.33521H3.20215V4.34106ZM5.06934 1.9397C4.93725 1.9397 4.8291 2.04785 4.8291 2.17993V3.38013L9.15137 3.37427V2.17993C9.15137 2.04785 9.04322 1.9397 8.91113 1.9397H5.06934Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
1
finyx_data_frontend/src/assets/icons/dq.svg
Executable file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4H21V6H3V4ZM3 19H17V21H3V19ZM3 14H21V16H3V14ZM3 9H17V11H3V9Z"></path></svg>
|
||||
|
After Width: | Height: | Size: 148 B |
3
finyx_data_frontend/src/assets/icons/dsj.svg
Executable file
@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<path fill="none" d="M0 0h24v24H0z"></path><path d="M12 14L8 10H16L12 14Z"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 155 B |
12
finyx_data_frontend/src/assets/icons/duihao.svg
Executable file
@ -0,0 +1,12 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 26699">
|
||||
<g clip-path="url(#clip0_264_8799)">
|
||||
<path id="Subtract" fill-rule="evenodd" clip-rule="evenodd" d="M7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0ZM11.541 5.5194C11.8279 5.22059 11.8182 4.74582 11.5194 4.45896C11.2206 4.1721 10.7458 4.18179 10.459 4.4806L6.2 8.91702L3.54104 6.14727C3.25419 5.84846 2.77941 5.83877 2.4806 6.12563C2.18179 6.41248 2.1721 6.88726 2.45896 7.18607L5.65896 10.5194C5.80039 10.6667 5.99578 10.75 6.2 10.75C6.40422 10.75 6.59961 10.6667 6.74104 10.5194L11.541 5.5194Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_264_8799">
|
||||
<rect width="14" height="14" rx="7" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 811 B |
12
finyx_data_frontend/src/assets/icons/duihao1.svg
Executable file
@ -0,0 +1,12 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame 26699">
|
||||
<g clip-path="url(#clip0_264_8799)">
|
||||
<path id="Subtract" fill-rule="evenodd" clip-rule="evenodd" d="M7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0ZM11.541 5.5194C11.8279 5.22059 11.8182 4.74582 11.5194 4.45896C11.2206 4.1721 10.7458 4.18179 10.459 4.4806L6.2 8.91702L3.54104 6.14727C3.25419 5.84846 2.77941 5.83877 2.4806 6.12563C2.18179 6.41248 2.1721 6.88726 2.45896 7.18607L5.65896 10.5194C5.80039 10.6667 5.99578 10.75 6.2 10.75C6.40422 10.75 6.59961 10.6667 6.74104 10.5194L11.541 5.5194Z" fill="#D9D9D9"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_264_8799">
|
||||
<rect width="14" height="14" rx="7" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 811 B |
5
finyx_data_frontend/src/assets/icons/edit.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M9.20213 1.31413L9.25021 1.36097L11.3747 3.53956C11.5921 3.7624 11.718 4.0622 11.7265 4.37732C11.735 4.69244 11.6254 4.99892 11.4203 5.23374L11.375 5.28304L5.17649 11.6392C4.96778 11.8532 4.68958 11.981 4.39492 11.9981L4.32671 12H1.90146C1.67158 12 1.45037 11.91 1.28308 11.7483C1.11579 11.5866 1.01507 11.3654 1.0015 11.1301L1 11.0756V8.58883C0.999984 8.28603 1.10866 7.99382 1.3053 7.76793L1.35217 7.71708L7.55034 1.36097C7.76767 1.13813 8.05999 1.00912 8.3672 1.00047C8.67442 0.991811 8.9732 1.10417 9.20213 1.31444V1.31413ZM12.6995 10.7425C12.7792 10.7425 12.8556 10.7749 12.912 10.8327C12.9683 10.8905 13 10.9689 13 11.0506V11.6669C13 11.7074 12.9922 11.7474 12.9771 11.7848C12.962 11.8222 12.9399 11.8562 12.912 11.8848C12.8841 11.9134 12.851 11.9361 12.8145 11.9516C12.778 11.9671 12.739 11.975 12.6995 11.975H7.8917C7.85224 11.975 7.81316 11.9671 7.77671 11.9516C7.74025 11.9361 7.70712 11.9134 7.67922 11.8848C7.65132 11.8562 7.62918 11.8222 7.61408 11.7848C7.59898 11.7474 7.59121 11.7074 7.59121 11.6669V11.0506C7.59121 10.9689 7.62287 10.8905 7.67922 10.8327C7.73557 10.7749 7.812 10.7425 7.8917 10.7425H12.6995ZM6.70026 3.97558L2.20195 8.58821V10.7668L4.32671 10.7671L8.82502 6.15417L6.70026 3.97497V3.97558ZM12.6995 8.27729C12.739 8.27729 12.778 8.28526 12.8145 8.30075C12.851 8.31624 12.8841 8.33893 12.912 8.36755C12.9399 8.39616 12.962 8.43013 12.9771 8.46752C12.9922 8.5049 13 8.54497 13 8.58544V9.20173C13 9.28345 12.9683 9.36183 12.912 9.41962C12.8556 9.47741 12.7792 9.50988 12.6995 9.50988H10.2956C10.2159 9.50988 10.1395 9.47741 10.0831 9.41962C10.0268 9.36183 9.99512 9.28345 9.99512 9.20173V8.58544C9.99512 8.54497 10.0029 8.5049 10.018 8.46752C10.0331 8.43013 10.0552 8.39616 10.0831 8.36755C10.111 8.33893 10.1442 8.31624 10.1806 8.30075C10.2171 8.28526 10.2561 8.27729 10.2956 8.27729H12.6995ZM8.40013 2.2324L7.55064 3.10384L9.6751 5.28243L10.5249 4.4113L8.40043 2.2324H8.40013Z" fill="#3067EF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
134
finyx_data_frontend/src/assets/icons/empty1.svg
Executable file
@ -0,0 +1,134 @@
|
||||
<svg width="312" height="298" viewBox="0 0 312 298" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="empty1">
|
||||
<path id="Vector 478" d="M17 52V170L220 166.5V77H171V0H76.5V52H17Z" fill="url(#paint0_linear_93_4942)"/>
|
||||
<path id="Vector 479" d="M235.5 52V164.5H274.5V52H235.5Z" fill="url(#paint1_linear_93_4942)"/>
|
||||
<path id="<Path>" d="M156 298C242.156 298 312 263.302 312 220.5C312 177.698 242.156 143 156 143C69.8436 143 0 177.698 0 220.5C0 263.302 69.8436 298 156 298Z" fill="url(#paint2_linear_93_4942)"/>
|
||||
<g id="Group 26648">
|
||||
<path id="Path 25711" d="M156.838 179.689L152.7 180.155L151.174 170.771L155.312 170.305L156.838 179.689Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25712" d="M175.364 180.593H171.232L170.203 171.024H174.335L175.364 180.593Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25713" d="M170.892 180.112H175.929C176.011 180.112 176.09 180.14 176.154 180.191C176.218 180.242 176.263 180.314 176.281 180.394L177.097 184.067C177.116 184.156 177.115 184.249 177.093 184.338C177.071 184.427 177.03 184.51 176.972 184.58C176.914 184.651 176.84 184.708 176.757 184.746C176.674 184.784 176.583 184.803 176.492 184.802C174.871 184.774 173.692 184.679 171.648 184.679C170.392 184.679 166.604 184.809 164.87 184.809C163.17 184.809 162.909 183.094 163.619 182.939C166.803 182.239 169.202 181.282 170.219 180.366C170.404 180.201 170.644 180.11 170.892 180.112Z" fill="#263238"/>
|
||||
<path id="Path 25714" d="M152.632 179.446L157.116 178.938C157.197 178.928 157.28 178.947 157.349 178.991C157.419 179.034 157.471 179.1 157.498 179.178L158.723 182.735C158.754 182.821 158.765 182.913 158.755 183.004C158.745 183.095 158.714 183.182 158.665 183.259C158.616 183.336 158.55 183.401 158.472 183.449C158.394 183.497 158.306 183.526 158.215 183.535C156.595 183.691 154.247 183.861 152.215 184.092C149.838 184.362 149.442 184.998 146.638 184.933C144.938 184.893 144.512 183.168 145.225 183.033C148.473 182.402 149.101 181.911 151.682 179.885C151.952 179.653 152.281 179.501 152.632 179.446V179.446Z" fill="#263238"/>
|
||||
<path id="Path 25715" d="M156.282 59.177C154.894 60.323 153.528 61.319 152.115 62.339C150.702 63.359 149.259 64.306 147.774 65.225C146.289 66.144 144.765 67.025 143.167 67.825C141.533 68.6714 139.833 69.3811 138.082 69.947C137.619 70.095 137.168 70.217 136.648 70.347C136.14 70.4573 135.625 70.5397 135.108 70.594C134.177 70.694 133.301 70.739 132.428 70.779C130.688 70.859 128.981 70.857 127.276 70.845C123.866 70.804 120.485 70.64 117.089 70.34L117.038 67.24C120.373 66.811 123.723 66.44 127.038 66.067C128.695 65.887 130.348 65.685 131.963 65.474C132.763 65.365 133.563 65.237 134.301 65.1C134.618 65.044 134.932 64.9703 135.241 64.879C135.532 64.779 135.889 64.665 136.219 64.532C137.636 63.9567 139.012 63.2837 140.336 62.518C141.707 61.731 143.079 60.886 144.427 59.988C145.775 59.09 147.117 58.16 148.447 57.211C149.777 56.262 151.106 55.257 152.354 54.311L156.282 59.177Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25716" d="M160.321 55.6449C159.727 59.5509 151.503 65.5259 151.503 65.5259L145.603 58.2029C148.188 55.4446 150.928 52.8366 153.811 50.3919C156.466 48.2219 160.967 51.3949 160.321 55.6449Z" fill="#407BFF"/>
|
||||
<path id="Path 25717" d="M118.176 67.567L115.83 65.897L115.573 71.173C115.928 71.1739 116.277 71.088 116.591 70.9227C116.905 70.7575 117.173 70.5179 117.373 70.225L118.176 67.567Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25718" d="M113.711 64.3608L113.231 69.5318L115.575 71.1728L115.832 65.8968L113.711 64.3608Z" fill="#FFC3BD"/>
|
||||
<g id="Group 26641">
|
||||
<path id="Path 25719" opacity="0.2" d="M151.176 170.774L151.962 175.611L156.101 175.145L155.315 170.308L151.176 170.774Z" fill="black"/>
|
||||
<path id="Path 25720" opacity="0.2" d="M174.337 171.025H170.203L170.735 175.957H174.869L174.337 171.025Z" fill="black"/>
|
||||
</g>
|
||||
<path id="Path 25721" d="M174.396 50.5172C174.704 50.5862 174.995 50.716 175.251 50.8991C175.508 51.0822 175.726 51.3148 175.891 51.5833C176.057 51.8517 176.167 52.1506 176.216 52.4623C176.264 52.7739 176.249 53.0921 176.173 53.3981C175.276 57.1196 174.601 60.8909 174.149 64.6921C173.758 67.8921 173.524 70.9491 173.378 73.7201C173.035 80.2151 173.178 85.1661 172.984 86.8441C169.753 86.6201 157.577 85.7731 150.938 85.3091C148.697 67.7651 151.323 56.5691 152.798 52.0201C153.024 51.3113 153.446 50.6812 154.016 50.2032C154.587 49.7252 155.281 49.419 156.018 49.3201C156.864 49.2091 157.876 49.1021 158.944 49.0391C159.318 49.0151 159.697 49.0021 160.083 48.9941C163.217 49.0312 166.347 49.2489 169.456 49.6461C170.046 49.7161 170.642 49.8031 171.222 49.8961C172.381 50.0901 173.483 50.3132 174.396 50.5172Z" fill="#346AE1"/>
|
||||
<path id="Path 25722" d="M169.265 39.0332C168.465 42.0072 167.487 47.4912 169.457 49.6512C164.347 53.0882 161.085 57.9272 160.144 56.8762C159.651 56.3262 159.437 49.9612 160.085 48.9972C163.504 48.4292 163.591 45.9282 163.169 43.5442L169.265 39.0332Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25723" d="M169.061 48.418C169.061 48.418 160.734 52.103 159.63 60.343C161.924 57.687 166.991 54.797 166.991 54.797L164.756 54.155C166.177 53.6155 167.649 53.2196 169.149 52.973C168.901 51.835 170.223 49.565 170.223 49.565L169.061 48.418Z" fill="#407BFF"/>
|
||||
<path id="Path 25724" d="M161.548 48.2852C161.548 48.2852 162.658 52.9912 159.631 60.3432C159.034 57.7771 158.216 55.2677 157.185 52.8432L159.224 53.3982C159.224 53.3982 159.124 52.4492 157.473 51.1872C158.161 50.1879 159.019 49.317 160.008 48.6142L161.548 48.2852Z" fill="#407BFF"/>
|
||||
<path id="Path 25725" opacity="0.2" d="M166.78 40.874L163.172 43.542C163.279 44.0972 163.337 44.6607 163.345 45.226C164.645 45.126 166.505 43.843 166.736 42.508C166.849 41.9705 166.864 41.4169 166.78 40.874V40.874Z" fill="black"/>
|
||||
<path id="Path 25726" d="M158.684 30.421C156.669 30.508 155.557 33.982 157.602 36.843C159.647 39.704 161.399 30.304 158.684 30.421Z" fill="#263238"/>
|
||||
<path id="Path 25727" d="M168.621 33.4779C168.86 37.5719 169.208 39.9549 167.406 42.2879C164.696 45.7969 159.456 44.5389 157.999 40.5989C156.688 37.0529 156.517 30.9539 160.299 28.8589C161.131 28.3925 162.068 28.1466 163.022 28.1445C163.976 28.1425 164.914 28.3844 165.748 28.8473C166.582 29.3101 167.284 29.9786 167.787 30.7891C168.29 31.5995 168.577 32.5251 168.621 33.4779V33.4779Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25728" d="M169.222 36.6241C168.127 35.9823 167.171 35.1292 166.41 34.1144C165.648 33.0996 165.096 31.9434 164.785 30.7131C163.585 30.9971 157.604 33.7491 155.765 30.7131C153.926 27.6771 156.24 25.8961 159.681 27.7651C158.159 25.0791 159.543 23.765 164.325 23.649C169.107 23.533 168.464 26.3051 168.464 26.3051C168.464 26.3051 172.084 24.7291 173.364 27.5051C174.847 30.6951 172.111 36.1421 169.222 36.6241Z" fill="#263238"/>
|
||||
<path id="Path 25729" d="M167.646 25.5722C167.69 25.5722 169.457 25.9972 171.493 23.9482C171.128 25.6962 167.966 26.8602 167.966 26.8602L167.646 25.5722Z" fill="#263238"/>
|
||||
<path id="Path 25730" d="M170.022 31.5609C168.115 30.9019 165.806 33.7269 166.659 37.1379C167.512 40.5489 172.591 32.4489 170.022 31.5609Z" fill="#263238"/>
|
||||
<path id="Path 25731" d="M171.101 36.8829C170.926 37.8996 170.356 38.8057 169.515 39.4029C168.394 40.1849 167.384 39.2909 167.315 37.9969C167.257 36.8329 167.769 35.0229 169.076 34.7559C169.363 34.7023 169.659 34.7212 169.936 34.8109C170.214 34.9007 170.465 35.0584 170.666 35.2697C170.867 35.4811 171.012 35.7393 171.088 36.021C171.164 36.3028 171.169 36.599 171.101 36.8829V36.8829Z" fill="#FFC3BD"/>
|
||||
<g id="Group 26642">
|
||||
<path id="Path 25732" d="M157.152 131.863C158.145 119.777 165.429 86.3201 165.429 86.3201L150.935 85.3091C150.935 85.3091 145.346 118.52 144.918 131.124C144.472 144.229 149.743 173.355 149.743 173.355L156.694 172.564C156.694 172.564 156.155 143.999 157.152 131.863Z" fill="#407BFF"/>
|
||||
<path id="Path 25733" opacity="0.5" d="M157.152 131.863C158.145 119.777 165.429 86.3201 165.429 86.3201L150.935 85.3091C150.935 85.3091 145.346 118.52 144.918 131.124C144.472 144.229 149.743 173.355 149.743 173.355L156.694 172.564C156.694 172.564 156.155 143.999 157.152 131.863Z" fill="white"/>
|
||||
</g>
|
||||
<path id="Path 25734" opacity="0.2" d="M159.969 97.6499C157.047 101.386 156.995 114.507 158.125 124.201C159.202 117.208 160.899 108.327 162.386 100.924L159.969 97.6499Z" fill="black"/>
|
||||
<g id="Group 26643">
|
||||
<path id="Path 25735" d="M158.756 85.854C158.756 85.854 160.32 121.229 162.065 133.209C163.975 146.328 168.826 175.001 168.826 175.001H176.394C176.394 175.001 175.149 147.995 174.15 135.106C173.013 120.425 172.982 86.846 172.982 86.846L158.756 85.854Z" fill="#407BFF"/>
|
||||
<path id="Path 25736" opacity="0.5" d="M158.756 85.854C158.756 85.854 160.32 121.229 162.065 133.209C163.975 146.328 168.826 175.001 168.826 175.001H176.394C176.394 175.001 175.149 147.995 174.15 135.106C173.013 120.425 172.982 86.846 172.982 86.846L158.756 85.854Z" fill="white"/>
|
||||
</g>
|
||||
<path id="Path 25737" d="M167.916 175.162H176.827V172.5L166.866 172.327L167.916 175.162Z" fill="#407BFF"/>
|
||||
<path id="Path 25738" d="M149.44 174.138L157.724 173.199L157.424 170.522L148.147 171.431L149.44 174.138Z" fill="#407BFF"/>
|
||||
<path id="Path 25739" d="M162.593 35.3551C162.633 35.6861 162.493 35.9751 162.273 36.0011C162.053 36.0271 161.849 35.7801 161.81 35.4491C161.771 35.1181 161.91 34.8291 162.13 34.8031C162.35 34.7771 162.554 35.0241 162.593 35.3551Z" fill="#263238"/>
|
||||
<path id="Path 25740" d="M158.854 35.8039C158.894 36.1349 158.754 36.4238 158.534 36.4498C158.314 36.4758 158.11 36.2289 158.07 35.8979C158.03 35.5669 158.17 35.2779 158.39 35.2519C158.61 35.2259 158.814 35.4769 158.854 35.8039Z" fill="#263238"/>
|
||||
<path id="Path 25741" d="M160.062 35.8262C159.789 36.8849 159.372 37.9011 158.822 38.8462C159.067 38.9806 159.339 39.0598 159.618 39.0783C159.897 39.0968 160.177 39.0541 160.438 38.9532L160.062 35.8262Z" fill="#ED847E"/>
|
||||
<path id="Path 25742" d="M163.61 34.0063C163.575 34.0168 163.538 34.0176 163.503 34.0086C163.468 33.9996 163.436 33.9812 163.41 33.9553C163.245 33.7734 163.039 33.6333 162.809 33.5464C162.579 33.4595 162.331 33.4283 162.087 33.4553C162.036 33.4639 161.984 33.4524 161.941 33.4234C161.898 33.3943 161.869 33.3498 161.858 33.2993C161.853 33.274 161.853 33.2479 161.858 33.2225C161.863 33.1972 161.873 33.1731 161.888 33.1518C161.902 33.1304 161.921 33.1122 161.943 33.0982C161.964 33.0842 161.989 33.0747 162.014 33.0703C162.322 33.0303 162.636 33.0651 162.928 33.1716C163.22 33.2781 163.483 33.4532 163.693 33.6823C163.729 33.7195 163.749 33.7692 163.749 33.8208C163.749 33.8724 163.729 33.922 163.693 33.9593C163.67 33.9817 163.641 33.9978 163.61 34.0063V34.0063Z" fill="#263238"/>
|
||||
<path id="Path 25744" d="M157.095 34.7103C157.056 34.7234 157.013 34.7234 156.974 34.7103C156.926 34.6924 156.886 34.6565 156.863 34.6101C156.841 34.5637 156.837 34.5104 156.853 34.4613C156.947 34.1647 157.111 33.895 157.331 33.6753C157.551 33.4556 157.821 33.2923 158.118 33.1993C158.168 33.1879 158.221 33.1963 158.265 33.2228C158.309 33.2492 158.341 33.2917 158.355 33.3413C158.366 33.3913 158.358 33.4438 158.332 33.488C158.306 33.5321 158.263 33.5644 158.214 33.5783V33.5783C157.981 33.6561 157.769 33.7883 157.597 33.9639C157.424 34.1395 157.296 34.3535 157.223 34.5883C157.212 34.6171 157.195 34.643 157.173 34.6642C157.151 34.6853 157.124 34.7011 157.095 34.7103Z" fill="#263238"/>
|
||||
<path id="Path 25745" d="M169.531 180.834C169.248 180.857 168.966 180.782 168.731 180.623C168.658 180.56 168.601 180.48 168.566 180.39C168.531 180.299 168.519 180.202 168.531 180.106C168.531 180.049 168.546 179.993 168.576 179.944C168.606 179.895 168.648 179.855 168.699 179.829C169.158 179.593 170.489 180.413 170.639 180.507C170.655 180.518 170.668 180.533 170.676 180.55C170.684 180.568 170.687 180.588 170.684 180.607C170.681 180.626 170.672 180.644 170.659 180.658C170.646 180.672 170.629 180.682 170.61 180.687C170.257 180.776 169.895 180.825 169.531 180.834V180.834ZM168.917 179.979C168.873 179.977 168.83 179.985 168.79 180.003C168.77 180.014 168.753 180.031 168.742 180.052C168.731 180.072 168.726 180.095 168.728 180.118C168.719 180.184 168.727 180.25 168.75 180.312C168.773 180.374 168.811 180.43 168.861 180.473C169.323 180.684 169.847 180.71 170.328 180.547C169.897 180.268 169.416 180.075 168.912 179.979H168.917Z" fill="#407BFF"/>
|
||||
<path id="Path 25746" d="M170.584 180.689C170.568 180.689 170.551 180.685 170.537 180.677C170.11 180.445 169.283 179.539 169.37 179.077C169.384 179.005 169.423 178.94 169.48 178.893C169.536 178.846 169.607 178.82 169.681 178.82C169.755 178.811 169.831 178.817 169.903 178.839C169.975 178.861 170.041 178.897 170.098 178.946C170.578 179.339 170.677 180.531 170.68 180.581C170.681 180.598 170.678 180.616 170.67 180.632C170.662 180.648 170.651 180.661 170.636 180.671C170.621 180.682 170.603 180.688 170.584 180.689ZM169.75 179.014H169.705C169.578 179.03 169.567 179.088 169.562 179.114C169.51 179.386 170.037 180.07 170.462 180.393C170.434 179.92 170.264 179.467 169.974 179.093C169.911 179.041 169.832 179.013 169.75 179.014V179.014Z" fill="#407BFF"/>
|
||||
<path id="Path 25747" d="M152.296 180.057L152.28 180.064C151.633 180.271 150.475 180.564 149.98 180.218C149.907 180.168 149.847 180.1 149.806 180.021C149.765 179.942 149.744 179.855 149.744 179.766C149.74 179.713 149.75 179.659 149.773 179.61C149.796 179.562 149.831 179.52 149.875 179.489C150.34 179.162 152.087 179.805 152.285 179.88C152.302 179.887 152.317 179.899 152.327 179.914C152.338 179.929 152.344 179.947 152.345 179.966C152.346 179.984 152.342 180.002 152.334 180.019C152.325 180.035 152.312 180.049 152.296 180.058V180.057ZM150.013 179.633L149.99 179.647C149.972 179.659 149.958 179.676 149.949 179.695C149.94 179.715 149.937 179.737 149.94 179.758C149.939 179.817 149.952 179.875 149.978 179.927C150.005 179.979 150.044 180.024 150.092 180.058C150.7 180.248 151.356 180.212 151.94 179.958C151.335 179.69 150.672 179.578 150.012 179.633H150.013Z" fill="#407BFF"/>
|
||||
<path id="Path 25748" d="M152.296 180.057C152.272 180.069 152.245 180.071 152.22 180.063C151.7 179.897 150.62 179.12 150.64 178.648C150.645 178.537 150.708 178.392 150.972 178.335C151.067 178.314 151.166 178.312 151.262 178.33C151.358 178.349 151.449 178.386 151.53 178.441C151.954 178.846 152.239 179.375 152.346 179.951C152.349 179.968 152.348 179.985 152.343 180.001C152.338 180.018 152.329 180.032 152.316 180.044C152.31 180.049 152.303 180.053 152.296 180.057V180.057ZM150.905 178.567C150.838 178.603 150.836 178.645 150.835 178.661C150.821 178.945 151.567 179.567 152.108 179.813C152.008 179.352 151.769 178.933 151.423 178.613C151.364 178.572 151.297 178.544 151.226 178.53C151.156 178.517 151.083 178.518 151.013 178.534C150.976 178.54 150.939 178.551 150.905 178.567Z" fill="#407BFF"/>
|
||||
<g id="Group 26647">
|
||||
<path id="Path 25749" d="M177.882 56.4766C177.777 58.0906 177.587 59.5936 177.39 61.1456C177.193 62.6976 176.928 64.2186 176.637 65.7536C176.061 68.8888 175.211 71.9674 174.096 74.9536L173.605 76.1106L173.481 76.3996L173.45 76.4716L173.399 76.5816L173.255 76.8666C173.065 77.2129 172.836 77.5369 172.574 77.8326C172.143 78.3178 171.639 78.7327 171.08 79.0626C170.627 79.332 170.153 79.5625 169.661 79.7516C168.023 80.3425 166.31 80.7 164.573 80.8136C161.418 81.0493 158.247 80.9309 155.119 80.4606L155.232 77.3606L157.418 77.1136C158.151 77.0266 158.88 76.9136 159.605 76.8136C161.052 76.6006 162.484 76.3626 163.849 76.0456C165.112 75.7886 166.339 75.3817 167.505 74.8336C167.819 74.7015 168.095 74.4912 168.305 74.2226C168.318 74.1516 168.16 74.4626 168.346 73.9656L168.673 73.0096C169.474 70.269 170.087 67.4768 170.507 64.6526C170.742 63.2146 170.943 61.7636 171.137 60.3086C171.331 58.8536 171.491 57.3686 171.644 55.9736L177.882 56.4766Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25750" d="M178.242 53.4808C180.265 56.8738 178.542 67.5378 178.542 67.5378L167.942 65.5788C167.942 65.5788 167.368 59.4788 169.386 54.7848C171.577 49.6758 175.791 49.3698 178.242 53.4808Z" fill="#407BFF"/>
|
||||
<g id="Group 26646">
|
||||
<path id="Path 25751" d="M152.264 86.9518L146.639 60.7878C146.369 59.6705 145.743 58.6713 144.856 57.9408C143.968 57.2103 142.867 56.788 141.719 56.7378H120.166C121.315 56.7878 122.416 57.21 123.303 57.9405C124.191 58.671 124.817 59.6704 125.087 60.7878L130.712 86.9518C130.982 88.0691 131.608 89.0683 132.495 89.7988C133.383 90.5293 134.484 90.9515 135.632 91.0018H157.184C156.036 90.9515 154.935 90.5293 154.047 89.7988C153.16 89.0683 152.534 88.0691 152.264 86.9518V86.9518Z" fill="#263238"/>
|
||||
<path id="Path 25752" opacity="0.7" d="M152.264 86.9518L146.639 60.7878C146.369 59.6705 145.743 58.6713 144.856 57.9408C143.968 57.2103 142.867 56.788 141.719 56.7378H120.166C121.315 56.7878 122.416 57.21 123.303 57.9405C124.191 58.671 124.817 59.6704 125.087 60.7878L130.712 86.9518C130.982 88.0691 131.608 89.0683 132.495 89.7988C133.383 90.5293 134.484 90.9515 135.632 91.0018H157.184C156.036 90.9515 154.935 90.5293 154.047 89.7988C153.16 89.0683 152.534 88.0691 152.264 86.9518V86.9518Z" fill="#407BFF"/>
|
||||
<path id="Path 25753" d="M120.166 56.7378H141.718C140.615 56.7585 139.557 57.1814 138.743 57.9272C137.93 58.673 137.416 59.6903 137.3 60.7878L131.709 121.588C131.592 122.685 131.079 123.702 130.266 124.448C129.452 125.194 128.394 125.617 127.291 125.638H113.839C113.321 125.647 112.807 125.546 112.331 125.341C111.855 125.136 111.428 124.831 111.08 124.448C110.731 124.064 110.468 123.611 110.309 123.117C110.15 122.624 110.098 122.103 110.157 121.588L115.749 60.7878C115.865 59.6904 116.378 58.6733 117.192 57.9276C118.005 57.1818 119.063 56.7587 120.166 56.7378Z" fill="#407BFF"/>
|
||||
<g id="Group 26644">
|
||||
<path id="Path 25754" d="M123.609 121.587C123.55 122.102 123.602 122.623 123.761 123.117C123.92 123.61 124.183 124.063 124.532 124.447C124.88 124.83 125.307 125.135 125.783 125.34C126.259 125.545 126.773 125.647 127.291 125.637H105.739C105.221 125.647 104.706 125.546 104.231 125.34C103.755 125.135 103.328 124.831 102.979 124.447C102.631 124.064 102.368 123.61 102.209 123.117C102.05 122.623 101.998 122.102 102.057 121.587H123.609Z" fill="#263238"/>
|
||||
<path id="Path 25755" opacity="0.7" d="M123.609 121.587C123.55 122.102 123.602 122.623 123.761 123.117C123.92 123.61 124.183 124.063 124.532 124.447C124.88 124.83 125.307 125.135 125.783 125.34C126.259 125.545 126.773 125.647 127.291 125.637H105.739C105.221 125.647 104.706 125.546 104.231 125.34C103.755 125.135 103.328 124.831 102.979 124.447C102.631 124.064 102.368 123.61 102.209 123.117C102.05 122.623 101.998 122.102 102.057 121.587H123.609Z" fill="#407BFF"/>
|
||||
</g>
|
||||
<g id="Group 26645" opacity="0.5">
|
||||
<path id="Path 25756" opacity="0.5" d="M133.565 63.5497H118.981C118.868 63.5513 118.757 63.5288 118.653 63.4839C118.55 63.439 118.458 63.3726 118.382 63.2892C118.306 63.2058 118.249 63.1073 118.215 63.0001C118.18 62.8929 118.168 62.7796 118.181 62.6677V62.6677C118.207 62.429 118.319 62.2078 118.496 62.0455C118.673 61.8832 118.903 61.7909 119.143 61.7857H133.725C133.838 61.7842 133.949 61.8066 134.053 61.8515C134.156 61.8964 134.248 61.9628 134.324 62.0462C134.4 62.1296 134.457 62.2282 134.491 62.3353C134.526 62.4425 134.537 62.5558 134.525 62.6677V62.6677C134.499 62.9061 134.387 63.127 134.211 63.2893C134.034 63.4515 133.805 63.5441 133.565 63.5497V63.5497Z" fill="white"/>
|
||||
<path id="Path 25757" opacity="0.5" d="M133.131 68.3207H118.547C118.434 68.3223 118.323 68.2998 118.219 68.2549C118.116 68.21 118.024 68.1436 117.948 68.0602C117.872 67.9768 117.815 67.8782 117.781 67.7711C117.746 67.6639 117.734 67.5506 117.747 67.4387C117.773 67.2 117.885 66.9788 118.062 66.8165C118.239 66.6542 118.469 66.5619 118.709 66.5567H133.293C133.406 66.5552 133.517 66.5776 133.621 66.6225C133.724 66.6674 133.816 66.7338 133.892 66.8172C133.968 66.9006 134.025 66.9992 134.059 67.1063C134.094 67.2135 134.105 67.3268 134.093 67.4387V67.4387C134.067 67.6775 133.955 67.8988 133.778 68.0612C133.601 68.2235 133.371 68.3158 133.131 68.3207V68.3207Z" fill="white"/>
|
||||
<path id="Path 25758" opacity="0.5" d="M129.122 73.0917H118.113C118 73.0932 117.889 73.0708 117.785 73.0259C117.682 72.981 117.59 72.9146 117.514 72.8312C117.438 72.7478 117.381 72.6492 117.347 72.5421C117.312 72.4349 117.3 72.3216 117.313 72.2097V72.2097C117.339 71.9709 117.451 71.7498 117.628 71.5875C117.805 71.4252 118.035 71.3329 118.275 71.3277H129.284C129.397 71.3262 129.508 71.3486 129.611 71.3935C129.715 71.4384 129.807 71.5048 129.883 71.5882C129.959 71.6716 130.016 71.7702 130.05 71.8773C130.085 71.9845 130.096 72.0978 130.084 72.2097V72.2097C130.058 72.4485 129.946 72.6696 129.769 72.8319C129.592 72.9942 129.362 73.0866 129.122 73.0917V73.0917Z" fill="white"/>
|
||||
<path id="Path 25759" opacity="0.5" d="M121.413 77.8617H117.68C117.567 77.8633 117.456 77.8409 117.352 77.7959C117.249 77.751 117.157 77.6847 117.081 77.6012C117.005 77.5178 116.948 77.4193 116.914 77.3121C116.879 77.205 116.867 77.0917 116.88 76.9797V76.9797C116.906 76.7411 117.017 76.5199 117.194 76.3576C117.371 76.1953 117.601 76.1029 117.841 76.0977H121.575C121.688 76.0962 121.799 76.1186 121.902 76.1635C122.006 76.2084 122.098 76.2748 122.174 76.3582C122.25 76.4416 122.307 76.5402 122.341 76.6474C122.376 76.7545 122.387 76.8678 122.375 76.9797V76.9797C122.349 77.2185 122.237 77.4396 122.06 77.6019C121.883 77.7642 121.653 77.8566 121.413 77.8617V77.8617Z" fill="white"/>
|
||||
<path id="Path 25760" opacity="0.5" d="M131.829 82.6327H117.241C117.128 82.6343 117.017 82.6118 116.913 82.5669C116.81 82.522 116.718 82.4557 116.642 82.3722C116.566 82.2888 116.509 82.1903 116.475 82.0831C116.44 81.976 116.429 81.8627 116.441 81.7507V81.7507C116.467 81.512 116.579 81.2908 116.756 81.1285C116.933 80.9662 117.163 80.8739 117.403 80.8687H131.987C132.1 80.8672 132.211 80.8896 132.315 80.9345C132.418 80.9794 132.51 81.0458 132.586 81.1292C132.662 81.2126 132.719 81.3112 132.753 81.4183C132.788 81.5255 132.799 81.6388 132.787 81.7507V81.7507C132.761 81.9888 132.65 82.2094 132.474 82.3716C132.297 82.5338 132.068 82.6266 131.829 82.6327V82.6327Z" fill="white"/>
|
||||
<path id="Path 25761" opacity="0.5" d="M125.652 87.4037H116.812C116.699 87.4053 116.588 87.3828 116.484 87.3379C116.381 87.293 116.289 87.2267 116.213 87.1432C116.137 87.0598 116.08 86.9613 116.046 86.8541C116.011 86.747 115.999 86.6337 116.012 86.5217V86.5217C116.038 86.2831 116.149 86.0619 116.326 85.8996C116.503 85.7373 116.733 85.6449 116.973 85.6397H125.813C125.926 85.6382 126.037 85.6606 126.141 85.7055C126.244 85.7504 126.336 85.8168 126.412 85.9002C126.488 85.9836 126.545 86.0822 126.579 86.1893C126.614 86.2965 126.625 86.4098 126.613 86.5217V86.5217C126.587 86.7603 126.475 86.9813 126.298 87.1436C126.122 87.3059 125.892 87.3983 125.652 87.4037V87.4037Z" fill="white"/>
|
||||
<path id="Path 25762" opacity="0.5" d="M130.962 92.1737H116.378C116.265 92.1753 116.154 92.1529 116.05 92.108C115.947 92.063 115.855 91.9967 115.779 91.9133C115.703 91.8298 115.646 91.7313 115.612 91.6241C115.577 91.517 115.565 91.4037 115.578 91.2917V91.2917C115.604 91.053 115.716 90.8318 115.893 90.6695C116.07 90.5072 116.3 90.4149 116.54 90.4097H131.125C131.238 90.4082 131.349 90.4306 131.453 90.4755C131.556 90.5204 131.648 90.5868 131.724 90.6702C131.8 90.7536 131.857 90.8522 131.891 90.9594C131.926 91.0665 131.937 91.1798 131.925 91.2917V91.2917C131.899 91.5307 131.787 91.752 131.61 91.9143C131.433 92.0766 131.202 92.1688 130.962 92.1737V92.1737Z" fill="white"/>
|
||||
<path id="Path 25763" opacity="0.5" d="M126.953 96.9447H115.944C115.831 96.9463 115.72 96.9239 115.616 96.879C115.513 96.834 115.421 96.7677 115.345 96.6843C115.269 96.6008 115.212 96.5023 115.178 96.3951C115.143 96.288 115.132 96.1747 115.144 96.0627V96.0627C115.17 95.824 115.282 95.6028 115.459 95.4405C115.636 95.2782 115.866 95.1859 116.106 95.1807H127.115C127.228 95.1792 127.339 95.2016 127.443 95.2465C127.546 95.2914 127.638 95.3578 127.714 95.4412C127.79 95.5247 127.847 95.6232 127.881 95.7304C127.916 95.8375 127.927 95.9508 127.915 96.0627V96.0627C127.889 96.3015 127.777 96.5227 127.6 96.685C127.423 96.8472 127.193 96.9396 126.953 96.9447V96.9447Z" fill="white"/>
|
||||
<path id="Path 25764" opacity="0.5" d="M119.244 101.715H115.508C115.395 101.716 115.284 101.694 115.18 101.649C115.077 101.604 114.985 101.538 114.909 101.454C114.833 101.371 114.776 101.272 114.742 101.165C114.707 101.058 114.695 100.945 114.708 100.833V100.833C114.734 100.594 114.846 100.373 115.023 100.211C115.2 100.048 115.43 99.9559 115.67 99.9508H119.408C119.521 99.9492 119.632 99.9716 119.736 100.017C119.839 100.061 119.931 100.128 120.007 100.211C120.083 100.295 120.14 100.393 120.174 100.5C120.209 100.608 120.22 100.721 120.208 100.833C120.182 101.072 120.07 101.293 119.892 101.456C119.715 101.618 119.484 101.71 119.244 101.715V101.715Z" fill="white"/>
|
||||
<path id="Path 25765" opacity="0.5" d="M129.66 106.487H115.076C114.963 106.488 114.852 106.466 114.748 106.421C114.645 106.376 114.553 106.31 114.477 106.226C114.401 106.143 114.344 106.044 114.31 105.937C114.275 105.83 114.263 105.717 114.276 105.605V105.605C114.302 105.366 114.414 105.145 114.591 104.983C114.768 104.82 114.998 104.728 115.238 104.723H129.822C129.935 104.721 130.046 104.744 130.149 104.789C130.253 104.833 130.345 104.9 130.421 104.983C130.497 105.067 130.554 105.165 130.588 105.272C130.623 105.38 130.634 105.493 130.622 105.605V105.605C130.596 105.843 130.484 106.065 130.307 106.227C130.13 106.389 129.9 106.482 129.66 106.487V106.487Z" fill="white"/>
|
||||
<path id="Path 25766" opacity="0.5" d="M123.483 111.257H114.643C114.53 111.258 114.419 111.236 114.315 111.191C114.212 111.146 114.12 111.08 114.044 110.996C113.968 110.913 113.911 110.814 113.877 110.707C113.842 110.6 113.83 110.487 113.843 110.375V110.375C113.869 110.136 113.981 109.915 114.158 109.752C114.335 109.59 114.565 109.498 114.805 109.493H123.644C123.757 109.491 123.868 109.514 123.972 109.559C124.075 109.603 124.167 109.67 124.243 109.753C124.319 109.837 124.376 109.935 124.41 110.042C124.445 110.15 124.456 110.263 124.444 110.375V110.375C124.418 110.613 124.306 110.834 124.13 110.997C123.953 111.159 123.723 111.251 123.483 111.257V111.257Z" fill="white"/>
|
||||
<path id="Path 25767" opacity="0.5" d="M128.792 116.028H114.208C114.095 116.029 113.984 116.007 113.88 115.962C113.777 115.917 113.685 115.851 113.609 115.767C113.533 115.684 113.476 115.585 113.442 115.478C113.407 115.371 113.395 115.258 113.408 115.146V115.146C113.434 114.907 113.546 114.686 113.723 114.524C113.9 114.361 114.13 114.269 114.37 114.264H128.952C129.065 114.262 129.176 114.285 129.28 114.33C129.383 114.374 129.475 114.441 129.551 114.524C129.627 114.608 129.684 114.706 129.718 114.813C129.753 114.921 129.764 115.034 129.752 115.146V115.146C129.726 115.384 129.614 115.605 129.438 115.767C129.261 115.93 129.032 116.022 128.792 116.028Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Path 25768" d="M156.503 77.6987L153.337 74.9478L151.853 80.0117C151.853 80.0117 155.069 81.7558 156.183 80.1548L156.503 77.6987Z" fill="#FFC3BD"/>
|
||||
<path id="Path 25769" d="M149.888 74.75L148.858 78.994L151.85 80.014L153.334 74.949L149.888 74.75Z" fill="#FFC3BD"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group 26651">
|
||||
<path id="Vector 480" d="M51.5 188.5V142L65.5 179L51.5 188.5Z" fill="url(#paint3_linear_93_4942)"/>
|
||||
<path id="Vector 481" d="M51.5 188.5V142L39 183L51.5 188.5Z" fill="url(#paint4_linear_93_4942)"/>
|
||||
<path id="Rectangle 5571" d="M51.5 183C51.5 181.343 52.8431 180 54.5 180V180C56.1569 180 57.5 181.343 57.5 183V191C57.5 192.657 56.1569 194 54.5 194V194C52.8431 194 51.5 192.657 51.5 191V183Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26654">
|
||||
<path id="Vector 480_2" d="M267.731 190.192V158L277.423 183.615L267.731 190.192Z" fill="url(#paint5_linear_93_4942)"/>
|
||||
<path id="Vector 481_2" d="M267.731 190.192V158L259.077 186.385L267.731 190.192Z" fill="url(#paint6_linear_93_4942)"/>
|
||||
<path id="Rectangle 5571_2" d="M267.731 186.385C267.731 185.237 268.661 184.308 269.808 184.308V184.308C270.955 184.308 271.885 185.237 271.885 186.385V191.923C271.885 193.07 270.955 194 269.808 194V194C268.661 194 267.731 193.07 267.731 191.923V186.385Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26653">
|
||||
<path id="Vector 480_3" d="M229.25 160.25V137L236.25 155.5L229.25 160.25Z" fill="url(#paint7_linear_93_4942)"/>
|
||||
<path id="Vector 481_3" d="M229.25 160.25V137L223 157.5L229.25 160.25Z" fill="url(#paint8_linear_93_4942)"/>
|
||||
<path id="Rectangle 5571_3" d="M229.25 157.501C229.25 156.672 229.922 156 230.75 156V156C231.579 156 232.25 156.672 232.25 157.501V161.501C232.25 162.329 231.579 163.001 230.75 163.001V163.001C229.922 163.001 229.25 162.329 229.25 161.501V157.501Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_93_4942" x1="118.5" y1="0" x2="118.5" y2="170" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#407BFF" stop-opacity="0.1"/>
|
||||
<stop offset="1" stop-color="#407BFF" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_93_4942" x1="255" y1="52" x2="255" y2="164.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#407BFF" stop-opacity="0.1"/>
|
||||
<stop offset="1" stop-color="#407BFF" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_93_4942" x1="156" y1="143" x2="161.133" y2="239.988" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDF2FF"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_93_4942" x1="58.5" y1="142" x2="58.5" y2="188.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_93_4942" x1="45.25" y1="142" x2="45.25" y2="188.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_93_4942" x1="272.577" y1="158" x2="272.577" y2="190.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_93_4942" x1="263.404" y1="158" x2="263.404" y2="190.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_93_4942" x1="232.75" y1="137" x2="232.75" y2="160.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_93_4942" x1="226.125" y1="137" x2="226.125" y2="160.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 30 KiB |
84
finyx_data_frontend/src/assets/icons/empty2.svg
Executable file
@ -0,0 +1,84 @@
|
||||
<svg width="312" height="298" viewBox="0 0 312 298" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="empty1">
|
||||
<g id="empty2">
|
||||
<path id="<Path>" d="M156 278C242.156 278 312 243.302 312 200.5C312 157.698 242.156 123 156 123C69.8436 123 0 157.698 0 200.5C0 243.302 69.8436 278 156 278Z" fill="url(#paint0_linear_93_5190)"/>
|
||||
<g id="Group 26658">
|
||||
<rect id="Rectangle 5574" x="82" y="20" width="106" height="137" rx="12" fill="url(#paint1_linear_93_5190)"/>
|
||||
<rect id="Rectangle 5575" x="101" y="38" width="68" height="8" rx="4" fill="white"/>
|
||||
<rect id="Rectangle 5576" x="101" y="58" width="44" height="8" rx="4" fill="white"/>
|
||||
<rect id="Rectangle 5577" x="101" y="79" width="33" height="8" rx="4" fill="white"/>
|
||||
</g>
|
||||
<g id="Group 26651">
|
||||
<path id="Vector 480" d="M51.5 168.5V122L65.5 159L51.5 168.5Z" fill="url(#paint2_linear_93_5190)"/>
|
||||
<path id="Vector 481" d="M51.5 168.5V122L39 163L51.5 168.5Z" fill="url(#paint3_linear_93_5190)"/>
|
||||
<path id="Rectangle 5571" d="M51.5 163C51.5 161.343 52.8431 160 54.5 160V160C56.1569 160 57.5 161.343 57.5 163V171C57.5 172.657 56.1569 174 54.5 174V174C52.8431 174 51.5 172.657 51.5 171V163Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26654">
|
||||
<path id="Vector 480_2" d="M267.731 170.192V138L277.423 163.615L267.731 170.192Z" fill="url(#paint4_linear_93_5190)"/>
|
||||
<path id="Vector 481_2" d="M267.731 170.192V138L259.077 166.385L267.731 170.192Z" fill="url(#paint5_linear_93_5190)"/>
|
||||
<path id="Rectangle 5571_2" d="M267.731 166.385C267.731 165.237 268.661 164.308 269.808 164.308V164.308C270.955 164.308 271.885 165.237 271.885 166.385V171.923C271.885 173.07 270.955 174 269.808 174V174C268.661 174 267.731 173.07 267.731 171.923V166.385Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26653">
|
||||
<path id="Vector 480_3" d="M243.25 142.25V119L250.25 137.5L243.25 142.25Z" fill="url(#paint6_linear_93_5190)"/>
|
||||
<path id="Vector 481_3" d="M243.25 142.25V119L237 139.5L243.25 142.25Z" fill="url(#paint7_linear_93_5190)"/>
|
||||
<path id="Rectangle 5571_3" d="M243.25 139.501C243.25 138.672 243.922 138 244.75 138V138C245.579 138 246.25 138.672 246.25 139.501V143.501C246.25 144.329 245.579 145.001 244.75 145.001V145.001C243.922 145.001 243.25 144.329 243.25 143.501V139.501Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26657">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M202 53C197.029 53 193 57.0294 193 62C193 66.9706 197.029 71 202 71H213.536V76L219.078 71H232C236.971 71 241 66.9706 241 62C241 57.0294 236.971 53 232 53H202Z" fill="url(#paint8_linear_93_5190)"/>
|
||||
<circle id="Ellipse 9" cx="209" cy="62" r="2" fill="white"/>
|
||||
<circle id="Ellipse 10" cx="217" cy="62" r="2" fill="white"/>
|
||||
<circle id="Ellipse 11" cx="225" cy="62" r="2" fill="white"/>
|
||||
</g>
|
||||
<g id="Group 26656">
|
||||
<path id="Union_2" fill-rule="evenodd" clip-rule="evenodd" d="M212.522 143.111C218.421 136.415 222 127.625 222 118C222 97.0132 204.987 80 184 80C163.013 80 146 97.0132 146 118C146 138.987 163.013 156 184 156C189.947 156 195.574 154.634 200.586 152.199L212.07 166.826C214.628 170.084 219.343 170.651 222.6 168.093C225.858 165.535 226.426 160.821 223.868 157.563L212.522 143.111Z" fill="url(#paint9_linear_93_5190)"/>
|
||||
<circle id="Ellipse 8" cx="184" cy="118" r="28" fill="url(#paint10_linear_93_5190)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_93_5190" x1="156" y1="123" x2="161.133" y2="219.988" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDF2FF"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_93_5190" x1="161.5" y1="148.5" x2="164.088" y2="-5.2649" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E0ECFF"/>
|
||||
<stop offset="1" stop-color="#ADC6FF" stop-opacity="0.77"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_93_5190" x1="58.5" y1="122" x2="58.5" y2="168.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_93_5190" x1="45.25" y1="122" x2="45.25" y2="168.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_93_5190" x1="272.577" y1="138" x2="272.577" y2="170.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_93_5190" x1="263.404" y1="138" x2="263.404" y2="170.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_93_5190" x1="246.75" y1="119" x2="246.75" y2="142.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_93_5190" x1="240.125" y1="119" x2="240.125" y2="142.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_93_5190" x1="210.053" y1="54.2105" x2="214.24" y2="76.8962" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B7D1F9"/>
|
||||
<stop offset="1" stop-color="#6E98F6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_93_5190" x1="164.302" y1="91.1242" x2="163.855" y2="154.625" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B7D1F9"/>
|
||||
<stop offset="1" stop-color="#6E98F6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_93_5190" x1="175.895" y1="92.9474" x2="195.053" y2="142.684" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4F8FF"/>
|
||||
<stop offset="1" stop-color="#DDE7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
93
finyx_data_frontend/src/assets/icons/empty3.svg
Executable file
@ -0,0 +1,93 @@
|
||||
<svg width="312" height="298" viewBox="0 0 312 298" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="empty1">
|
||||
<g id="加载失败">
|
||||
<path id="<Path>" d="M156 270C242.156 270 312 235.302 312 192.5C312 149.698 242.156 115 156 115C69.8436 115 0 149.698 0 192.5C0 235.302 69.8436 270 156 270Z" fill="url(#paint0_linear_93_5370)"/>
|
||||
<g id="Group 26651">
|
||||
<path id="Vector 480" d="M66.5 162.5V116L80.5 153L66.5 162.5Z" fill="url(#paint1_linear_93_5370)"/>
|
||||
<path id="Vector 481" d="M66.5 162.5V116L54 157L66.5 162.5Z" fill="url(#paint2_linear_93_5370)"/>
|
||||
<path id="Rectangle 5571" d="M66.5 157C66.5 155.343 67.8431 154 69.5 154V154C71.1569 154 72.5 155.343 72.5 157V165C72.5 166.657 71.1569 168 69.5 168V168C67.8431 168 66.5 166.657 66.5 165V157Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26654">
|
||||
<path id="Vector 480_2" d="M259.654 166.192V134L269.346 159.615L259.654 166.192Z" fill="url(#paint3_linear_93_5370)"/>
|
||||
<path id="Vector 481_2" d="M259.654 166.192V134L251 162.385L259.654 166.192Z" fill="url(#paint4_linear_93_5370)"/>
|
||||
<path id="Rectangle 5571_2" d="M259.654 162.385C259.654 161.237 260.584 160.308 261.731 160.308V160.308C262.878 160.308 263.808 161.237 263.808 162.385V167.923C263.808 169.07 262.878 170 261.731 170V170C260.584 170 259.654 169.07 259.654 167.923V162.385Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26653">
|
||||
<path id="Vector 480_3" d="M238.25 134.25V111L245.25 129.5L238.25 134.25Z" fill="url(#paint5_linear_93_5370)"/>
|
||||
<path id="Vector 481_3" d="M238.25 134.25V111L232 131.5L238.25 134.25Z" fill="url(#paint6_linear_93_5370)"/>
|
||||
<path id="Rectangle 5571_3" d="M238.25 131.501C238.25 130.672 238.922 130 239.75 130V130C240.579 130 241.25 130.672 241.25 131.501V135.501C241.25 136.329 240.579 137.001 239.75 137.001V137.001C238.922 137.001 238.25 136.329 238.25 135.501V131.501Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Subtract" filter="url(#filter0_d_93_5370)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.266 30.6432L125.794 65.6101L148.619 80.948L146.774 135.293L146.018 140.462L118.302 147.103C111.857 148.648 105.381 144.675 103.836 138.23L83.7963 54.5974C82.2519 48.1524 86.2247 41.6758 92.6696 40.1314L132.266 30.6432Z" fill="url(#paint7_linear_93_5370)" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<g id="Subtract_2" filter="url(#filter1_d_93_5370)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M150 138.278L200.912 144.141C207.496 144.899 213.448 140.177 214.206 133.593L224.045 48.1573C224.804 41.5734 220.081 35.6214 213.497 34.8632L182.69 31.3153C182.393 31.2812 182.097 31.2582 181.802 31.2462L163.676 55.9369L180.18 78.9792L150 138.278Z" fill="url(#paint8_linear_93_5370)" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<g id="Group 26659">
|
||||
<circle id="Ellipse 12" cx="192.5" cy="129.5" r="29.5" fill="url(#paint9_linear_93_5370)"/>
|
||||
<path id="Rectangle 5579" d="M189.307 114.988C189.141 112.837 190.842 111 193 111V111C195.158 111 196.859 112.837 196.693 114.988L195.153 135.006C195.067 136.131 194.129 137 193 137V137C191.871 137 190.933 136.131 190.847 135.006L189.307 114.988Z" fill="white"/>
|
||||
<circle id="Ellipse 13" cx="193" cy="144" r="3" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_93_5370" x="83.4631" y="30.6431" width="67.156" height="116.793" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.71703 0 0 0 0 0.775187 0 0 0 0 0.918993 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_93_5370"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_93_5370" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_93_5370" x="150" y="31.2461" width="76.125" height="112.975" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.71703 0 0 0 0 0.775187 0 0 0 0 0.918993 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_93_5370"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_93_5370" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_93_5370" x1="156" y1="115" x2="161.133" y2="211.988" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDF2FF"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_93_5370" x1="73.5" y1="116" x2="73.5" y2="162.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_93_5370" x1="60.25" y1="116" x2="60.25" y2="162.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_93_5370" x1="264.5" y1="134" x2="264.5" y2="166.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_93_5370" x1="255.327" y1="134" x2="255.327" y2="166.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_93_5370" x1="241.75" y1="111" x2="241.75" y2="134.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_93_5370" x1="235.125" y1="111" x2="235.125" y2="134.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_93_5370" x1="149.142" y1="132.695" x2="122.921" y2="12.0436" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E0ECFF"/>
|
||||
<stop offset="1" stop-color="#ADC6FF" stop-opacity="0.77"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_93_5370" x1="200.86" y1="137.265" x2="217.321" y2="14.8938" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E0ECFF"/>
|
||||
<stop offset="1" stop-color="#ADC6FF" stop-opacity="0.77"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_93_5370" x1="128.5" y1="91" x2="145.007" y2="161.734" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B7D1F9"/>
|
||||
<stop offset="1" stop-color="#6E98F6"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.5 KiB |
82
finyx_data_frontend/src/assets/icons/empty4.svg
Executable file
@ -0,0 +1,82 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="312" height="154" viewBox="0 0 312 154" fill="none"><script xmlns=""/>
|
||||
<g id="empty2">
|
||||
|
||||
<g id="Group 26658">
|
||||
<rect id="Rectangle 5574" x="82" width="106" height="137" rx="12" fill="url(#paint1_linear_93_5274)"/>
|
||||
<rect id="Rectangle 5575" x="101" y="18" width="68" height="8" rx="4" fill="white"/>
|
||||
<rect id="Rectangle 5576" x="101" y="38" width="44" height="8" rx="4" fill="white"/>
|
||||
<rect id="Rectangle 5577" x="101" y="59" width="33" height="8" rx="4" fill="white"/>
|
||||
</g>
|
||||
<g id="Group 26651">
|
||||
<path id="Vector 480" d="M51.5 148.5V102L65.5 139L51.5 148.5Z" fill="url(#paint2_linear_93_5274)"/>
|
||||
<path id="Vector 481" d="M51.5 148.5V102L39 143L51.5 148.5Z" fill="url(#paint3_linear_93_5274)"/>
|
||||
<path id="Rectangle 5571" d="M51.5 143C51.5 141.343 52.8431 140 54.5 140V140C56.1569 140 57.5 141.343 57.5 143V151C57.5 152.657 56.1569 154 54.5 154V154C52.8431 154 51.5 152.657 51.5 151V143Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26654">
|
||||
<path id="Vector 480_2" d="M267.731 150.192V118L277.423 143.615L267.731 150.192Z" fill="url(#paint4_linear_93_5274)"/>
|
||||
<path id="Vector 481_2" d="M267.731 150.192V118L259.077 146.385L267.731 150.192Z" fill="url(#paint5_linear_93_5274)"/>
|
||||
<path id="Rectangle 5571_2" d="M267.731 146.385C267.731 145.237 268.661 144.308 269.808 144.308V144.308C270.955 144.308 271.885 145.237 271.885 146.385V151.923C271.885 153.07 270.955 154 269.808 154V154C268.661 154 267.731 153.07 267.731 151.923V146.385Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26653">
|
||||
<path id="Vector 480_3" d="M243.25 122.25V99L250.25 117.5L243.25 122.25Z" fill="url(#paint6_linear_93_5274)"/>
|
||||
<path id="Vector 481_3" d="M243.25 122.25V99L237 119.5L243.25 122.25Z" fill="url(#paint7_linear_93_5274)"/>
|
||||
<path id="Rectangle 5571_3" d="M243.25 119.501C243.25 118.672 243.922 118 244.75 118V118C245.579 118 246.25 118.672 246.25 119.501V123.501C246.25 124.329 245.579 125.001 244.75 125.001V125.001C243.922 125.001 243.25 124.329 243.25 123.501V119.501Z" fill="#B5D0FA"/>
|
||||
</g>
|
||||
<g id="Group 26657">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M202 33C197.029 33 193 37.0294 193 42C193 46.9706 197.029 51 202 51H213.536V56L219.078 51H232C236.971 51 241 46.9706 241 42C241 37.0294 236.971 33 232 33H202Z" fill="url(#paint8_linear_93_5274)"/>
|
||||
<circle id="Ellipse 9" cx="209" cy="42" r="2" fill="white"/>
|
||||
<circle id="Ellipse 10" cx="217" cy="42" r="2" fill="white"/>
|
||||
<circle id="Ellipse 11" cx="225" cy="42" r="2" fill="white"/>
|
||||
</g>
|
||||
<g id="Group 26656">
|
||||
<path id="Union_2" fill-rule="evenodd" clip-rule="evenodd" d="M212.522 123.111C218.421 116.415 222 107.625 222 98C222 77.0132 204.987 60 184 60C163.013 60 146 77.0132 146 98C146 118.987 163.013 136 184 136C189.947 136 195.574 134.634 200.586 132.199L212.07 146.826C214.628 150.084 219.343 150.651 222.6 148.093C225.858 145.535 226.426 140.821 223.868 137.563L212.522 123.111Z" fill="url(#paint9_linear_93_5274)"/>
|
||||
<circle id="Ellipse 8" cx="184" cy="98" r="28" fill="url(#paint10_linear_93_5274)"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_93_5274" x1="156" y1="103" x2="161.133" y2="199.988" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDF2FF"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_93_5274" x1="161.5" y1="128.5" x2="164.088" y2="-25.2649" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E0ECFF"/>
|
||||
<stop offset="1" stop-color="#ADC6FF" stop-opacity="0.77"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_93_5274" x1="58.5" y1="102" x2="58.5" y2="148.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_93_5274" x1="45.25" y1="102" x2="45.25" y2="148.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_93_5274" x1="272.577" y1="118" x2="272.577" y2="150.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_93_5274" x1="263.404" y1="118" x2="263.404" y2="150.192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_93_5274" x1="246.75" y1="99" x2="246.75" y2="122.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2D5F5"/>
|
||||
<stop offset="1" stop-color="#B3CFFB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_93_5274" x1="240.125" y1="99" x2="240.125" y2="122.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DFEBFF"/>
|
||||
<stop offset="1" stop-color="#D7E5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_93_5274" x1="210.053" y1="34.2105" x2="214.24" y2="56.8962" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B7D1F9"/>
|
||||
<stop offset="1" stop-color="#6E98F6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_93_5274" x1="164.302" y1="71.1242" x2="163.855" y2="134.625" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B7D1F9"/>
|
||||
<stop offset="1" stop-color="#6E98F6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_93_5274" x1="175.895" y1="72.9474" x2="195.053" y2="122.684" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4F8FF"/>
|
||||
<stop offset="1" stop-color="#DDE7FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<script xmlns=""/><script xmlns=""/></svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
5
finyx_data_frontend/src/assets/icons/gengxin.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Frame">
|
||||
<path id="Vector" d="M7.00002 2.62519C6.34154 2.62456 5.6927 2.78342 5.10899 3.08818C4.52528 3.39293 4.02406 3.83453 3.64819 4.37519C3.60509 4.43973 3.54956 4.49503 3.48483 4.53784C3.4201 4.58065 3.34747 4.61011 3.27121 4.6245C3.19495 4.63889 3.11659 4.63792 3.04071 4.62164C2.96483 4.60537 2.89296 4.57411 2.82931 4.52971C2.76566 4.48531 2.71151 4.42866 2.67003 4.36307C2.62855 4.29748 2.60057 4.22427 2.58774 4.14773C2.57491 4.0712 2.57748 3.99287 2.5953 3.91734C2.61312 3.8418 2.64583 3.77059 2.69152 3.70786C3.30432 2.82818 4.17172 2.15716 5.17713 1.78501C6.18255 1.41285 7.27779 1.35738 8.31566 1.62606C9.35353 1.89473 10.2843 2.47468 10.9828 3.28795C11.6814 4.10122 12.1142 5.10883 12.2232 6.17536L12.7237 5.70169C12.836 5.59525 12.986 5.53779 13.1407 5.54194C13.2954 5.5461 13.4421 5.61154 13.5485 5.72386C13.655 5.83618 13.7124 5.98618 13.7083 6.14086C13.7041 6.29555 13.6387 6.44225 13.5264 6.54869L11.9864 8.00702C11.8968 8.09178 11.7827 8.14598 11.6604 8.16184C11.5382 8.17771 11.414 8.15442 11.3058 8.09532C11.1976 8.03623 11.1109 7.94436 11.0581 7.83292C11.0054 7.72147 10.9893 7.59618 11.0122 7.47502C11.1251 6.8844 11.1061 6.27614 10.9567 5.6937C10.8072 5.11126 10.531 4.56901 10.1477 4.10569C9.7644 3.64238 9.28351 3.26944 8.73939 3.01351C8.19526 2.75758 7.60133 2.62498 7.00002 2.62519ZM7.00235 11.3752C7.66083 11.3758 8.30967 11.217 8.89338 10.9122C9.47709 10.6074 9.97832 10.1659 10.3542 9.62519C10.3973 9.56065 10.4528 9.50535 10.5175 9.46254C10.5823 9.41973 10.6549 9.39027 10.7312 9.37588C10.8074 9.36149 10.8858 9.36246 10.9617 9.37874C11.0375 9.39501 11.1094 9.42627 11.1731 9.47066C11.2367 9.51507 11.2909 9.57172 11.3323 9.63731C11.3738 9.7029 11.4018 9.77611 11.4146 9.85264C11.4275 9.92918 11.4249 10.0075 11.4071 10.083C11.3893 10.1586 11.3565 10.2298 11.3109 10.2925C10.6981 11.1722 9.83065 11.8432 8.82524 12.2154C7.81982 12.5875 6.72458 12.643 5.68671 12.3743C4.64884 12.1056 3.71809 11.5257 3.01955 10.7124C2.32101 9.89916 1.88816 8.89155 1.77919 7.82502L1.2781 8.29869C1.16526 8.4021 1.0163 8.45701 0.86334 8.45159C0.710379 8.44617 0.565676 8.38086 0.460436 8.26972C0.355196 8.15859 0.29785 8.01054 0.300765 7.85752C0.30368 7.70449 0.366623 7.55873 0.47602 7.45169L2.01602 5.99336C2.10557 5.9086 2.21967 5.8544 2.34195 5.83854C2.46422 5.82267 2.58838 5.84596 2.69659 5.90506C2.8048 5.96415 2.89151 6.05602 2.94426 6.16746C2.99701 6.27891 3.01309 6.4042 2.99019 6.52536C2.87732 7.11593 2.89627 7.72414 3.04568 8.30654C3.19509 8.88894 3.47127 9.43116 3.8545 9.89446C4.23772 10.3578 4.71854 10.7307 5.26259 10.9867C5.80664 11.2427 6.40051 11.3753 7.00177 11.3752H7.00235Z" fill="#333333"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
5
finyx_data_frontend/src/assets/icons/glyy.svg
Executable file
@ -0,0 +1,5 @@
|
||||
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="智能体">
|
||||
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M4.04863 11C2.81749 11 2.35051 10.8727 1.88352 10.618C1.41654 10.3632 1.07692 10.0236 0.822199 9.55663C0.609934 9.08965 0.482574 8.62267 0.482574 7.34908V5.69341C0.482574 4.41982 0.609934 3.99529 0.864652 3.52831C1.11937 3.06133 1.45899 2.7217 1.92598 2.46698C2.39296 2.21227 2.81749 2.08491 4.09108 2.08491L11.5204 2V7.34908C11.5204 8.62267 11.393 9.08965 11.1383 9.55663C10.8836 10.0236 10.5439 10.3632 10.077 10.618C9.60997 10.8727 9.18544 11 7.91185 11H4.04863ZM4.04863 9.93871H7.91185C8.88827 9.93871 9.22789 9.85381 9.56752 9.68399C9.86469 9.51418 10.077 9.30192 10.2043 9.0472C10.3741 8.70757 10.459 8.36795 10.459 7.34908V3.06133L4.04863 3.10378C3.11466 3.10378 2.77504 3.18868 2.43541 3.31604L2.39296 3.3585C2.09579 3.52831 1.88352 3.74057 1.75616 4.03774C1.58635 4.37737 1.50145 4.71699 1.50145 5.73586V7.34908C1.50145 8.3255 1.58635 8.66512 1.75616 9.0472C1.88352 9.34437 2.09579 9.55664 2.39296 9.68399C2.73258 9.89626 3.07221 9.93871 4.04863 9.93871ZM3.54599 6.4877C3.54597 6.61036 3.57012 6.73182 3.61705 6.84515C3.66398 6.95847 3.73278 7.06145 3.8195 7.14818C3.90623 7.23492 4.0092 7.30373 4.12252 7.35067C4.23584 7.39761 4.3573 7.42177 4.47995 7.42177C4.60261 7.42177 4.72407 7.39761 4.83739 7.35067C4.95071 7.30373 5.05368 7.23492 5.1404 7.14818C5.22713 7.06145 5.29593 6.95847 5.34286 6.84515C5.38979 6.73182 5.41393 6.61036 5.41392 6.4877C5.41393 6.36505 5.38979 6.24359 5.34286 6.13026C5.29593 6.01693 5.22713 5.91396 5.1404 5.82723C5.05368 5.74049 4.95071 5.67168 4.83739 5.62474C4.72407 5.5778 4.60261 5.55364 4.47995 5.55364C4.3573 5.55364 4.23584 5.5778 4.12252 5.62474C4.0092 5.67168 3.90623 5.74049 3.8195 5.82723C3.73278 5.91396 3.66398 6.01693 3.61705 6.13026C3.57012 6.24359 3.54597 6.36505 3.54599 6.4877ZM7.01332 6.84512C6.96639 6.73181 6.94223 6.61036 6.94223 6.48771C6.94223 6.24 7.04063 6.00245 7.21578 5.82729C7.39093 5.65214 7.62849 5.55374 7.87619 5.55374C8.1239 5.55374 8.36146 5.65214 8.53661 5.82729C8.71176 6.00245 8.81016 6.24 8.81016 6.48771C8.81016 6.61036 8.786 6.73181 8.73907 6.84512C8.69213 6.95844 8.62333 7.06139 8.53661 7.14812C8.44988 7.23485 8.34692 7.30364 8.23361 7.35058C8.12029 7.39752 7.99884 7.42167 7.87619 7.42167C7.75354 7.42167 7.6321 7.39752 7.51878 7.35058C7.40547 7.30364 7.30251 7.23485 7.21578 7.14812C7.12905 7.06139 7.06026 6.95844 7.01332 6.84512Z" fill="#8C8C8C"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
11
finyx_data_frontend/src/assets/icons/guanbi.svg
Executable file
@ -0,0 +1,11 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="guanbi" clip-path="url(#clip0_167_15631)">
|
||||
<path id="Vector" d="M1.9633 13.3559L13.3121 2.00719C13.6708 1.64844 13.6708 1.05169 13.3121 0.692938C12.9533 0.334188 12.3566 0.334188 11.9978 0.692938L0.649051 12.0417C0.409301 12.4004 0.409301 12.9972 0.649051 13.3559C1.0078 13.7147 1.60455 13.7147 1.9633 13.3559Z" fill="#333333"/>
|
||||
<path id="Vector_2" d="M13.4328 12.0417L2.08234 0.692938C1.72359 0.334188 1.12684 0.334188 0.768086 0.692938C0.409336 1.05169 0.409336 1.64844 0.768086 2.00719L12.1186 13.3559C12.4773 13.7147 13.0741 13.7147 13.4328 13.3559C13.6708 12.9972 13.6708 12.4004 13.4328 12.0417Z" fill="#333333"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_167_15631">
|
||||
<rect width="14" height="14" fill="white" transform="matrix(1 0 0 -1 0 14)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 872 B |