64 lines
972 B
XML
64 lines
972 B
XML
{
|
|
"widgettype":"Form",
|
|
"options":{
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"fields":[
|
|
{
|
|
"name":"customerid",
|
|
"uitype":"str",
|
|
"required":true,
|
|
"label":"充值客户id"
|
|
},
|
|
{
|
|
"name":"amount",
|
|
"label":"充值金额",
|
|
"required":true,
|
|
"uitype":"float",
|
|
"lenght":18,
|
|
"dec":2
|
|
},
|
|
{
|
|
"name":"currency",
|
|
"label":"币种",
|
|
"uitype":"code",
|
|
"defaultvalue":"CNY",
|
|
"data":[
|
|
{
|
|
"value":"CNY",
|
|
"text":"人民币"
|
|
},
|
|
{
|
|
"value":"USD",
|
|
"text": "美元"
|
|
}
|
|
]
|
|
}
|
|
|
|
]
|
|
},
|
|
"binds":[
|
|
{
|
|
"wid": "self",
|
|
"event":"submit",
|
|
"actiontype":"urlwidget",
|
|
"target":"PopupWindow",
|
|
"popup_options":{
|
|
{% if params_kw._is_mobile %}
|
|
"width": "95%",
|
|
"height": "95%",
|
|
{% else %}
|
|
"width": "50%",
|
|
"height": "50%",
|
|
{% endif %}
|
|
"archor":"cc"
|
|
},
|
|
"options":{
|
|
"url":"{{entire_url('manual_recharge.dspy')}}",
|
|
"method":"POST",
|
|
"params":{}
|
|
}
|
|
}
|
|
]
|
|
}
|