From 9bebe28ada0280231e990b55ab9a7e4ab8f0b8d1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8F=9C=E5=BE=97=E8=AE=A9=E4=BA=BA=E5=8F=91=E6=AF=9B?=
<2328204591@qq.com>
Date: Thu, 4 Dec 2025 15:32:05 +0800
Subject: [PATCH 1/2] =?UTF-8?q?doc(grid):=20=E6=9B=B4=E6=96=B0GridUsage?=
=?UTF-8?q?=E7=A4=BA=E4=BE=8B=E5=9D=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/grid/__docs__/__case__/GridUsage.vue | 160 +++++++++++++++---
.../src/grid/__docs__/index.en-US.md | 2 +-
.../src/grid/__docs__/index.zh-CN.md | 2 +-
3 files changed, 141 insertions(+), 23 deletions(-)
diff --git a/packages/opendesign/src/grid/__docs__/__case__/GridUsage.vue b/packages/opendesign/src/grid/__docs__/__case__/GridUsage.vue
index 0ec4f636..8b60b35a 100644
--- a/packages/opendesign/src/grid/__docs__/__case__/GridUsage.vue
+++ b/packages/opendesign/src/grid/__docs__/__case__/GridUsage.vue
@@ -3,32 +3,150 @@
### 使用
+ORow的属性:
+
+通过属性 `inline` 控制 `Row` 的根元素的 `display` 是否为 `inline-flex`;
+
+通过属性 `align` 控制容器辅轴对齐方式;
+
+通过属性 `justify` 控制容器主轴对齐方式;
+
+通过属性 `wrap` 控制容器 `flex-wrap` 样式的值;
+
+通过属性 `direction` 控制容器 `flex-direction` 样式的值;
+
+通过属性 `gap` 控制子元素的间距,注意:当同时为组件传递了 `gap`、`gapX`、`gapY` 属性,将优先使用 `gapX`、`gapY`;
+
+通过属性 `pcS`、`laptop`、`pad`、`padV`、`phone` 可以控制不同断点尺寸下的 `gap`值。
+
+OCol的属性:
+
+通过属性 `flex` 控制元素的 `flex` 样式的值;
+
+通过属性 `align` 控制元素辅轴的对齐方式;
+
+通过属性 `pcS`、`laptop`、`pad`、`padV`、`phone` 可以控制不同断点尺寸下的 `flex`值。
+
+The attributes of ORow:
+
+Control whether the `display` of the root element of the `Row` is`inline-flex`through the property`inline`;
+
+Control the alignment of the container\`s auxiliary axes through the attribute `align`;
+
+Control the alignment of the container\`s main axis through the attribute `justify`;
+
+Control the value of the container `flex-wrap` style through the attribute `wrap`;
+
+Control the value of the container `flex-direction` style through the attribute `direction`;
+
+Control the spacing of child elements through the attribute `gap`. Note: When the attributes`gap`, `gapX`, and `gapY` are passed to a component simultaneously, `gapX` and `gapY` will be used first.
+
+The `gap` value at different breakpoint sizes can be controlled through the attributes`pcS`, `laptop`, `pad`, `padV`, and `phone`.
+
+The properties of OCol:
+
+Control the value of the `flex` style of an element through the attribute `flex`;
+
+Control the alignment of the element\`s secondary axis through the attribute `align`;
+
+The `flex` value at different breakpoint sizes can be controlled through the attributes`pcS`, `laptop`, `pad`, `padV`, and `phone`.
+
### Usage
-
-
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
-
-
-
diff --git a/packages/opendesign/src/grid/__docs__/index.en-US.md b/packages/opendesign/src/grid/__docs__/index.en-US.md
index 92c79bc0..10cc4f16 100644
--- a/packages/opendesign/src/grid/__docs__/index.en-US.md
+++ b/packages/opendesign/src/grid/__docs__/index.en-US.md
@@ -9,7 +9,7 @@ Due to limited browser support for the `gap` property in flex-box (Chrome 84, Sa
## Demo
-
+
## API
diff --git a/packages/opendesign/src/grid/__docs__/index.zh-CN.md b/packages/opendesign/src/grid/__docs__/index.zh-CN.md
index d00afca3..e3f6fa13 100644
--- a/packages/opendesign/src/grid/__docs__/index.zh-CN.md
+++ b/packages/opendesign/src/grid/__docs__/index.zh-CN.md
@@ -9,7 +9,7 @@ kind: container
## 示例
-
+
## API
--
Gitee
From 6350b639830bae1edb0ef7108cedfb25daf1c76f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8F=9C=E5=BE=97=E8=AE=A9=E4=BA=BA=E5=8F=91=E6=AF=9B?=
<2328204591@qq.com>
Date: Thu, 4 Dec 2025 16:52:29 +0800
Subject: [PATCH 2/2] =?UTF-8?q?doc(loading):=20=E6=96=B0=E5=A2=9ELoadingUs?=
=?UTF-8?q?age=E7=A4=BA=E4=BE=8B=E5=9D=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../__docs__/__case__/LoadingUsage.vue | 73 +++++++++++++++++++
.../src/loading/__docs__/index.en-US.md | 1 +
.../src/loading/__docs__/index.zh-CN.md | 1 +
3 files changed, 75 insertions(+)
create mode 100644 packages/opendesign/src/loading/__docs__/__case__/LoadingUsage.vue
diff --git a/packages/opendesign/src/loading/__docs__/__case__/LoadingUsage.vue b/packages/opendesign/src/loading/__docs__/__case__/LoadingUsage.vue
new file mode 100644
index 00000000..31b24cc6
--- /dev/null
+++ b/packages/opendesign/src/loading/__docs__/__case__/LoadingUsage.vue
@@ -0,0 +1,73 @@
+
+
+
+### 使用
+
+通过 `label` 属性控制 loading 时显示的文本;
+
+通过 `icon` 属性自定义 loading 时的图标;
+
+通过 `iconRotating` 属性控制自定义的 loading 图标是否旋转;
+
+其它属性的使用详见[OLayer](/zh-CN/components/layer#使用)。
+
+
+
+Control the text displayed during loading through the `label` attribute;
+
+Customize the icon at loading through the `icon` attribute;
+
+Control whether the custom loading icon rotates through the `iconRotating` property;
+
+For the usage of other attributes, please refer to [OLayer](/zh-CN/components/layer#usage).
+
+### Usage
+
+
diff --git a/packages/opendesign/src/loading/__docs__/index.en-US.md b/packages/opendesign/src/loading/__docs__/index.en-US.md
index 6dcf0eba..0ccef7de 100644
--- a/packages/opendesign/src/loading/__docs__/index.en-US.md
+++ b/packages/opendesign/src/loading/__docs__/index.en-US.md
@@ -7,6 +7,7 @@ kind: display
## Demo
+
diff --git a/packages/opendesign/src/loading/__docs__/index.zh-CN.md b/packages/opendesign/src/loading/__docs__/index.zh-CN.md
index 21082e29..31ade9f0 100644
--- a/packages/opendesign/src/loading/__docs__/index.zh-CN.md
+++ b/packages/opendesign/src/loading/__docs__/index.zh-CN.md
@@ -7,6 +7,7 @@ kind: display
## 示例
+
--
Gitee