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
db56dd3b
Commit
db56dd3b
authored
Oct 25, 2021
by
zhaochengxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模型表头字段变更
parent
c1ba3358
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
ImportAction.jsx
src/view/Manage/Model/Component/ImportAction.jsx
+1
-1
ImportActionHeader.jsx
src/view/Manage/Model/Component/ImportActionHeader.jsx
+10
-10
index.jsx
src/view/Manage/ModelConfig/index.jsx
+1
-1
No files found.
src/view/Manage/Model/Component/ImportAction.jsx
View file @
db56dd3b
...
...
@@ -182,7 +182,7 @@ const ImportAction = (props) => {
easyDataModelerModelingConstraint
:
data
.
easyDataModelerModelingConstraint
||
''
,
easyDataModelerModelingTemplate
:
data
.
easyDataModelerModelingTemplate
||
''
,
dataResidence
:
data
.
dataResidence
||
''
,
dataContent
:
data
.
dataContent
||
''
,
tableType
:
data
.
tableType
||
''
,
dataUpdatingTiming
:
data
.
dataUpdatingTiming
||
''
,
maintenanceRecords
:
data
.
maintenanceRecords
||
''
,
dataLoadingStrategy
:
data
.
dataLoadingStrategy
||
''
,
...
...
src/view/Manage/Model/Component/ImportActionHeader.jsx
View file @
db56dd3b
...
...
@@ -35,7 +35,7 @@ const TemplateSelect = ({ value = {}, templates = [], onChange, ...restProps })
<
Select
onChange=
{
onChange
}
value=
{
value
.
name
||
''
}
placeholder=
'请选择
数据
表类型'
placeholder=
'请选择
生成
表类型'
allowClear
{
...
restProps
}
>
...
...
@@ -210,10 +210,10 @@ const ImportActionHeader = (props) => {
</
Col
>
<
Col
span=
{
8
}
>
<
Form
.
Item
label=
"
数据
表类型"
label=
"
生成
表类型"
name=
"easyDataModelerModelingTemplate"
labelAlign=
"left"
rules=
{
[{
required
:
false
,
message
:
'请选择
数据
表类型!'
}]
}
rules=
{
[{
required
:
false
,
message
:
'请选择
生成
表类型!'
}]
}
>
<
TemplateSelect
templates=
{
templates
}
...
...
@@ -226,8 +226,8 @@ const ImportActionHeader = (props) => {
<
Row
>
<
Col
span=
{
8
}
>
<
Form
.
Item
label=
"数据
内容
"
name=
"
dataContent
"
label=
"数据
表类型
"
name=
"
tableType
"
labelAlign=
"left"
>
<
Input
style=
{
{
width
:
300
}
}
/>
...
...
@@ -326,10 +326,10 @@ const ImportActionHeader = (props) => {
<
Row
>
<
Col
span=
{
8
}
>
<
Form
.
Item
label=
"
描述
"
label=
"
数据内容
"
name=
"remark"
labelAlign=
"left"
rules=
{
[{
required
:
true
,
message
:
'请输入
描述
!'
}]
}
rules=
{
[{
required
:
true
,
message
:
'请输入
数据内容
!'
}]
}
>
<
TextArea
row=
{
4
}
style=
{
{
width
:
300
}
}
/>
</
Form
.
Item
>
...
...
@@ -356,8 +356,8 @@ const ImportActionHeader = (props) => {
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"规范"
>
{
modelerData
.
easyDataModelerModelingConstraint
?(
modelerData
.
easyDataModelerModelingConstraint
.
cnName
||
''
):
''
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"
数据
表类型"
>
{
modelerData
.
easyDataModelerModelingTemplate
?(
modelerData
.
easyDataModelerModelingTemplate
.
cnName
||
''
):
''
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"数据
内容"
>
{
highlightSearchContentByTerms
(
modelerData
.
dataContent
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"
生成
表类型"
>
{
modelerData
.
easyDataModelerModelingTemplate
?(
modelerData
.
easyDataModelerModelingTemplate
.
cnName
||
''
):
''
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"数据
表类型"
>
{
highlightSearchContentByTerms
(
modelerData
.
tableType
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"数据平台"
>
{
highlightSearchContentByTerms
(
modelerData
.
dataResidence
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"数据情况"
>
{
highlightSearchContentByTerms
(
modelerData
.
dataCircumstances
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"分布键"
>
{
highlightSearchContentByTerms
(
modelerData
.
distributionKeysDescription
||
''
,
terms
)
}
</
Descriptions
.
Item
>
...
...
@@ -367,7 +367,7 @@ const ImportActionHeader = (props) => {
<
Descriptions
.
Item
label=
"加载方式"
>
{
highlightSearchContentByTerms
(
modelerData
.
dataLoadingStrategy
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"更新时间"
>
{
highlightSearchContentByTerms
(
modelerData
.
dataUpdatingTiming
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"维护历史"
>
{
highlightSearchContentByTerms
(
modelerData
.
maintenanceRecords
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"
描述
"
>
{
highlightSearchContentByTerms
(
modelerData
.
remark
||
''
,
terms
)
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"
数据内容
"
>
{
highlightSearchContentByTerms
(
modelerData
.
remark
||
''
,
terms
)
}
</
Descriptions
.
Item
>
</
Descriptions
>
)
}
...
...
src/view/Manage/ModelConfig/index.jsx
View file @
db56dd3b
...
...
@@ -22,7 +22,7 @@ const ModelConfig = () => {
<
TabPane
tab=
'Word模版配置'
key=
'1'
>
<
WordTemplate
/>
</
TabPane
>
<
TabPane
tab=
'
数据
表类型配置'
key=
'2'
>
<
TabPane
tab=
'
生成
表类型配置'
key=
'2'
>
<
TemplateCURD
/>
</
TabPane
>
<
TabPane
tab=
'规范配置'
key=
'3'
>
...
...
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