+
+ {
+ this.editClick(record);
+ }}
+ >
+ {getIntlContent("SHENYU.SYSTEM.EDITOR")}
+
+
+
+ );
+ },
+ },
+ ],
+ });
+ }
+
+ render() {
+ const { registry, loading } = this.props;
+ const { registryList, total } = registry;
+ const {
+ currentPage,
+ pageSize,
+ selectedRowKeys,
+ registryId,
+ address,
+ popup,
+ columns = [],
+ } = this.state;
+
+ const tableColumns = columns.map((col, index) => ({
+ ...col,
+ onHeaderCell: (column) => ({
+ width: column.width,
+ onResize: this.handleResize(index),
+ }),
+ }));
+
+ const rowSelection = {
+ selectedRowKeys,
+ onChange: this.onSelectChange,
+ };
+
+ return (
+