Browse Source

详情对话框与界面源码

luoyifan 2 years ago
parent
commit
017578c126
2 changed files with 41 additions and 1 deletions
  1. 40 0
      dist/yvan-ext.js
  2. 1 1
      dist/yvan-ext.js.map

+ 40 - 0
dist/yvan-ext.js

@@ -130905,6 +130905,46 @@ define(['exports'], function (exports) { 'use strict';
                             },
                             },
                         ]
                         ]
                     },
                     },
+                    {
+                        title: '详情对话框',
+                        layout: {
+                            type: 'vbox',
+                            pack: 'start',
+                            align: 'stretch'
+                        },
+                        defaults: {
+                            border: false,
+                            anchor: '100%',
+                            margin: '5',
+                        },
+                        scrollable: true,
+                        items: [
+                            {
+                                xtype: 'cols',
+                                items: [
+                                    {
+                                        fieldLabel: '对话框标题',
+                                        bind: { value: '{detailDialog.title}' },
+                                        xtype: 'textfield',
+                                        flex: 2,
+                                    },
+                                    {
+                                        fieldLabel: '宽度',
+                                        bind: { value: '{detailDialog.width}' },
+                                        xtype: 'numberfield',
+                                    },
+                                    {
+                                        fieldLabel: '高度',
+                                        bind: { value: '{detailDialog.height}' },
+                                        xtype: 'numberfield',
+                                    },
+                                ]
+                            },
+                        ]
+                    },
+                    {
+                        title: '界面源码',
+                    }
                 ]
                 ]
             }
             }
         ]
         ]

File diff suppressed because it is too large
+ 1 - 1
dist/yvan-ext.js.map