| | |
| | | clearBackCache = () => { |
| | | if (!window.GLOB.backend) return |
| | | |
| | | Api.cacheInterface({}).then(res => { |
| | | Api.cacheInterface({userid: sessionStorage.getItem('UserID') || '', LoginUID: sessionStorage.getItem('LoginUID') || ''}).then(res => { |
| | | if (!res.status) { |
| | | notification.warning({ |
| | | top: 92, |
| | |
| | | duration: 5 |
| | | }) |
| | | } else if (window.GLOB.localSystemApi) { |
| | | Api.cacheInterface({rduri: window.GLOB.localSystemApi.replace('dostars', 'excache')}).then(result => { |
| | | Api.cacheInterface({ |
| | | userid: sessionStorage.getItem('LocalUserID') || sessionStorage.getItem('UserID') || '', |
| | | LoginUID: sessionStorage.getItem('LocalLoginUID') || sessionStorage.getItem('LoginUID') || '', |
| | | rduri: window.GLOB.localSystemApi.replace('dostars', 'excache') |
| | | }).then(result => { |
| | | if (!result.status) { |
| | | notification.warning({ |
| | | top: 92, |
| | |
| | | } |
| | | |
| | | if (sign === '@open_target_menu@' && btn.openmenu && Array.isArray(btn.openmenu) && btn.openmenu.length > 0) { |
| | | let id = '' |
| | | if (this.state.selines && this.state.selines.length > 0 && btn.Ot !== 'notRequired') { |
| | | if (btn.Ot === 'requiredOnce') { |
| | | id = this.state.selines.map(d => d.$$uuid).filter(Boolean).join(',') |
| | | } else { |
| | | id = this.state.selines[0].$$uuid |
| | | } |
| | | } |
| | | |
| | | let menuId = btn.openmenu.slice(-1)[0] |
| | | let menu = null |
| | | |
| | | if (window.GLOB.mkThdMenus.has(menuId)) { |
| | | menu = {...window.GLOB.mkThdMenus.get(menuId), param: { $BID: '' }} |
| | | menu = {...window.GLOB.mkThdMenus.get(menuId), param: { $BID: id || '' }} |
| | | } else if (btn.MenuID) { |
| | | menu = { |
| | | MenuID: btn.MenuID, |
| | | MenuName: btn.MenuName, |
| | | type: btn.tabType, |
| | | param: { $BID: '' } |
| | | param: { $BID: id || '' } |
| | | } |
| | | } |
| | | |