123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- Ext.define('make.view.make.bom.BomCompareForm', {
- extend: 'Ext.form.Panel',
- xtype: 'make-bom-bomcompareform',
- controller: 'make-bom-bomcompareform',
- width: '100%',
- minHeight: 100,
- bodyPadding: '8 10 8 10',
- margin: '0 0 12 0',
- layout: 'column',
- initComponent: function () {
- var me = this;
- Ext.apply(me, {
- defaults: {
- labelWidth: 75,
- margin:'8 20 0 0'
- },
- items: [{
- xtype: 'productMDbfindTrigger',
- name: 'code1',
- fieldLabel: '产品编号1',
- bind:'{form.code1}'
- }, {
- xtype: 'productMDbfindTrigger',
- name: 'code2',
- fieldLabel: '产品编号2',
- bind:'{form.code2}'
- }, {
- xtype: 'productMDbfindTrigger',
- name: 'code3',
- fieldLabel: '产品编号3',
- bind:'{form.code3}'
- }, {
- xtype: 'productMDbfindTrigger',
- name: 'code4',
- fieldLabel: '产品编号4',
- bind:'{form.code4}'
- }, {
- xtype: 'productMDbfindTrigger',
- name: 'code5',
- fieldLabel: '产品编号5',
- bind:'{form.code5}'
- }]
- })
- me.callParent(arguments);
- },
- });
|