| 1234567891011121314151617181920212223242526272829303132 |
- /**
- * Created by zhouy on 2018/10/18.
- */
- Ext.define('saas.view.document.productunit.Window', {
- extend: 'saas.view.document.kind.ChildForm',
- xtype: 'document-productunit-window',
- dataKind:'productunit',//类型标识
- belong:{
- columns: [{
- text: '计量单位',
- dataIndex: 'pu_name',
- flex: 1
- }],
- keyField:'id',
- reqUrl:'/api/document/productunit/save',
- delUrl:'/api/document/productunit/delete'
- },
- etc:{
- productunit:{
- items:[{
- xtype:'hidden',
- name:'id'
- },{
- xtype:'textfield',
- name:'pu_name',
- allowBlank:false,
- fieldLabel:'计量单位',
- maxLength: 20
- }]
- }
- }
- });
|