Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
32f33c47
提交
32f33c47
authored
5月 20, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
删除冗余代码
上级
9cd2df2a
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
36 行增加
和
23 行删除
+36
-23
FormArray.js
one_stop_public/App/ButtonDiy/FormArray.js
+1
-1
index.jsx
one_stop_public/Table/index.jsx
+19
-11
ChildForm.jsx
one_stop_public/libs/ChildForm.jsx
+14
-9
index.jsx
one_stop_public/tableCompon/index.jsx
+2
-2
没有找到文件。
one_stop_public/App/ButtonDiy/FormArray.js
浏览文件 @
32f33c47
...
...
@@ -363,7 +363,7 @@ export default class FormArray extends Component {
fieldDom
=
(
<
TextArea
{...
defaultProps
}
auto
s
ize
=
{{
minRows
:
4
,
maxRows
:
6
}}
auto
S
ize
=
{{
minRows
:
4
,
maxRows
:
6
}}
onChange
=
{
e
=>
{
changeValue
(
e
.
target
.
value
,
info
.
key
);
}}
...
...
one_stop_public/Table/index.jsx
浏览文件 @
32f33c47
...
...
@@ -116,7 +116,7 @@ export default class ZdyTable extends Component {
formConfig
:
xxx
,
})
})
return
;
}
if
(
isCg
===
'yes'
)
{
...
...
@@ -153,6 +153,7 @@ export default class ZdyTable extends Component {
}
}
const
obj
=
JSON
.
parse
(
val
.
unifiedServicePatternModel
.
content
);
const
xxx
=
obj
.
datas
[
obj
.
init
];
this
.
initExcel
(
obj
,()
=>
{
this
.
setState
({
...
...
@@ -177,13 +178,15 @@ export default class ZdyTable extends Component {
:
xxx
.
defaultBinds
,
})
})
return
;
}
if
(
val
.
unifiedServicePatternModel
.
isDefaultError
!=
null
&&
val
.
unifiedServicePatternModel
.
isDefaultError
)
{
)
{
if
(
this
.
props
.
get
==
'web'
)
{
message
.
error
(
'当前办理人数较多,服务繁忙,请稍后再试!'
);
}
else
{
...
...
@@ -193,6 +196,7 @@ export default class ZdyTable extends Component {
router
.
goBack
();
return
;
}
const
mapData
=
{};
const
sqlData
=
{};
const
sqls
=
val
.
unifiedServicePatternModel
.
sqlModels
;
...
...
@@ -212,6 +216,7 @@ export default class ZdyTable extends Component {
}
}
const
obj
=
JSON
.
parse
(
val
.
unifiedServicePatternModel
.
content
);
console
.
log
(
obj
,
'-----content---'
);
const
xxx
=
obj
.
datas
[
this
.
props
.
formKey
?
this
.
props
.
formKey
:
obj
.
init
];
// 是否是存在历史表单传入值
const
fk
=
this
.
props
.
formKey
?
this
.
props
.
formKey
...
...
@@ -238,7 +243,7 @@ export default class ZdyTable extends Component {
isBorder
:
this
.
props
.
table
?
obj
.
datas
[
val
.
taskFormKey
].
isBorder
:
xxx
.
isBorder
,
isRowCol
:
this
.
props
.
table
?
obj
.
datas
[
val
.
taskFormKey
].
isRowCol
:
xxx
.
isRowCol
,
viewMode
:
this
.
props
.
table
?
obj
.
datas
[
val
.
taskFormKey
].
viewMode
:
xxx
.
viewMode
,
items
:
this
.
props
.
table
?
obj
.
datas
[
val
.
taskFormKey
].
items
:
xxx
.
items
,
isReady
:
true
,
init
:
{
...
this
.
state
.
init
,
...(
val
.
isSecond
?
this
.
props
.
obj
:
{})
},
...
...
@@ -328,10 +333,10 @@ export default class ZdyTable extends Component {
this
.
setState
({
isChange
:
!
this
.
state
.
isChange
},()
=>
{
if
(
callback
)
callback
();
});
console
.
log
(
'公式导入excel成功'
);
})
};
...
...
@@ -464,7 +469,7 @@ export default class ZdyTable extends Component {
formConfig
:
xxx
,
})
})
return
;
}
if
(
isCg
===
'yes'
)
{
...
...
@@ -511,7 +516,7 @@ export default class ZdyTable extends Component {
:
xxx
.
defaultBinds
,
})
})
return
;
}
const
mapData
=
{};
...
...
@@ -534,7 +539,7 @@ export default class ZdyTable extends Component {
}
const
obj
=
JSON
.
parse
(
val
.
unifiedServicePatternModel
.
content
);
const
xxx
=
obj
.
datas
[
this
.
props
.
formKey
?
this
.
props
.
formKey
:
obj
.
init
];
// 是否是存在历史表单传入值
if
(
this
.
props
.
isQuery
)
return
;
const
fk
=
this
.
props
.
formKey
?
this
.
props
.
formKey
...
...
@@ -717,7 +722,7 @@ export default class ZdyTable extends Component {
paddingBottom
:
paddingBottom
!=
null
?
paddingBottom
:
isWebPrint
?
0
:
'10px'
,
};
if
(
!
isReady
)
return
<></>;
if
(
this
.
props
.
postData
?.
isUpdate
)
{
updateTime
=
moment
(
+
this
.
props
.
postData
?.
updateTime
).
format
(
'llll'
);
...
...
@@ -730,7 +735,10 @@ export default class ZdyTable extends Component {
{
this
.
props
.
postData
?.
isUpdate
?
(
<
div
style=
{
{
margin
:
'100px 24px 24px'
}
}
>
<
div
style=
{
{
textAlign
:
'center'
}
}
>
<
img
style=
{
{
marginRight
:
30
}
}
src=
{
maintain
}
></
img
>
<
img
style=
{
{
marginRight
:
30
}
}
src=
{
maintain
}
>
</
img
>
</
div
>
<
p
style=
{
{
...
...
one_stop_public/libs/ChildForm.jsx
浏览文件 @
32f33c47
...
...
@@ -22,7 +22,7 @@ export default class ChildForm extends React.Component {
componentWillReceiveProps
(
nextProps
)
{
// Should be a controlled component.
if
(
'value'
in
nextProps
)
{
const
value
=
nextProps
.
value
;
this
.
state
=
value
;
}
...
...
@@ -61,12 +61,12 @@ export default class ChildForm extends React.Component {
return
;
}
const
x
=
form
.
getFieldValue
(
base52
);
delete
x
[
uuid
];
delete
x
[
""
];
if
(
!
(
'value'
in
this
.
props
))
{
this
.
state
=
x
}
...
...
@@ -89,7 +89,7 @@ export default class ChildForm extends React.Component {
return
;
}
objs
[
'id_'
+
UUID
.
v4
().
replace
(
/-/g
,
'2'
)]
=
{};
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
(
objs
);
}
...
...
@@ -121,7 +121,7 @@ export default class ChildForm extends React.Component {
getCellValue
,
taskId
}
=
this
.
props
;
const
span
=
json
.
span
||
24
;
const
gutter
=
json
.
gutter
!=
null
?
json
.
gutter
:
0
;
const
rights
=
this
.
props
.
rights
;
...
...
@@ -148,7 +148,7 @@ export default class ChildForm extends React.Component {
span=
{
isEdit
?
24
:
span
}
>
<
ZdyTable
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
trees=
{
this
.
props
.
trees
}
key=
{
r
}
...
...
@@ -217,6 +217,10 @@ export default class ChildForm extends React.Component {
);
}
/***
* 子表单
* */
return
(
<
div
style=
{
{
width
:
'100%'
}
}
>
<
Row
gutter=
{
gutter
}
>
...
...
@@ -224,9 +228,10 @@ export default class ChildForm extends React.Component {
if
(
r
==
''
)
{
return
''
;
}
console
.
log
(
'子表单'
,
r
);
// console.log(form.getFieldsValue());
return
(
<
Col
span=
{
span
}
>
<
Col
span=
{
span
}
key=
{
r
}
>
<
ZdyTable
taskId=
{
taskId
}
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
32f33c47
...
...
@@ -2472,7 +2472,7 @@ export default class tableCom extends Component {
:
[{
required
:
required
,
message
:
'请输入'
+
title
}],
})(
<
TextArea
auto
s
ize=
{
{
minRows
:
4
}
}
auto
S
ize=
{
{
minRows
:
4
}
}
disabled=
{
disabled
}
placeholder=
{
json
.
placeholder
}
/>,
...
...
@@ -2518,7 +2518,7 @@ export default class tableCom extends Component {
:
[{
required
:
required
,
message
:
'请输入'
+
title
}],
})(
<
TextArea
auto
s
ize=
{
{
minRows
:
4
}
}
auto
S
ize=
{
{
minRows
:
4
}
}
disabled=
{
disabled
}
rows=
{
4
}
placeholder=
{
json
.
placeholder
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论