IntellpurcBox.js 732 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 智能采购
  3. */
  4. Ext.define('trade.view.make.intellpurc.IntellpurcBox', {
  5. extend: 'Ext.container.Container',
  6. xtype: 'purchase-intellpurc-intellpurcbox',
  7. layout: 'border',
  8. cls:'make-intellpurcbox',
  9. initComponent: function () {
  10. var me = this;
  11. Ext.apply(me, {
  12. items: [{
  13. region: 'north',
  14. collapsed:true,
  15. collapsible: true,
  16. xtype: 'purchase-intellpurc-conditionform',
  17. height: 130,
  18. title: '智能采购设置',
  19. }, {
  20. region: 'center',
  21. xtype: "purchase-intellpurc-datalist",
  22. }]
  23. })
  24. me.callParent(arguments);
  25. },
  26. });