1234567891011121314151617181920212223242526 |
- /**
- * 智能采购
- */
- Ext.define('trade.view.make.intellpurc.IntellpurcBox', {
- extend: 'Ext.container.Container',
- xtype: 'purchase-intellpurc-intellpurcbox',
- layout: 'border',
- cls:'make-intellpurcbox',
- initComponent: function () {
- var me = this;
- Ext.apply(me, {
- items: [{
- region: 'north',
- collapsed:true,
- collapsible: true,
- xtype: 'purchase-intellpurc-conditionform',
- height: 130,
- title: '智能采购设置',
- }, {
- region: 'center',
- xtype: "purchase-intellpurc-datalist",
- }]
- })
- me.callParent(arguments);
- },
- });
|