feat: sync full workspace including web modules, docs, and configurations to Gitea
Optimized the root .gitignore to exclude virtual environments, node modules, and temp folders to ensure clean and lightweight version tracking. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
16
.gitignore
vendored
16
.gitignore
vendored
@@ -1,2 +1,18 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
**/.DS_Store
|
**/.DS_Store
|
||||||
|
|
||||||
|
# Virtual Environments
|
||||||
|
.venv_ocr/
|
||||||
|
.tmp_pydeps/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
**/node_modules/
|
||||||
|
|
||||||
|
# Temp files and local IDE settings
|
||||||
|
tmp/
|
||||||
|
.agents/
|
||||||
|
.claude/
|
||||||
|
.cursor/
|
||||||
|
|||||||
272
AI-Arco-Design-Themes-Demos-complete/README.md
Normal file
272
AI-Arco-Design-Themes-Demos-complete/README.md
Normal file
@@ -0,0 +1,272 @@
|
|||||||
|
# 网页数据导出包使用说明
|
||||||
|
|
||||||
|
本压缩包包含从网页提取的完整数据,用于 AI 辅助页面还原和设计分析。
|
||||||
|
|
||||||
|
## 📦 文件结构
|
||||||
|
|
||||||
|
```
|
||||||
|
├── README.md # 本说明文件
|
||||||
|
├── screenshot.png # 完整页面截图(系统 API 截取)
|
||||||
|
├── domlist.json # DOM 结构数据(TOON 格式)
|
||||||
|
├── stylePool.json # 样式池数据(TOON 格式)
|
||||||
|
├── theme.json # 设计令牌(可选)
|
||||||
|
├── content.md # 页面内容 Markdown(可选)
|
||||||
|
├── index.html # 参考:生成的 HTML 文件
|
||||||
|
├── style.css # 参考:生成的 CSS 文件
|
||||||
|
└── assets/
|
||||||
|
├── images/ # 图片资源
|
||||||
|
└── fonts/ # 字体资源
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🎯 核心文件说明
|
||||||
|
|
||||||
|
### 1. screenshot.png
|
||||||
|
- **用途:** 页面完整截图,用于视觉参考
|
||||||
|
- **截取方式:** 使用 Chrome DevTools Protocol (CDP) 系统 API
|
||||||
|
- **特点:** 完整页面截图,包含滚动区域,无拼接痕迹
|
||||||
|
- **优先级:** ⭐⭐⭐⭐⭐ 最重要的视觉参考
|
||||||
|
|
||||||
|
### 2. domlist.json(TOON 格式)
|
||||||
|
- **用途:** DOM 节点结构映射
|
||||||
|
- **格式:**
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"n1": {
|
||||||
|
"tag": "div",
|
||||||
|
"children": ["n2", "n3"],
|
||||||
|
"styleId": "style_1",
|
||||||
|
"width": "1200px",
|
||||||
|
"height": "800px",
|
||||||
|
"text": "文本内容",
|
||||||
|
"id": "元素ID",
|
||||||
|
"class": "CSS类名",
|
||||||
|
"label": "data-label",
|
||||||
|
"src": "图片路径"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "n1"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
- **说明:**
|
||||||
|
- `nodes`: 所有节点的映射表
|
||||||
|
- `root`: 根节点 ID
|
||||||
|
- `width/height`: 从样式中独立存放,精确尺寸
|
||||||
|
- `styleId`: 指向 stylePool.json 中的样式
|
||||||
|
|
||||||
|
### 3. stylePool.json(TOON 格式)
|
||||||
|
- **用途:** 去重后的样式池
|
||||||
|
- **格式:**
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"styles": {
|
||||||
|
"style_1": {
|
||||||
|
"tw": "flex items-center justify-between",
|
||||||
|
"custom": {
|
||||||
|
"borderRadius": "8px",
|
||||||
|
"boxShadow": "0 2px 8px rgba(0,0,0,0.1)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
- **说明:**
|
||||||
|
- `tw`: Tailwind CSS 类名(已优化)
|
||||||
|
- `custom`: 无法用 Tailwind 表达的自定义样式
|
||||||
|
- 样式已去重,多个节点可共享同一 styleId
|
||||||
|
|
||||||
|
### 4. theme.json(可选)
|
||||||
|
- **用途:** 页面设计令牌(Top 10)
|
||||||
|
- **内容:** 颜色、字体、间距、圆角、阴影等
|
||||||
|
- **格式:**
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"colors": {
|
||||||
|
"background": [{"value": "#ffffff", "count": 15}],
|
||||||
|
"text": [{"value": "#333333", "count": 20}]
|
||||||
|
},
|
||||||
|
"typography": {
|
||||||
|
"families": ["Inter", "Arial"],
|
||||||
|
"textStyles": [{"size": "16px", "lineHeight": "1.5"}]
|
||||||
|
},
|
||||||
|
"spacing": ["8px", "16px", "24px"],
|
||||||
|
"radius": ["4px", "8px"],
|
||||||
|
"shadow": {
|
||||||
|
"box": ["0 2px 8px rgba(0,0,0,0.1)"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. content.md(可选)
|
||||||
|
- **用途:** 页面文本内容(Markdown 格式)
|
||||||
|
- **用途:** 快速理解页面信息结构和文案
|
||||||
|
|
||||||
|
### 6. index.html 和 style.css(仅供参考)
|
||||||
|
- **⚠️ 注意:** 这两个文件仅供参考,不是还原的必需文件
|
||||||
|
- **用途:**
|
||||||
|
- 快速预览页面效果
|
||||||
|
- 理解 DOM 结构和样式关系
|
||||||
|
- 验证数据的正确性
|
||||||
|
- **说明:**
|
||||||
|
- `index.html`: 使用 Tailwind CDN + 自定义样式
|
||||||
|
- `style.css`: 包含 @font-face 和自定义样式
|
||||||
|
- 可以直接在浏览器中打开查看效果
|
||||||
|
- **还原时:** 应该使用 `domlist.json` 和 `stylePool.json`,而不是直接使用这两个文件
|
||||||
|
|
||||||
|
## 🚀 快速还原指引(推荐)
|
||||||
|
|
||||||
|
**目标:** 快速生成页面视觉效果,节省 token
|
||||||
|
|
||||||
|
**数据源优先级:**
|
||||||
|
1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考
|
||||||
|
2. ⭐⭐⭐⭐ `theme.json` - 设计令牌
|
||||||
|
3. ⭐⭐⭐ `content.md` - 内容结构
|
||||||
|
4. ⭐⭐ `index.html` - 参考实现(可选)
|
||||||
|
|
||||||
|
**操作步骤:**
|
||||||
|
|
||||||
|
1. **分析截图**
|
||||||
|
- 识别页面整体布局(header、main、footer)
|
||||||
|
- 识别主要视觉元素(导航、卡片、按钮等)
|
||||||
|
- 识别颜色、字体、间距等设计风格
|
||||||
|
|
||||||
|
2. **提取设计令牌**(从 theme.json)
|
||||||
|
- 颜色:背景色、文本色、边框色
|
||||||
|
- 字体:字体家族、字号、行高、粗细
|
||||||
|
- 间距:margin、padding、gap
|
||||||
|
- 其他:圆角、阴影、线宽
|
||||||
|
|
||||||
|
3. **生成 DOM 结构**
|
||||||
|
- 根据截图创建简化的 DOM 层级
|
||||||
|
- 不必严格按照 domlist.json
|
||||||
|
- 使用 theme.json 中的设计令牌
|
||||||
|
|
||||||
|
4. **添加资源**
|
||||||
|
- 图片:使用 `assets/images/` 中的资源
|
||||||
|
- 字体:使用 `assets/fonts/` 或系统字体
|
||||||
|
|
||||||
|
5. **微调样式**
|
||||||
|
- 对比截图调整布局和样式
|
||||||
|
- 确保视觉效果接近原页面
|
||||||
|
|
||||||
|
**优点:**
|
||||||
|
- ✅ 快速生成
|
||||||
|
- ✅ 节省 token
|
||||||
|
- ✅ 视觉效果好
|
||||||
|
|
||||||
|
## 🎨 精细还原指引(高保真)
|
||||||
|
|
||||||
|
**目标:** 高保真还原页面结构与样式
|
||||||
|
|
||||||
|
**数据源优先级:**
|
||||||
|
1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考
|
||||||
|
2. ⭐⭐⭐⭐⭐ `domlist.json` - DOM 结构
|
||||||
|
3. ⭐⭐⭐⭐⭐ `stylePool.json` - 样式数据
|
||||||
|
4. ⭐⭐⭐⭐ `theme.json` - 设计令牌
|
||||||
|
5. ⭐⭐ `index.html` - 参考实现(可选)
|
||||||
|
|
||||||
|
**操作步骤:**
|
||||||
|
|
||||||
|
1. **分析截图**
|
||||||
|
- 页面整体布局、颜色分布、主要元素
|
||||||
|
|
||||||
|
2. **构建 DOM 树**(从 domlist.json)
|
||||||
|
- 按 `children` 严格构建节点层级
|
||||||
|
- 保留所有节点属性(id、class、label、src 等)
|
||||||
|
- 使用 `width` 和 `height` 设置精确尺寸
|
||||||
|
|
||||||
|
3. **应用样式**(从 stylePool.json)
|
||||||
|
- 每个节点通过 `styleId` 关联样式
|
||||||
|
- `tw` 字段:Tailwind CSS 类名
|
||||||
|
- `custom` 字段:自定义样式(CSS-in-JS 或 style 属性)
|
||||||
|
|
||||||
|
4. **添加资源**
|
||||||
|
- 图片:`assets/images/` 中的资源,保持原始尺寸
|
||||||
|
- 字体:`assets/fonts/` 中的 Web 字体,使用 @font-face
|
||||||
|
|
||||||
|
5. **微调细节**
|
||||||
|
- 对比截图调整节点尺寸、间距、字体、阴影
|
||||||
|
- 确保视觉效果高度还原
|
||||||
|
|
||||||
|
**优点:**
|
||||||
|
- ✅ 高保真还原
|
||||||
|
- ✅ 结构完整
|
||||||
|
- ✅ 样式精确
|
||||||
|
|
||||||
|
## 💡 使用建议
|
||||||
|
|
||||||
|
### 选择还原方式
|
||||||
|
|
||||||
|
- **快速原型:** 使用快速还原指引
|
||||||
|
- **生产环境:** 使用精细还原指引
|
||||||
|
- **AI Agent:** 使用渐进式还原指引(见下方 🧠 模式)
|
||||||
|
- **学习参考:** 打开 `index.html` 查看效果
|
||||||
|
|
||||||
|
### 注意事项
|
||||||
|
|
||||||
|
1. **截图优先:** 如果数据与截图冲突,以截图为准
|
||||||
|
2. **样式优化:** stylePool 中的样式已优化(Tailwind + 自定义)
|
||||||
|
3. **资源路径:** 图片和字体路径需要根据实际部署调整
|
||||||
|
4. **响应式:** 原始页面的响应式样式可能未完全保留
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🧠 渐进式高精度还原(AI Agent 推荐)
|
||||||
|
|
||||||
|
使用查询脚本实现渐进式数据读取,避免 Context Window 溢出。
|
||||||
|
当离线数据不完整时,利用 Playwright 回溯原始页面补充采集。
|
||||||
|
|
||||||
|
**前置条件:** Node.js >= 18
|
||||||
|
|
||||||
|
**原始页面 URL:** `manifest.json` → `sourceUrl` 字段。
|
||||||
|
当数据不准确时,AI 可通过 Playwright 访问此 URL 获取实时信息。
|
||||||
|
|
||||||
|
### 渐进式读取
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Step 1 — 全局概览(~500 tokens)
|
||||||
|
node scripts/query-page-data.mjs <dir> summary
|
||||||
|
node scripts/query-page-data.mjs <dir> skeleton --depth=2
|
||||||
|
|
||||||
|
# Step 2 — 按 Section 深入
|
||||||
|
node scripts/query-page-data.mjs <dir> subtree n2 --depth=3
|
||||||
|
node scripts/query-page-data.mjs <dir> nodes n3,n4,n5 --fields=style,text,selector
|
||||||
|
|
||||||
|
# Step 3 — 条件反查
|
||||||
|
node scripts/query-page-data.mjs <dir> find --tag=button --interactive
|
||||||
|
node scripts/query-page-data.mjs <dir> find --text="登录"
|
||||||
|
```
|
||||||
|
|
||||||
|
### 在线回溯(按需)
|
||||||
|
|
||||||
|
当发现离线数据可疑时,可使用 Playwright(MCP 或 CLI)访问 `sourceUrl`:
|
||||||
|
- 每个节点文件 `flat/nodes/{id}.json` 包含 `selector` 字段
|
||||||
|
- 该 `selector` 可直接用于 `page.locator(selector)` 定位原始元素
|
||||||
|
- 截图、computedStyle、hover 态等均可按需获取
|
||||||
|
|
||||||
|
### 扁平化文件结构(full/interactive 模式)
|
||||||
|
|
||||||
|
```
|
||||||
|
flat/
|
||||||
|
├── skeleton.json # 极简骨架树(含 sourceUrl,< 5KB)
|
||||||
|
├── index.json # 反向索引(tag/role/interactive 分类)
|
||||||
|
├── nodes/ # 每个节点的完整数据(含 selector + bbox)
|
||||||
|
│ ├── n1.json
|
||||||
|
│ └── ...
|
||||||
|
└── styles/ # 每个样式的完整数据
|
||||||
|
├── style_1.json
|
||||||
|
└── ...
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📚 相关资源
|
||||||
|
|
||||||
|
- **TOON 格式:** https://github.com/toon-format/toon
|
||||||
|
- **Tailwind CSS:** https://tailwindcss.com/
|
||||||
|
- **Chrome Extension:** Axhub Make
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**生成时间:** 2026-04-20T15:28:01.363Z
|
||||||
|
**版本:** 3.0(渐进式检索 + 在线回溯)
|
||||||
113
AI-Arco-Design-Themes-Demos-complete/content.md
Normal file
113
AI-Arco-Design-Themes-Demos-complete/content.md
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
[常用组件](/themes/demo/preview/common-components)
|
||||||
|
|
||||||
|
仪表盘
|
||||||
|
|
||||||
|
工作台
|
||||||
|
|
||||||
|
实时监控
|
||||||
|
|
||||||
|
数据可视化
|
||||||
|
|
||||||
|
分析页
|
||||||
|
|
||||||
|
多维数据分析
|
||||||
|
|
||||||
|
列表页
|
||||||
|
|
||||||
|
查询表格
|
||||||
|
|
||||||
|
卡片列表
|
||||||
|
|
||||||
|
表单页
|
||||||
|
|
||||||
|
分组表单
|
||||||
|
|
||||||
|
分步表单
|
||||||
|
|
||||||
|
详情页
|
||||||
|
|
||||||
|
基础详情页
|
||||||
|
|
||||||
|
结果页
|
||||||
|
|
||||||
|
成功页
|
||||||
|
|
||||||
|
失败页
|
||||||
|
|
||||||
|
异常页
|
||||||
|
|
||||||
|
403
|
||||||
|
|
||||||
|
404
|
||||||
|
|
||||||
|
500
|
||||||
|
|
||||||
|
个人中心
|
||||||
|
|
||||||
|
用户信息
|
||||||
|
|
||||||
|
用户设置
|
||||||
|
|
||||||
|
列表页
|
||||||
|
|
||||||
|
查询表格
|
||||||
|
|
||||||
|
元素检查 dom-inspector
|
||||||
|
|
||||||
|
###### 查询表格
|
||||||
|
|
||||||
|
集合编号
|
||||||
|
|
||||||
|
集合名称
|
||||||
|
|
||||||
|
内容体裁
|
||||||
|
|
||||||
|
全部
|
||||||
|
|
||||||
|
筛选方式
|
||||||
|
|
||||||
|
全部
|
||||||
|
|
||||||
|
创建时间
|
||||||
|
|
||||||
|
\-
|
||||||
|
|
||||||
|
状态
|
||||||
|
|
||||||
|
全部
|
||||||
|
|
||||||
|
查询重置
|
||||||
|
|
||||||
|
新建
|
||||||
|
|
||||||
|
批量导入
|
||||||
|
|
||||||
|
下载
|
||||||
|
|
||||||
|
| 集合编号 | 集合名称 | 内容体裁 | 筛选方式 | 内容量 | 创建时间 | 状态 | 操作 |
|
||||||
|
| ------------- | -------- | ----- | ---- | ----- | ------------------- | --- | -- |
|
||||||
|
| 18514366-5559 | 每日推荐视频集 | 图文 | 人工 | 105 | 2026-04-10 23:28:13 | 已上线 | 查看 |
|
||||||
|
| 64494084-3767 | 每日推荐视频集 | 横版短视频 | 人工 | 1,246 | 2026-04-16 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 79634294-4686 | 国际新闻集合 | 竖版短视频 | 规则筛选 | 366 | 2026-04-05 23:28:13 | 已上线 | 查看 |
|
||||||
|
| 86326438-1258 | 抖音短视频候选集 | 横版短视频 | 人工 | 1 | 2026-03-03 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 98615157-3293 | 国际新闻集合 | 竖版短视频 | 人工 | 1,316 | 2026-04-03 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 14712111-5478 | 国际新闻集合 | 图文 | 规则筛选 | 1,688 | 2026-03-02 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 34674613-1537 | 每日推荐视频集 | 竖版短视频 | 规则筛选 | 324 | 2026-03-06 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 71922474-4505 | 每日推荐视频集 | 竖版短视频 | 规则筛选 | 1,083 | 2026-03-15 23:28:13 | 未上线 | 查看 |
|
||||||
|
| 14481716-4383 | 抖音短视频候选集 | 横版短视频 | 规则筛选 | 835 | 2026-04-06 23:28:13 | 已上线 | 查看 |
|
||||||
|
| 26506467-1132 | 抖音短视频候选集 | 横版短视频 | 规则筛选 | 1,446 | 2026-03-01 23:28:13 | 已上线 | 查看 |
|
||||||
|
|
||||||
|
共 100 条
|
||||||
|
|
||||||
|
* 1
|
||||||
|
* 2
|
||||||
|
* 3
|
||||||
|
* 4
|
||||||
|
* 5
|
||||||
|
* 10
|
||||||
|
|
||||||
|
10 条/页
|
||||||
|
|
||||||
|
Arco Design Pro
|
||||||
|
|
||||||
|
A design is a plan or specification for the construction of an object or system or for the implementation of an activity or process, or the result of that plan or specification in the form of a prototype, product or process. The verb to design expresses the process of developing a design. The verb to design expresses the process of developing a design. A design is a plan or specification for the construction of an object or system or for the ...--Arco Design展开
|
||||||
1973
AI-Arco-Design-Themes-Demos-complete/flat/index.json
Normal file
1973
AI-Arco-Design-Themes-Demos-complete/flat/index.json
Normal file
File diff suppressed because it is too large
Load Diff
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n1.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n1.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:18px;height:18px;display:inline-block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:18px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:400;vertical-align:text-bottom;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-apps\"><path stroke-linejoin=\"round\" d=\"M7 7H20V20H7z\"></path><path stroke-linejoin=\"round\" d=\"M28 7H41V20H28z\"></path><path stroke-linejoin=\"round\" d=\"M7 28H20V41H7z\"></path><path stroke-linejoin=\"round\" d=\"M28 28H41V41H28z\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 20,
|
||||||
|
"top": 60,
|
||||||
|
"width": 80
|
||||||
|
},
|
||||||
|
"nodeId": "n1",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n10.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n10.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 20,
|
||||||
|
"top": 136,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n9"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n10",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n100.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n100.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 44,
|
||||||
|
"left": 8,
|
||||||
|
"top": 400,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n88",
|
||||||
|
"n99"
|
||||||
|
],
|
||||||
|
"height": "44px",
|
||||||
|
"nodeId": "n100",
|
||||||
|
"originalClass": "arco-menu-inline",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8)",
|
||||||
|
"styleId": "style_11",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n101.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n101.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:18px;height:18px;display:inline-block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:18px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:500;vertical-align:text-bottom;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-exclamation-circle\"><path d=\"M24 28V14m0 16v4M6 24c0-9.941 8.059-18 18-18s18 8.059 18 18-8.059 18-18 18S6 33.941 6 24Z\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 40,
|
||||||
|
"top": 532,
|
||||||
|
"width": 160
|
||||||
|
},
|
||||||
|
"nodeId": "n101",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n102.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n102.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-exclamation-circle\"><path d=\"M24 28V14m0 16v4M6 24c0-9.941 8.059-18 18-18s18 8.059 18 18-8.059 18-18 18S6 33.941 6 24Z\"></path></svg> 异常页",
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 20,
|
||||||
|
"top": 557,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n101"
|
||||||
|
],
|
||||||
|
"nodeId": "n102",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span:nth-of-type(1) > span.arco-menu-indent",
|
||||||
|
"styleId": "style_3",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "异常页"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n103.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n103.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:14px;height:14px;display:inline-block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:14px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:500;vertical-align:-2px;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"arco-icon arco-icon-down\"><path d=\"M39.6 17.443 24.043 33 8.487 17.443\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 8,
|
||||||
|
"top": 444,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"nodeId": "n103",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n104.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n104.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 20,
|
||||||
|
"top": 456,
|
||||||
|
"width": 94
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n103"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n104",
|
||||||
|
"originalClass": "arco-menu-icon-suffix",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_4",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "14px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n105.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n105.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 44,
|
||||||
|
"left": 8,
|
||||||
|
"top": 444,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n102",
|
||||||
|
"n104"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n105",
|
||||||
|
"originalClass": "arco-menu-inline-header",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9)",
|
||||||
|
"styleId": "style_5",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n106.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n106.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 20,
|
||||||
|
"top": 488,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n106",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n107.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n107.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 186,
|
||||||
|
"top": 444,
|
||||||
|
"width": 14
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n106"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n107",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n108.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n108.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 18,
|
||||||
|
"left": 40,
|
||||||
|
"top": 495,
|
||||||
|
"width": 12
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n108",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n109.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n109.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 403",
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 20,
|
||||||
|
"top": 513,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n108"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n109",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "403",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n11.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n11.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 44,
|
||||||
|
"left": 8,
|
||||||
|
"top": 92,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n11",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n110.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n110.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 8,
|
||||||
|
"top": 488,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n107",
|
||||||
|
"n109"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n110",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n111.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n111.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 20,
|
||||||
|
"top": 532,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n111",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n112.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n112.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 40,
|
||||||
|
"top": 488,
|
||||||
|
"width": 160
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n111"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n112",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n113.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n113.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 18,
|
||||||
|
"left": 40,
|
||||||
|
"top": 539,
|
||||||
|
"width": 12
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n113",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n114.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n114.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 404",
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 20,
|
||||||
|
"top": 557,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n113"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n114",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "404",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n115.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n115.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 8,
|
||||||
|
"top": 532,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n112",
|
||||||
|
"n114"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n115",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n116.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n116.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 270,
|
||||||
|
"top": 16,
|
||||||
|
"width": 14
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n116",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(1)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n117.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n117.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 40,
|
||||||
|
"top": 532,
|
||||||
|
"width": 160
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n116"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n117",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n118.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n118.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 1198,
|
||||||
|
"left": 220,
|
||||||
|
"top": 0,
|
||||||
|
"width": 1565
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n118",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.layout-content-wrapper--xX3sP",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n119.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n119.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 500",
|
||||||
|
"bbox": {
|
||||||
|
"height": 1238,
|
||||||
|
"left": 0,
|
||||||
|
"top": 0,
|
||||||
|
"width": 1785
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n118"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n119",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "section.arco-layout.layout-content--Fd7YS",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "500",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n12.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n12.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 工作台",
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 40,
|
||||||
|
"top": 136,
|
||||||
|
"width": 160
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n11"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n12",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "工作台",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n120.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n120.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 184,
|
||||||
|
"top": 833,
|
||||||
|
"width": 24
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n117",
|
||||||
|
"n119"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n120",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.collapse-btn--FJHnQ",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n121.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n121.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 8,
|
||||||
|
"top": 488,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n110",
|
||||||
|
"n115",
|
||||||
|
"n120"
|
||||||
|
],
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n121",
|
||||||
|
"originalClass": "arco-menu-inline-content",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2)",
|
||||||
|
"styleId": "style_10",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n122.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n122.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 18,
|
||||||
|
"left": 40,
|
||||||
|
"top": 539,
|
||||||
|
"width": 12
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n105",
|
||||||
|
"n121"
|
||||||
|
],
|
||||||
|
"height": "44px",
|
||||||
|
"nodeId": "n122",
|
||||||
|
"originalClass": "arco-menu-inline",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB",
|
||||||
|
"styleId": "style_11",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n123.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n123.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:18px;height:18px;display:inline-block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:18px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:500;vertical-align:text-bottom;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-user\"><path d=\"M7 37c0-4.97 4.03-8 9-8h16c4.97 0 9 3.03 9 8v3a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-3Z\"></path><circle cx=\"24\" cy=\"15\" r=\"8\"></circle></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 18,
|
||||||
|
"left": 240,
|
||||||
|
"top": 19,
|
||||||
|
"width": 26
|
||||||
|
},
|
||||||
|
"nodeId": "n123",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(1)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n124.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n124.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-user\"><path d=\"M7 37c0-4.97 4.03-8 9-8h16c4.97 0 9 3.03 9 8v3a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-3Z\"></path><circle cx=\"24\" cy=\"15\" r=\"8\"></circle></svg> 个人中心",
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 342,
|
||||||
|
"top": 16,
|
||||||
|
"width": 14
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n123"
|
||||||
|
],
|
||||||
|
"nodeId": "n124",
|
||||||
|
"selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(2)",
|
||||||
|
"styleId": "style_3",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "个人中心"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n125.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n125.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:14px;height:14px;display:inline-block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:14px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:500;vertical-align:-2px;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"arco-icon arco-icon-down\"><path d=\"M39.6 17.443 24.043 33 8.487 17.443\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 360,
|
||||||
|
"top": 16,
|
||||||
|
"width": 64
|
||||||
|
},
|
||||||
|
"nodeId": "n125",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(3)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n126.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n126.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 288,
|
||||||
|
"top": 16,
|
||||||
|
"width": 50
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n125"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n126",
|
||||||
|
"originalClass": "arco-menu-icon-suffix",
|
||||||
|
"selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(2)",
|
||||||
|
"styleId": "style_4",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "14px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n127.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n127.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 240,
|
||||||
|
"top": 16,
|
||||||
|
"width": 184
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n124",
|
||||||
|
"n126"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n127",
|
||||||
|
"originalClass": "arco-menu-inline-header",
|
||||||
|
"selector": "div.arco-breadcrumb",
|
||||||
|
"styleId": "style_5",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n128.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n128.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 1729,
|
||||||
|
"top": 16,
|
||||||
|
"width": 36
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n128",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(2)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n129.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n129.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 21,
|
||||||
|
"left": 1572,
|
||||||
|
"top": 18,
|
||||||
|
"width": 149
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n128"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n129",
|
||||||
|
"selector": "p.inspector-text",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n13.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n13.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 18,
|
||||||
|
"left": 40,
|
||||||
|
"top": 143,
|
||||||
|
"width": 12
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n10",
|
||||||
|
"n12"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n13",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n130.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n130.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 20,
|
||||||
|
"left": 1729,
|
||||||
|
"top": 18,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n130",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.arco-switch-dot",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n131.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n131.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 用户信息",
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 1729,
|
||||||
|
"top": 16,
|
||||||
|
"width": 36
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n130"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n131",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "button.arco-switch.arco-switch-type-line",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "用户信息",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n132.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n132.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 21,
|
||||||
|
"left": 1572,
|
||||||
|
"top": 18,
|
||||||
|
"width": 149
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n129",
|
||||||
|
"n131"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n132",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(1)",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n133.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n133.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 1142,
|
||||||
|
"left": 240,
|
||||||
|
"top": 56,
|
||||||
|
"width": 1525
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n133",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.arco-card-body",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n134.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n134.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 1142,
|
||||||
|
"left": 240,
|
||||||
|
"top": 56,
|
||||||
|
"width": 1525
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n133"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n134",
|
||||||
|
"selector": "main.arco-layout-content",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n135.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n135.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 105,
|
||||||
|
"left": 260,
|
||||||
|
"top": 116,
|
||||||
|
"width": 1485
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n135",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.search-form-wrapper--jiX5t",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n136.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n136.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 用户设置",
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 260,
|
||||||
|
"top": 76,
|
||||||
|
"width": 1485
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n135"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n136",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "h6.arco-typography",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "用户设置",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n137.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n137.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 1142,
|
||||||
|
"left": 240,
|
||||||
|
"top": 56,
|
||||||
|
"width": 1525
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n134",
|
||||||
|
"n136"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n137",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.arco-card.arco-card-size-default",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n138.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n138.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 1572,
|
||||||
|
"top": 16,
|
||||||
|
"width": 193
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n132",
|
||||||
|
"n137"
|
||||||
|
],
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n138",
|
||||||
|
"originalClass": "arco-menu-inline-content",
|
||||||
|
"selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2)",
|
||||||
|
"styleId": "style_10",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n139.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n139.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 24,
|
||||||
|
"left": 240,
|
||||||
|
"top": 16,
|
||||||
|
"width": 1525
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n127",
|
||||||
|
"n138"
|
||||||
|
],
|
||||||
|
"height": "44px",
|
||||||
|
"nodeId": "n139",
|
||||||
|
"originalClass": "arco-menu-inline",
|
||||||
|
"selector": "div.layout-breadcrumb--aBouq",
|
||||||
|
"styleId": "style_11",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n14.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n14.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 186,
|
||||||
|
"top": 92,
|
||||||
|
"width": 14
|
||||||
|
},
|
||||||
|
"height": "0px",
|
||||||
|
"nodeId": "n14",
|
||||||
|
"originalClass": "arco-menu-indent",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
26
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n140.json
Normal file
26
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n140.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 44,
|
||||||
|
"left": 8,
|
||||||
|
"top": 48,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n3",
|
||||||
|
"n20",
|
||||||
|
"n37",
|
||||||
|
"n54",
|
||||||
|
"n71",
|
||||||
|
"n83",
|
||||||
|
"n100",
|
||||||
|
"n122",
|
||||||
|
"n139"
|
||||||
|
],
|
||||||
|
"height": "492px",
|
||||||
|
"nodeId": "n140",
|
||||||
|
"originalClass": "arco-menu-inner",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2)",
|
||||||
|
"styleId": "style_19",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "220px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n141.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n141.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 8,
|
||||||
|
"top": 4,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n140"
|
||||||
|
],
|
||||||
|
"height": "492px",
|
||||||
|
"nodeId": "n141",
|
||||||
|
"originalClass": "arco-menu arco-menu-light arco-menu-vertical",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1)",
|
||||||
|
"styleId": "style_20",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "220px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n142.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n142.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 492,
|
||||||
|
"left": 0,
|
||||||
|
"top": 0,
|
||||||
|
"width": 220
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n141"
|
||||||
|
],
|
||||||
|
"height": "921px",
|
||||||
|
"nodeId": "n142",
|
||||||
|
"originalClass": "menu-wrapper--e9ooU",
|
||||||
|
"selector": "div.arco-menu-inner",
|
||||||
|
"styleId": "style_21",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "220px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n143.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n143.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:14px;height:14px;display:block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:14px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:400;vertical-align:-2px;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"arco-icon arco-icon-menu-fold\"><path d=\"M42 11H6M42 24H22M42 37H6M13.66 26.912l-4.82-3.118 4.82-3.118v6.236Z\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 104,
|
||||||
|
"left": 260,
|
||||||
|
"top": 116,
|
||||||
|
"width": 1382
|
||||||
|
},
|
||||||
|
"nodeId": "n143",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n144.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n144.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 104,
|
||||||
|
"left": 248,
|
||||||
|
"top": 116,
|
||||||
|
"width": 1386
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n143"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n144",
|
||||||
|
"originalClass": "collapse-btn--FJHnQ",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start",
|
||||||
|
"styleId": "style_22",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "24px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n145.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n145.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 492,
|
||||||
|
"left": 0,
|
||||||
|
"top": 0,
|
||||||
|
"width": 220
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n142",
|
||||||
|
"n144"
|
||||||
|
],
|
||||||
|
"height": "921px",
|
||||||
|
"nodeId": "n145",
|
||||||
|
"originalClass": "arco-layout-sider-children",
|
||||||
|
"selector": "div.arco-menu.arco-menu-light",
|
||||||
|
"styleId": "style_23",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "220px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n146.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n146.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 869,
|
||||||
|
"left": 0,
|
||||||
|
"top": 0,
|
||||||
|
"width": 220
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n145"
|
||||||
|
],
|
||||||
|
"height": "921px",
|
||||||
|
"nodeId": "n146",
|
||||||
|
"originalClass": "arco-layout-sider arco-layout-sider-light layout-sider--G4cYl",
|
||||||
|
"selector": "aside.arco-layout-sider.arco-layout-sider-light",
|
||||||
|
"styleId": "style_24",
|
||||||
|
"tag": "aside",
|
||||||
|
"width": "220px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n147.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n147.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:18px;height:18px;display:block;stroke:rgb(134, 144, 156);stroke-width:4px;color:rgb(134, 144, 156);font-size:18px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:400;vertical-align:text-bottom;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"icon--xP5pP arco-icon arco-icon-list\"><path d=\"M13 24h30M5 12h4m4 24h30M13 12h30M5 24h4M5 36h4\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 260,
|
||||||
|
"top": 124,
|
||||||
|
"width": 56
|
||||||
|
},
|
||||||
|
"nodeId": "n147",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n148.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n148.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n147"
|
||||||
|
],
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n148",
|
||||||
|
"originalClass": "arco-breadcrumb-item",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper",
|
||||||
|
"styleId": "style_25",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "18px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n149.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n149.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:14px;height:14px;display:inline-block;stroke:rgb(201, 205, 212);stroke-width:4px;color:rgb(201, 205, 212);font-size:14px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:400;vertical-align:-2px;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"arco-icon arco-icon-oblique-line\"><path d=\"M29.506 6.502 18.493 41.498\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"nodeId": "n149",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "#id",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n15.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n15.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 20,
|
||||||
|
"top": 104,
|
||||||
|
"width": 108
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n14"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n15",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_7",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n150.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n150.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n149"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n150",
|
||||||
|
"originalClass": "arco-breadcrumb-item-separator",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > span.arco-input-inner-wrapper.arco-input-inner-wrapper-default",
|
||||||
|
"styleId": "style_26",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "14px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n151.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n151.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n151",
|
||||||
|
"originalClass": "arco-breadcrumb-item",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children",
|
||||||
|
"styleId": "style_25",
|
||||||
|
"tag": "div",
|
||||||
|
"text": "列表页",
|
||||||
|
"width": "42px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n152.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n152.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<svg style=\"width:14px;height:14px;display:inline-block;stroke:rgb(201, 205, 212);stroke-width:4px;color:rgb(201, 205, 212);font-size:14px;font-family:Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;font-weight:400;vertical-align:-2px;overflow:hidden;visibility:visible\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"4\" viewBox=\"0 0 48 48\" width=\"1em\" height=\"1em\" class=\"arco-icon arco-icon-oblique-line\"><path d=\"M29.506 6.502 18.493 41.498\"></path></svg>",
|
||||||
|
"bbox": {
|
||||||
|
"height": 52,
|
||||||
|
"left": 710,
|
||||||
|
"top": 116,
|
||||||
|
"width": 462
|
||||||
|
},
|
||||||
|
"nodeId": "n152",
|
||||||
|
"originalClass": "[object SVGAnimatedString]",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2)",
|
||||||
|
"tag": "svg"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n153.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n153.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 364,
|
||||||
|
"top": 117,
|
||||||
|
"width": 321
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n152"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n153",
|
||||||
|
"originalClass": "arco-breadcrumb-item-separator",
|
||||||
|
"selector": "#id_input",
|
||||||
|
"styleId": "style_26",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "14px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n154.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n154.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 722,
|
||||||
|
"top": 116,
|
||||||
|
"width": 438
|
||||||
|
},
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n154",
|
||||||
|
"originalClass": "arco-breadcrumb-item",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start",
|
||||||
|
"styleId": "style_27",
|
||||||
|
"tag": "div",
|
||||||
|
"text": "查询表格",
|
||||||
|
"width": "56px"
|
||||||
|
}
|
||||||
22
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n155.json
Normal file
22
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n155.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n148",
|
||||||
|
"n150",
|
||||||
|
"n151",
|
||||||
|
"n153",
|
||||||
|
"n154"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n155",
|
||||||
|
"originalClass": "arco-breadcrumb",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)",
|
||||||
|
"styleId": "style_28",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "184px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n156.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n156.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 722,
|
||||||
|
"top": 124,
|
||||||
|
"width": 56
|
||||||
|
},
|
||||||
|
"height": "21px",
|
||||||
|
"nodeId": "n156",
|
||||||
|
"originalClass": "inspector-text",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label",
|
||||||
|
"styleId": "style_29",
|
||||||
|
"tag": "p",
|
||||||
|
"text": "元素检查 dom-inspector",
|
||||||
|
"width": "148.594px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n157.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n157.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 813,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n156"
|
||||||
|
],
|
||||||
|
"height": "21px",
|
||||||
|
"nodeId": "n157",
|
||||||
|
"originalClass": "arco-space-item",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)",
|
||||||
|
"styleId": "style_30",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "148.594px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n158.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n158.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 813,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"height": "20px",
|
||||||
|
"nodeId": "n158",
|
||||||
|
"originalClass": "arco-switch-dot",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children",
|
||||||
|
"styleId": "style_31",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "20px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n159.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n159.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 813,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n158"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n159",
|
||||||
|
"originalClass": "arco-switch arco-switch-type-line inspector-switch",
|
||||||
|
"selector": "#name",
|
||||||
|
"styleId": "style_32",
|
||||||
|
"tag": "button",
|
||||||
|
"width": "36px"
|
||||||
|
}
|
||||||
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n16.json
Normal file
15
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n16.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 8,
|
||||||
|
"top": 136,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"height": "18px",
|
||||||
|
"nodeId": "n16",
|
||||||
|
"originalClass": "icon-empty--ILNVB",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2)",
|
||||||
|
"styleId": "style_6",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "12px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n160.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n160.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 813,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n159"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n160",
|
||||||
|
"originalClass": "arco-space-item",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper",
|
||||||
|
"styleId": "style_33",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "36px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n161.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n161.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 722,
|
||||||
|
"top": 116,
|
||||||
|
"width": 91
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n157",
|
||||||
|
"n160"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n161",
|
||||||
|
"originalClass": "arco-space arco-space-horizontal arco-space-align-center",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)",
|
||||||
|
"styleId": "style_34",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "192.594px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n162.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n162.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 260,
|
||||||
|
"top": 116,
|
||||||
|
"width": 91
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n155",
|
||||||
|
"n161"
|
||||||
|
],
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n162",
|
||||||
|
"originalClass": "layout-breadcrumb--aBouq",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)",
|
||||||
|
"styleId": "style_35",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "1525px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n163.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n163.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 826,
|
||||||
|
"top": 117,
|
||||||
|
"width": 321
|
||||||
|
},
|
||||||
|
"height": "24px",
|
||||||
|
"nodeId": "n163",
|
||||||
|
"originalClass": "arco-typography",
|
||||||
|
"selector": "#name_input",
|
||||||
|
"styleId": "style_36",
|
||||||
|
"tag": "h6",
|
||||||
|
"text": "查询表格",
|
||||||
|
"width": "1485px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n164.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n164.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 1275,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"nodeId": "n164",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple",
|
||||||
|
"styleId": "style_37",
|
||||||
|
"tag": "label",
|
||||||
|
"text": "集合编号"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n165.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n165.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 1275,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n164"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n165",
|
||||||
|
"originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children",
|
||||||
|
"styleId": "style_38",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "91.25px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n166.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n166.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 1279,
|
||||||
|
"top": 124,
|
||||||
|
"width": 44
|
||||||
|
},
|
||||||
|
"height": "30px",
|
||||||
|
"id": "id_input",
|
||||||
|
"nodeId": "n166",
|
||||||
|
"originalClass": "arco-input arco-input-size-default",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default",
|
||||||
|
"styleId": "style_39",
|
||||||
|
"tag": "input",
|
||||||
|
"width": "320.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n167.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n167.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 0,
|
||||||
|
"left": 1279,
|
||||||
|
"top": 117,
|
||||||
|
"width": 36
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n166"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n167",
|
||||||
|
"originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > span.arco-input-tag-input-mirror",
|
||||||
|
"styleId": "style_40",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n168.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n168.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 1279,
|
||||||
|
"top": 117,
|
||||||
|
"width": 315
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n167"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n168",
|
||||||
|
"originalClass": "arco-form-item-control-children",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner",
|
||||||
|
"styleId": "style_41",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n169.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n169.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 1279,
|
||||||
|
"top": 117,
|
||||||
|
"width": 315
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n168"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"id": "id",
|
||||||
|
"nodeId": "n169",
|
||||||
|
"originalClass": "arco-form-item-control",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view",
|
||||||
|
"styleId": "style_42",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n17.json
Normal file
20
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n17.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"_innerHTML": "<div class=\"icon-empty--ILNVB\"></div> 实时监控",
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 20,
|
||||||
|
"top": 136,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n16"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n17",
|
||||||
|
"originalClass": "arco-menu-item-inner",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)",
|
||||||
|
"styleId": "style_8",
|
||||||
|
"tag": "span",
|
||||||
|
"text": "实时监控",
|
||||||
|
"width": "160px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n170.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n170.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 1279,
|
||||||
|
"top": 117,
|
||||||
|
"width": 315
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n169"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n170",
|
||||||
|
"originalClass": "arco-form-item-control-wrapper",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)",
|
||||||
|
"styleId": "style_43",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n171.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n171.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 1275,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n170"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n171",
|
||||||
|
"originalClass": "arco-col arco-col-19 arco-form-item-wrapper",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view",
|
||||||
|
"styleId": "style_44",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n172.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n172.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 1275,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n165",
|
||||||
|
"n171"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n172",
|
||||||
|
"originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal",
|
||||||
|
"selector": "#contentType",
|
||||||
|
"styleId": "style_45",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "438px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n173.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n173.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 1275,
|
||||||
|
"top": 116,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n172"
|
||||||
|
],
|
||||||
|
"nodeId": "n173",
|
||||||
|
"originalClass": "arco-col arco-col-8",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper",
|
||||||
|
"styleId": "style_46",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "462px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n174.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n174.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 260,
|
||||||
|
"top": 176,
|
||||||
|
"width": 56
|
||||||
|
},
|
||||||
|
"nodeId": "n174",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label",
|
||||||
|
"styleId": "style_37",
|
||||||
|
"tag": "label",
|
||||||
|
"text": "集合名称"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n175.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n175.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 52,
|
||||||
|
"left": 248,
|
||||||
|
"top": 168,
|
||||||
|
"width": 462
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n174"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n175",
|
||||||
|
"originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4)",
|
||||||
|
"styleId": "style_38",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "91.25px"
|
||||||
|
}
|
||||||
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n176.json
Normal file
16
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n176.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 16,
|
||||||
|
"left": 355,
|
||||||
|
"top": 176,
|
||||||
|
"width": 44
|
||||||
|
},
|
||||||
|
"height": "30px",
|
||||||
|
"id": "name_input",
|
||||||
|
"nodeId": "n176",
|
||||||
|
"originalClass": "arco-input arco-input-size-default",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default",
|
||||||
|
"styleId": "style_39",
|
||||||
|
"tag": "input",
|
||||||
|
"width": "320.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n177.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n177.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 168,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n176"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n177",
|
||||||
|
"originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper",
|
||||||
|
"selector": "#filterType",
|
||||||
|
"styleId": "style_40",
|
||||||
|
"tag": "span",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n178.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n178.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 168,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n177"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n178",
|
||||||
|
"originalClass": "arco-form-item-control-children",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper",
|
||||||
|
"styleId": "style_41",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n179.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n179.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 351,
|
||||||
|
"top": 168,
|
||||||
|
"width": 347
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n178"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"id": "name",
|
||||||
|
"nodeId": "n179",
|
||||||
|
"originalClass": "arco-form-item-control",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)",
|
||||||
|
"styleId": "style_42",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n18.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n18.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 40,
|
||||||
|
"left": 8,
|
||||||
|
"top": 92,
|
||||||
|
"width": 204
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n15",
|
||||||
|
"n17"
|
||||||
|
],
|
||||||
|
"height": "40px",
|
||||||
|
"nodeId": "n18",
|
||||||
|
"originalClass": "arco-menu-item arco-menu-item-indented",
|
||||||
|
"selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1)",
|
||||||
|
"styleId": "style_9",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "204px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n180.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n180.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 260,
|
||||||
|
"top": 168,
|
||||||
|
"width": 91
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n179"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n180",
|
||||||
|
"originalClass": "arco-form-item-control-wrapper",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)",
|
||||||
|
"styleId": "style_43",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n181.json
Normal file
18
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n181.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 32,
|
||||||
|
"left": 260,
|
||||||
|
"top": 168,
|
||||||
|
"width": 438
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n180"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n181",
|
||||||
|
"originalClass": "arco-col arco-col-19 arco-form-item-wrapper",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start",
|
||||||
|
"styleId": "style_44",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "346.75px"
|
||||||
|
}
|
||||||
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n182.json
Normal file
19
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n182.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 12,
|
||||||
|
"left": 1598,
|
||||||
|
"top": 126,
|
||||||
|
"width": 12
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n175",
|
||||||
|
"n181"
|
||||||
|
],
|
||||||
|
"height": "32px",
|
||||||
|
"nodeId": "n182",
|
||||||
|
"originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon",
|
||||||
|
"styleId": "style_45",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "438px"
|
||||||
|
}
|
||||||
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n183.json
Normal file
17
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n183.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 1598,
|
||||||
|
"top": 117,
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"n182"
|
||||||
|
],
|
||||||
|
"nodeId": "n183",
|
||||||
|
"originalClass": "arco-col arco-col-8",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)",
|
||||||
|
"styleId": "style_46",
|
||||||
|
"tag": "div",
|
||||||
|
"width": "462px"
|
||||||
|
}
|
||||||
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n184.json
Normal file
13
AI-Arco-Design-Themes-Demos-complete/flat/nodes/n184.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"bbox": {
|
||||||
|
"height": 30,
|
||||||
|
"left": 355,
|
||||||
|
"top": 169,
|
||||||
|
"width": 315
|
||||||
|
},
|
||||||
|
"nodeId": "n184",
|
||||||
|
"selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)",
|
||||||
|
"styleId": "style_37",
|
||||||
|
"tag": "label",
|
||||||
|
"text": "内容体裁"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user