- withLoginInfo 改为接收完整 opts(含 method/headers/params) - 等待 login_window 的 destroy 事件(=登录成功信号) - 登录成功后重试原始请求 - 重试仍401则返回null(避免死循环) - 用户手动关闭登录窗口时也触发重试,401则返回null
60 lines
937 B
XML
60 lines
937 B
XML
|
|
{
|
|
"widgettype":"TabPanel",
|
|
"options":{
|
|
"tab_wide":"auto",
|
|
"height":"100%",
|
|
"width":"100%",
|
|
"tab_long":"70%",
|
|
"tab_pos":"top",
|
|
"items":[
|
|
{
|
|
"name":"c",
|
|
"label":"C",
|
|
"content":{
|
|
"widgettype":"Text",
|
|
"options":{
|
|
"text":"This is a C language documents"
|
|
}
|
|
},
|
|
"icon":null
|
|
|
|
},
|
|
{
|
|
"name":"javascript",
|
|
"removable":true,
|
|
"label":"JavaScript",
|
|
"content":{
|
|
"widgettype":"Text",
|
|
"options":{
|
|
"text":"This is JavaScript language documents"
|
|
}
|
|
},
|
|
"icon":null
|
|
},
|
|
{
|
|
"name":"php",
|
|
"label":"PHP",
|
|
"content":{
|
|
"widgettype":"Text",
|
|
"options":{
|
|
"text":"This is PHP language documents"
|
|
}
|
|
},
|
|
"icon":null
|
|
},
|
|
{
|
|
"name":"python",
|
|
"label":"Python",
|
|
"content":{
|
|
"widgettype":"urlwidget",
|
|
"options":{
|
|
"url":"{{entire_url('form.ui')}}"
|
|
}
|
|
},
|
|
"icon":null
|
|
},
|
|
]
|
|
}
|
|
}
|