| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- function getHeaderJson() {
- let headerJson = {
- "type": "page",
- "initApi": "http://localhost:8081/api/userInfo",
- "body": [
- {
- "type": "flex",
- "justify": "flex-end",
- "items": [
- {
- "type": "dropdown-button",
- "label": "",
- "className": "header-menu",
- "buttons": [
- {
- "type": "button",
- "label": "中文",
- "id": "u:6911502c8fcc",
- "onEvent": {
- "click": {
- "actions": [
- {
- "script": "localStorage.setItem('language', 'zh-CN')\nlocation.reload()",
- "actionType": "custom",
- "args": {
- }
- }
- ],
- "weight": 0
- }
- }
- },
- {
- "type": "button",
- "label": "English",
- "id": "u:e702685a7a45",
- "onEvent": {
- "click": {
- "actions": [
- {
- "script": "localStorage.setItem('language', 'en-US')\r\nlocation.reload()",
- "actionType": "custom"
- }
- ],
- "weight": 0
- }
- },
- "actionType": "",
- "link": "/view/user_info"
- }
- ],
- "id": "u:4fedf7a987bf",
- "size": "md",
- "level": "default",
- "align": "right",
- "block": false,
- "hideCaret": true,
- "trigger": "hover",
- "icon": "./public/static/icon/language-change.png",
- "btnClassName": "no-border"
- },
- {
- "type": "dropdown-button",
- "label": "$userName",
- "className": "header-menu",
- "buttons": [
- {
- "type": "button",
- "label": "个人信息",
- "actionType": "link",
- "link": "/view/user_info",
- "id": "u:57cf3ed9c568"
- },
- {
- "type": "button",
- "actionType": "",
- "url": "/login/out",
- "blank": false,
- "label": "退出登录",
- "id": "u:88d8afc464b5",
- "api": "http://localhost:8081/api/logout",
- "onEvent": {
- "click": {
- "actions": [
- {
- "args": {
- "options": {
- "silent": false
- },
- "api": {
- "url": "http://localhost:8081/api/logout",
- "method": "post",
- "messages": {
- }
- }
- },
- "outputVar": "responseResult",
- "actionType": "ajax"
- }
- ],
- "weight": 0
- }
- }
- }
- ],
- "id": "u:d324269526b9",
- "size": "md",
- "level": "default",
- "align": "right",
- "block": true,
- "trigger": "hover"
- }
- ],
- "id": "u:e7752d0c1dbe"
- }
- ],
- "id": "u:d16525b6aae6"
- }
- return headerJson
- }
|