tbMain.js
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Ext.define('App.view.tbMain', {
extend: 'Ext.tab.Panel',
alias: 'widget.tbmain',
requires: [
'App.view.grdLogEvent',
'App.view.grdLiveSubscribers',
'App.view.grdUpdInfo',
'App.view.grdRouts',
'App.view.grdNotifications',
'App.view.grdGSMNotification'
],
items: [
{
title: 'Статус событий',
xtype: 'grdlogevent',
id: 'grdlogevent',
name: 'grdlogevent',
layout: 'anchor'
},
{
title: 'Маршруты',
xtype: 'grdrouts',
id: 'grdrouts',
name: 'grdrouts',
layout: 'anchor'
},
{
title: 'Оповещение',
xtype: 'grdnotifications',
id: 'grdnotifications',
name: 'grdnotifications',
layout: 'anchor'
},
{
title: 'Мониторинг СЗС',
xtype:'grdlivesubscribers',
id:'grdlivesubscribers',
name: 'grdlivesubscribers',
layout: 'anchor'
},
{
title: 'Система оповещения GSM ',
xtype: 'grdgsmnotification',
id: 'grdgsmnotification',
name: 'grdgsmnotification',
layout: 'anchor'
}
]
});