Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
szse
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhaochengxiang
szse
Commits
047c6287
Commit
047c6287
authored
Apr 09, 2021
by
fanyongjun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
4.9.4
parent
d8db9390
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
2 deletions
+25
-2
index.less
src/index.less
+4
-0
index.jsx
src/view/Manage/Element/index.jsx
+6
-1
ImportActionTable.jsx
src/view/Manage/Model/Component/ImportActionTable.jsx
+7
-0
ModelTable.jsx
src/view/Manage/Model/Component/ModelTable.jsx
+8
-1
No files found.
src/index.less
View file @
047c6287
...
...
@@ -88,5 +88,9 @@ div[id^='__qiankun_microapp_wrapper_'] {
border-color: #333333 !important;
}
.yy-table-cell{
word-break:break-all;
}
src/view/Manage/Element/index.jsx
View file @
047c6287
...
...
@@ -27,23 +27,28 @@ const Element = (props) => {
dataIndex
:
'key'
,
render
:
(
text
,
record
,
index
)
=>
{
return
(
index
+
1
).
toString
();
}
},
width
:
80
},
{
title
:
'操作时间'
,
dataIndex
:
'createTimeDesc'
,
width
:
180
},
{
title
:
'操作人'
,
dataIndex
:
'creator'
,
width
:
100
},
{
title
:
'操作类型'
,
dataIndex
:
'operateType'
,
width
:
100
},
{
title
:
'状态'
,
dataIndex
:
'status'
,
width
:
80
},
{
title
:
'变更内容'
,
...
...
src/view/Manage/Model/Component/ImportActionTable.jsx
View file @
047c6287
...
...
@@ -338,22 +338,27 @@ const ImportActionTable = (props) => {
title
:
'序号'
,
dataIndex
:
'key'
,
editable
:
false
,
width
:
80
,
render
:
(
text
,
record
,
index
)
=>
{
return
(
index
+
1
).
toString
();
}
},
{
title
:
'中文名称'
,
width
:
120
,
dataIndex
:
'cnName'
,
editable
:
true
,
},
{
title
:
'英文名称'
,
width
:
120
,
dataIndex
:
'name'
,
editable
:
true
,
},
{
title
:
'类型'
,
width
:
180
,
dataIndex
:
'datatype'
,
editable
:
true
,
render
:
(
datatype
,
record
,
index
)
=>
{
...
...
@@ -381,6 +386,8 @@ const ImportActionTable = (props) => {
{
title
:
'操作'
,
dataIndex
:
'action'
,
width
:
100
,
render
:
(
_
,
record
)
=>
{
if
(
!
editable
)
return
null
;
...
...
src/view/Manage/Model/Component/ModelTable.jsx
View file @
047c6287
...
...
@@ -28,15 +28,20 @@ const ModelTable = (props) => {
editable
:
false
,
render
:
(
text
,
record
,
index
)
=>
{
return
(
index
+
1
).
toString
();
}
},
width
:
80
,
},
{
title
:
'模型名称'
,
dataIndex
:
'name'
,
width
:
180
,
},
{
title
:
'中文名称'
,
dataIndex
:
'cnName'
,
width
:
180
,
},
{
title
:
'模型描述'
,
...
...
@@ -45,6 +50,8 @@ const ModelTable = (props) => {
{
title
:
'操作'
,
key
:
'action'
,
width
:
120
,
render
:
(
text
,
record
)
=>
{
return
(
<
Space
size=
'small'
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment