king
2023-10-18 c5e5a7580632bc39a9e0c78d548f22a8be5f2019
2023-10-18
4个文件已修改
16 ■■■■■ 已修改文件
src/menu/modulecell/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/mutilform/mkPopSelect/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/modalconfig/source.jsx 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/zshare/formconfig.jsx 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/modulecell/index.jsx
@@ -52,6 +52,7 @@
          { subType: 'textarea', text: '多行文本', type: 'form' },
          { subType: 'multiselect', text: '下拉多选', type: 'form' },
          { subType: 'link', text: '联动菜单', type: 'form' },
          { subType: 'popSelect', text: '选择器', type: 'form' },
          { subType: 'switch', text: '开关', type: 'form' },
          { subType: 'checkbox', text: '多选框', type: 'form' },
          { subType: 'radio', text: '单选框', type: 'form' },
src/tabviews/zshare/mutilform/mkPopSelect/index.jsx
@@ -55,7 +55,7 @@
        dataIndex: col.field,
        title: col.label,
        sorter: col.IsSort === 'true',
        width: 120
        width: col.Width || 120
      })
    })
src/templates/modalconfig/source.jsx
@@ -102,6 +102,11 @@
  },
  {
    type: 'form',
    label: '选择器',
    subType: 'popSelect',
  },
  {
    type: 'form',
    label: '开关',
    subType: 'switch',
  },
src/templates/zshare/formconfig.jsx
@@ -3116,6 +3116,14 @@
              return '否'
            }
          }
        },
        {
          title: '列宽',
          dataIndex: 'Width',
          inputType: 'number',
          editable: true,
          width: '20%',
          initval: 120
        }
      ]
    },