Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
3eeb325a
提交
3eeb325a
authored
11月 16, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
31266 发费数据上报--数据比对页面跳转有误
上级
5bf00c96
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
48 行增加
和
43 行删除
+48
-43
TableList.js
one_stop_public/libs/TableList.js
+46
-40
index.js
one_stop_public/libs/formList/index.js
+2
-3
没有找到文件。
one_stop_public/libs/TableList.js
浏览文件 @
3eeb325a
...
@@ -9,20 +9,21 @@
...
@@ -9,20 +9,21 @@
import
React
from
'react'
;
import
React
from
'react'
;
import
FormList
from
'./formList'
;
import
FormList
from
'./formList'
;
import
TreeList
from
'./formList/TreeList'
;
import
TreeList
from
'./formList/TreeList'
;
import
{
Spin
}
from
'antd'
;
export
default
class
TableList
extends
React
.
Component
{
export
default
class
TableList
extends
React
.
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
);
super
(
props
);
const
value
=
props
.
value
||
{};
const
value
=
props
.
value
||
{};
this
.
otherProps
=
{};
this
.
otherProps
=
{};
if
(
props
.
json
.
otherProps
&&
props
.
json
.
otherProps
.
length
)
{
if
(
props
.
json
.
otherProps
&&
props
.
json
.
otherProps
.
length
)
{
try
{
try
{
this
.
otherProps
=
new
Function
(
props
.
json
.
otherProps
)();
this
.
otherProps
=
new
Function
(
props
.
json
.
otherProps
)();
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
'Table 列表组件 otherProps 获取失败'
);
console
.
log
(
'Table 列表组件 otherProps 获取失败'
);
}
}
}
}
// console.log(this.otherProps);
// console.log(this.otherProps);
this
.
state
=
{
this
.
state
=
{
isAll
:
value
.
isAll
,
isAll
:
value
.
isAll
,
querys
:
value
.
querys
,
querys
:
value
.
querys
,
...
@@ -40,38 +41,43 @@ export default class TableList extends React.Component {
...
@@ -40,38 +41,43 @@ export default class TableList extends React.Component {
}
}
};
};
static
getDerivedStateFromProps
(
nextProps
,
prevState
)
{
static
getDerivedStateFromProps
(
nextProps
,
prevState
)
{
// ...
// ...
if
(
'value'
in
nextProps
)
{
if
(
'value'
in
nextProps
)
{
return
{...
nextProps
.
value
};
// 更新state
return
{
...
nextProps
.
value
};
// 更新state
}
}
return
null
;
//不需要更新任何state
return
null
;
//不需要更新任何state
}
}
componentDidUpdate
(
prevProps
,
prevState
)
{
componentDidUpdate
(
prevProps
,
prevState
)
{
if
(
prevState
?.
columns
!==
this
.
state
.
columns
){
if
(
prevState
?.
columns
!==
this
.
state
.
columns
)
{
this
.
setState
({
console
.
log
(
prevState
.
columns
,
this
.
state
.
columns
);
showNo
:
true
,
this
.
setState
(
},
()
=>
{
{
setTimeout
(()
=>
{
showNo
:
true
,
this
.
setState
({
},
showNo
:
false
,
()
=>
{
});
setTimeout
(()
=>
{
// 如果两次的表头不同 重新渲染组件
},
1000
);
this
.
setState
({
});
showNo
:
false
,
}
});
}
},
10
);
},
);
}
}
render
()
{
render
()
{
const
{
isTree
,
json
,
uuid
}
=
this
.
props
;
const
{
isTree
,
json
,
uuid
}
=
this
.
props
;
const
{
showNo
}
=
this
.
state
;
const
{
showNo
}
=
this
.
state
;
if
(
showNo
){
// console.log(showNo);
return
null
;
if
(
showNo
)
{
}
return
null
;
}
return
isTree
?
(
return
isTree
?
(
<
TreeList
<
TreeList
otherProps
=
{
this
.
otherProps
}
otherProps
=
{
this
.
otherProps
}
json
=
{
json
}
json
=
{
json
}
onSelectRow
=
{
this
.
props
.
value
.
onSelectRow
}
onSelectRow
=
{
this
.
props
.
value
.
onSelectRow
}
istableCom
=
{
true
}
istableCom
=
{
true
}
showHeader
=
{
this
.
props
.
showHeader
}
showHeader
=
{
this
.
props
.
showHeader
}
...
@@ -84,26 +90,26 @@ export default class TableList extends React.Component {
...
@@ -84,26 +90,26 @@ export default class TableList extends React.Component {
rights
=
{
this
.
props
.
rights
||
[]}
rights
=
{
this
.
props
.
rights
||
[]}
objCode
=
{
this
.
props
.
objCode
}
objCode
=
{
this
.
props
.
objCode
}
isFormCom
=
{
true
}
isFormCom
=
{
true
}
uuid
=
{
uuid
}
uuid
=
{
uuid
}
sql
=
{
this
.
props
.
sql
}
sql
=
{
this
.
props
.
sql
}
/
>
/
>
)
:
(
)
:
(
<
FormList
<
FormList
otherProps
=
{
this
.
otherProps
}
otherProps
=
{
this
.
otherProps
}
json
=
{
json
}
json
=
{
json
}
onSelectRow
=
{
this
.
props
.
value
.
onSelectRow
}
onSelectRow
=
{
this
.
props
.
value
.
onSelectRow
}
getCheckboxProps
=
{
this
.
props
.
value
.
getCheckboxProps
}
getCheckboxProps
=
{
this
.
props
.
value
.
getCheckboxProps
}
istableCom
=
{
true
}
istableCom
=
{
true
}
showHeader
=
{
this
.
props
.
showHeader
}
showHeader
=
{
this
.
props
.
showHeader
}
get
=
{
this
.
props
.
get
}
get
=
{
this
.
props
.
get
}
isHiddenPage
=
{
this
.
props
.
isHiddenPage
!=
null
?
this
.
props
.
isHiddenPage
:
false
}
isHiddenPage
=
{
this
.
props
.
isHiddenPage
!=
null
?
this
.
props
.
isHiddenPage
:
false
}
pageSize
=
{
this
.
props
.
pageSize
||
10
}
pageSize
=
{
this
.
props
.
pageSize
||
10
}
value
=
{{
...
this
.
state
}}
value
=
{{
...
this
.
state
}}
notShowBack
=
{
true
}
notShowBack
=
{
true
}
rights
=
{
this
.
props
.
rights
||
[]}
rights
=
{
this
.
props
.
rights
||
[]}
objCode
=
{
this
.
props
.
objCode
}
objCode
=
{
this
.
props
.
objCode
}
isFormCom
=
{
true
}
isFormCom
=
{
true
}
uuid
=
{
uuid
}
uuid
=
{
uuid
}
sql
=
{
this
.
props
.
sql
}
sql
=
{
this
.
props
.
sql
}
/
>
/
>
);
);
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
3eeb325a
...
@@ -293,6 +293,7 @@ class FormList extends React.Component {
...
@@ -293,6 +293,7 @@ class FormList extends React.Component {
if
(
Number
(
objCode
)
===
1
)
{
if
(
Number
(
objCode
)
===
1
)
{
this
.
initColumn
();
this
.
initColumn
();
}
else
{
}
else
{
console
.
log
(
'componentDidMount-296'
);
dispatch
({
dispatch
({
type
:
'DataObj/findByCode'
,
type
:
'DataObj/findByCode'
,
payload
:
{
objCode
:
this
.
props
.
objCode
},
payload
:
{
objCode
:
this
.
props
.
objCode
},
...
@@ -442,7 +443,6 @@ class FormList extends React.Component {
...
@@ -442,7 +443,6 @@ class FormList extends React.Component {
if
(
this
.
props
.
json
?.
isDiy
){
// 2022年11月8日 姚鑫国说的 开起了这个 自定义模式 就不调接口查表头了. 也不调接口查枚举项那些
if
(
this
.
props
.
json
?.
isDiy
){
// 2022年11月8日 姚鑫国说的 开起了这个 自定义模式 就不调接口查表头了. 也不调接口查枚举项那些
this
.
getPage
();
this
.
getPage
();
return
undefined
;
return
undefined
;
}
}
dispatch
({
dispatch
({
type
:
'formList/getHead'
,
type
:
'formList/getHead'
,
...
@@ -638,7 +638,7 @@ class FormList extends React.Component {
...
@@ -638,7 +638,7 @@ class FormList extends React.Component {
getPage
=
(
params
,
values
,
callPage
,
pageNo
)
=>
{
getPage
=
(
params
,
values
,
callPage
,
pageNo
)
=>
{
const
{
objCode
}
=
this
.
props
;
const
{
objCode
}
=
this
.
props
;
if
(
this
.
columns
==
null
||
this
.
columns
.
length
===
0
)
{
if
(
!
this
.
columns
||
!
Array
.
isArray
(
this
.
columns
)
||
this
.
columns
.
length
===
0
)
{
return
;
return
;
}
}
const
{
dispatch
}
=
this
.
props
;
const
{
dispatch
}
=
this
.
props
;
...
@@ -1159,7 +1159,6 @@ class FormList extends React.Component {
...
@@ -1159,7 +1159,6 @@ class FormList extends React.Component {
render
()
{
render
()
{
const
{
modalVisible
,
selectedRows
,
rights
,
data
,
isReady
}
=
this
.
state
;
const
{
modalVisible
,
selectedRows
,
rights
,
data
,
isReady
}
=
this
.
state
;
if
(
!
isReady
)
{
if
(
!
isReady
)
{
return
(
return
(
<
div
<
div
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论