You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
607 B
JavaScript
30 lines
607 B
JavaScript
|
|
Ext.BLANK_IMAGE_URL = '../../TruckMng/Content/Images/s.gif';
|
|
|
|
var panelEdit = null;
|
|
var inited = true;
|
|
|
|
var pcIndex = null;
|
|
var pcEdit = null;
|
|
var pcTabs = null;
|
|
var pcPanel = null;
|
|
var tabMainPc = null;
|
|
|
|
Ext.onReady(function () {
|
|
Ext.QuickTips.init();
|
|
Ext.form.Field.prototype.msgTarget = 'side';
|
|
|
|
panelEdit = new window.DsTruck.JiekuanEdit({
|
|
tital: '管理费用',
|
|
region: 'center',
|
|
layout: 'border'
|
|
});
|
|
|
|
var view = new Ext.Viewport({
|
|
layout: 'border',
|
|
renderTo: 'viewport',
|
|
border: false,
|
|
items: [panelEdit]
|
|
});
|
|
|
|
}); |