| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- Ext.define('saas.view.sys.manager.FormPanel', {
- extend: 'Ext.tab.Panel',
- xtype: 'sys-manager-formpanel',
-
- layout:'fit',
- bodyCls:'x-manager-background',
- //工具类
- FormUtil: Ext.create('saas.util.FormUtil'),
- BaseUtil: Ext.create('saas.util.BaseUtil'),
- tabBar: {
- layout: {
- pack: 'left'
- },
- border: false
- },
- defaults: {
- iconAlign: 'left',
- bodyPadding: 15
- },
- items: [{
- icon:'x-fa fa-key',
- title: '公司设置',
- xtype:'sys-config-formpanel'
- }, {
- icon:'x-fa fa-key',
- title: '账户设置',
- xtype:'panel'
- }, {
- icon:'x-fa fa-key',
- title: '权限设置',
- xtype:'sys-power-formpanel'
- }],
- initComponent: function () {
- var me = this;
- me.callParent(arguments);
- },
- refresh:function(){
- this.ownerCt.setTitle('系统管理');
- },
- });
|