Update field values in model.trans.json
This commit is contained in:
parent
72d88cddc4
commit
c88002ae3e
1 changed files with 6 additions and 6 deletions
|
|
@ -500,8 +500,8 @@
|
|||
"type": "RadioGroup",
|
||||
"props": {
|
||||
"options": [
|
||||
{ "label": "::Enable", "value": true },
|
||||
{ "label": "::Disable", "value": false }
|
||||
{ "label": "::Enable", "value": 1 },
|
||||
{ "label": "::Disable", "value": 0 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -513,8 +513,8 @@
|
|||
"type": "RadioGroup",
|
||||
"props": {
|
||||
"options": [
|
||||
{ "label": "::Enable", "value": true },
|
||||
{ "label": "::Disable", "value": false }
|
||||
{ "label": "::Enable", "value": 1 },
|
||||
{ "label": "::Disable", "value": 0 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -525,8 +525,8 @@
|
|||
"view": {
|
||||
"type": "Switch",
|
||||
"props": {
|
||||
"checkedValue": true,
|
||||
"unCheckedValue": false,
|
||||
"checkedValue": 1,
|
||||
"unCheckedValue": 0,
|
||||
"checkedChildren": "::Enable",
|
||||
"unCheckedChildren": "::Disable"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue