fix(billing): submit_text→submit_label, wid→self, fix indentation

- submit_label is the correct InlineForm option (not submit_text)
- Use wid:self instead of explicit widget id
- binds was incorrectly indented inside options
This commit is contained in:
yumoqing 2026-07-16 16:59:51 +08:00
parent f7f9581cd9
commit fba38804de

View File

@ -27,11 +27,11 @@
"required": true "required": true
} }
], ],
"submit_text": "查询" "submit_label": "查询"
}, },
"binds": [ "binds": [
{ {
"wid": "billing_form", "wid": "self",
"event": "submit", "event": "submit",
"actiontype": "method", "actiontype": "method",
"target": "app.billing_tabular", "target": "app.billing_tabular",