feat: Support manila share group

1. Add manila share group page in console and administrator
2. Add console create share group
3. Add console edit share group
4. Add delete share group in console and administrator
5. Add share group detail page in console and administrator

Change-Id: Ia96f38c2155210007faedb99bcf3ff49ae291245
This commit is contained in:
Jingwei.Zhang
2022-04-28 16:01:11 +08:00
parent d472f41913
commit 3e76cb2ffa
31 changed files with 1068 additions and 122 deletions

View File

@@ -222,3 +222,16 @@ export const getNameRenderByRouter = (render, column, rowKey) => {
);
};
};
export const idNameColumn = {
title: t('ID/Name'),
dataIndex: 'name',
render: (value, record) => {
return (
<>
<div>{record.id}</div>
<div>{value}</div>
</>
);
},
};