Update field values in model.trans.json

This commit is contained in:
Max 2024-03-14 12:43:48 +08:00
parent 72d88cddc4
commit c88002ae3e

View file

@ -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"
}