king
2024-05-28 ef75701f3412976b8210e3c7cd4ca1f83f962d3a
2024-05-28
5个文件已修改
18 ■■■■■ 已修改文件
src/menu/components/table/base-table/columns/index.scss 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/table/normal-table/columns/index.scss 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/datasource/verifycard/settingform/index.jsx 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/mutilform/index.jsx 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/utils-custom.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/table/base-table/columns/index.scss
@@ -45,7 +45,7 @@
      }
      td:not(.ant-table-selection-column) {
        position: relative;
        padding: 12px 8px;
        // padding: 12px 8px;
        >.profile {
          position: absolute;
          top: 2px;
src/menu/components/table/normal-table/columns/index.scss
@@ -42,7 +42,7 @@
      }
      td:not(.ant-table-selection-column) {
        position: relative;
        padding: 12px 8px;
        // padding: 12px 8px;
        >.profile {
          position: absolute;
          top: 2px;
src/menu/datasource/verifycard/settingform/index.jsx
@@ -414,7 +414,7 @@
                {getFieldDecorator('primaryKey', {
                  initialValue: setting.primaryKey || ''
                })(
                  <Select>
                  <Select showSearch filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 || option.props.value.toLowerCase().indexOf(input.toLowerCase()) >= 0}>
                    {columns.map((option, i) =>
                      <Select.Option key={i} value={option.field}>
                        {option.label}
@@ -652,7 +652,7 @@
                {getFieldDecorator('subKey', {
                  initialValue: setting.subKey || ''
                })(
                  <Select>
                  <Select showSearch filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 || option.props.value.toLowerCase().indexOf(input.toLowerCase()) >= 0}>
                    {this.props.subColumns.map((option, i) =>
                      <Select.Option key={i} value={option.field}>
                        {option.label}
@@ -667,7 +667,7 @@
                {getFieldDecorator('subBID', {
                  initialValue: setting.subBID || ''
                })(
                  <Select>
                  <Select showSearch filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 || option.props.value.toLowerCase().indexOf(input.toLowerCase()) >= 0}>
                    {this.props.subColumns.map((option, i) =>
                      <Select.Option key={i} value={option.field}>
                        {option.label}
src/tabviews/zshare/mutilform/index.jsx
@@ -476,6 +476,12 @@
            message: '请选择' + item.label + '!'
          })
        }
        if (['cascader', 'checkbox', 'checkcard', 'fileupload', 'multiselect'].includes(item.type) && item.fieldlength) {
          item.rules.push({
            max: item.fieldlength,
            message: formRule.input.formMessage.replace('@max', item.fieldlength)
          })
        }
      }
      if (item.rules.length === 0) {
src/utils/utils-custom.js
@@ -957,7 +957,7 @@
          let subItem = {
            value: f_tab.uuid,
            label: f_tab.label,
            children: this.getLinkModules(f_tab.components)
            children: getLinkModules(f_tab.components)
          }
          if (!subItem.children || subItem.children.length === 0) {