king
2023-10-19 20c83dab04d53d60b5fcd08aad3d5d9fbfb4fa5c
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
      })
    })
@@ -350,8 +350,16 @@
          dataSource={options}
          loading={loading}
          onRow={(record) => {
            let className = ''
            if (record.$disabled) {
              className = ' mk-disable-line '
            } else if (value === record.$$uuid) {
              className = ' ant-table-row-selected '
            }
            return {
              className: value === record.$$uuid ? ' ant-table-row-selected ' : '',
              className: className,
              onClick: () => {this.changeRow(record)},
            }
          }}