32 lines
565 B
XML
32 lines
565 B
XML
{% set pp = get_pricing_program(params_kw.ppid) %}
|
|
{
|
|
"widgettype": "Form",
|
|
"options": {
|
|
"title": "{{pp.id}}",
|
|
"description": "{{pp.description}}",
|
|
"fields":[
|
|
{
|
|
"name": "xlsx_file",
|
|
"label": "定价文件",
|
|
"uitype": "file",
|
|
"required": true
|
|
}
|
|
]
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "submit",
|
|
"actiontype": "urlwidget",
|
|
"target": "self",
|
|
"options": {
|
|
"url": "{{entire_url('upload_pricing_data.dspy')}}",
|
|
"params": {
|
|
"pptid": "{{params_kw.id}}",
|
|
"ppid": "{{params_kw.ppid}}"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|