Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
fill-system
Commits
7786de2c
Commit
7786de2c
authored
Apr 25, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加解析表单参数数据
parent
ab0e378b
Pipeline
#2790
failed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fill-manager/src/main/java/com/mortals/xhx/common/code/FieldTypeEnum.java
.../main/java/com/mortals/xhx/common/code/FieldTypeEnum.java
+1
-1
fill-manager/src/main/java/com/mortals/xhx/module/datum/service/impl/DatumInfoFieldServiceImpl.java
.../module/datum/service/impl/DatumInfoFieldServiceImpl.java
+1
-1
No files found.
fill-manager/src/main/java/com/mortals/xhx/common/code/FieldTypeEnum.java
View file @
7786de2c
...
...
@@ -11,7 +11,7 @@ import java.util.Map;
public
enum
FieldTypeEnum
{
单行输入框
(
"单行输入框"
,
"input"
),
多行输入框
(
"多行输入框"
,
"textarea"
),
下拉选项框
(
"下拉选项框"
,
"
SELECT
"
),
下拉选项框
(
"下拉选项框"
,
"
select
"
),
单项选择框
(
"单项选择框"
,
"radio"
),
日期选择框
(
"日期选择框"
,
"date"
),
多项选择框
(
"多项选择框"
,
"checkbox"
),
...
...
fill-manager/src/main/java/com/mortals/xhx/module/datum/service/impl/DatumInfoFieldServiceImpl.java
View file @
7786de2c
...
...
@@ -81,7 +81,7 @@ public class DatumInfoFieldServiceImpl extends AbstractCRUDServiceImpl<DatumInfo
if
(
select
&&
split
.
size
()
>
2
)
{
infoField
.
setFieldCode
(
split
.
get
(
2
));
infoField
.
setFieldName
(
split
.
get
(
2
));
infoField
.
setFieldType
(
FieldTypeEnum
.
单项选择
框
.
getDesc
());
infoField
.
setFieldType
(
FieldTypeEnum
.
下拉选项
框
.
getDesc
());
infoField
.
setFieldValue
(
value
);
infoField
.
setDataType
(
DataTypeEnum
.
字符串
.
getDesc
());
}
...
...
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