Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piccaSun authored Dec 2, 2024
1 parent 5726a47 commit fabdddf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/deploy/config/portal/apps/configure-attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ attributes:
| `name` | 字符串 | 是 | HTML表单的name属性,在编程中使用,并且会作为计算节点环境变量名,可以在Web应用的`script`或者VNC应用的`xstartop`使用 |
| `label` | 字符串 | 是 | HTML表单的label属性,输入框左侧显示的标签 |
| `required` | 布尔类型 | 否 | 如果设置为`true`,用户必须填写此项,如果为`false`,用户可以不填,默认为`true`。 |
| `default` | 字符串或者数字 | 否 | 表单的默认值,`number`类型的默认值必须设置为数字。对于`select`类型的表单,如果没有配置`default`,则默认值为第一项 |
| `defaultValue` | 字符串或者数字 | 否 | 表单的默认值,`number`类型的默认值必须设置为数字。对于`select`类型的表单,如果没有配置`defaultValue`,则默认值为第一项 |
| `placeholder` | 字符串 | 否 | 描述输入字段预期值的提示信息,提示用户此处的输入 |
| `select` | 选项的列表 | 否 | 如果`type`是`select`,必须配置此项,指明具体的选项,具体配置办法见`select`示例 |

Expand All @@ -144,7 +144,7 @@ attributes:
name: version
label: 版本
required: false
defalt: v3.4.0
defaultValue: v3.4.0
```

### 配置输入类型为数字的HTML表单
Expand All @@ -167,7 +167,7 @@ attributes:
name: size
label: 数量
required: false
default: 123
defaultValue: 123
```

### 配置输入为下拉选择器的HTML表单
Expand Down Expand Up @@ -207,4 +207,4 @@ attributes:
label: 其他sbatch参数
required: false
placeholder: "比如:--gpus gres:2 --time 10"
```
```

0 comments on commit fabdddf

Please sign in to comment.