nsgm-cli 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/utils/menu.tsx
CHANGED
|
@@ -8,14 +8,14 @@ export default [
|
|
|
8
8
|
key: key.toString(),
|
|
9
9
|
text: '介绍',
|
|
10
10
|
url: '/',
|
|
11
|
-
icon: <BookOutlined />,
|
|
11
|
+
icon: <BookOutlined rev={undefined} />,
|
|
12
12
|
subMenus: null
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
key: (++key).toString(),
|
|
16
16
|
text: '模板',
|
|
17
17
|
url: '/template/manage',
|
|
18
|
-
icon: <SolutionOutlined />,
|
|
18
|
+
icon: <SolutionOutlined rev={undefined} />,
|
|
19
19
|
subMenus: [
|
|
20
20
|
{
|
|
21
21
|
key: key + '_1',
|
|
@@ -8,14 +8,14 @@ export default [
|
|
|
8
8
|
key: key.toString(),
|
|
9
9
|
text: '介绍',
|
|
10
10
|
url: '/',
|
|
11
|
-
icon: <BookOutlined />,
|
|
11
|
+
icon: <BookOutlined rev={undefined} />,
|
|
12
12
|
subMenus: null
|
|
13
13
|
},
|
|
14
14
|
/*{
|
|
15
15
|
key: (++key).toString(),
|
|
16
16
|
text: '模板',
|
|
17
17
|
url: '/template/manage',
|
|
18
|
-
icon: <SolutionOutlined />,
|
|
18
|
+
icon: <SolutionOutlined rev={undefined} />,
|
|
19
19
|
subMenus: [
|
|
20
20
|
{
|
|
21
21
|
key: key + '_1',
|
package/package.json
CHANGED
|
@@ -229,7 +229,7 @@ const Page = ({ template }) => {
|
|
|
229
229
|
导出
|
|
230
230
|
</Button>
|
|
231
231
|
<Upload {...uploadProps}>
|
|
232
|
-
<Button icon={<UploadOutlined />}>导入</Button>
|
|
232
|
+
<Button icon={<UploadOutlined rev={undefined} />}>导入</Button>
|
|
233
233
|
</Upload>
|
|
234
234
|
<Button type="primary" onClick={batchDeleteTemplate}>
|
|
235
235
|
批量删除
|