| 123456789101112131415161718 |
- Ext.define('saas.view.document.vendor.FormModel', {
- extend: 'saas.view.core.form.FormPanelModel',
- alias: 'viewmodel.document-vendor-formpanel',
- data: {
- id: 0,
- ve_begindate:new Date()
- },
- formulas:{
- showAuditBtn:{
- bind:'{id}',
- get:function(value){
- return value;
- }
- }
- }
- });
|