Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
5a0fc9bb
提交
5a0fc9bb
authored
8月 23, 2024
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
驳回的页面一直报错的bug
上级
5b206448
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
32 行增加
和
19 行删除
+32
-19
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+0
-2
index.js
one_stop_public/libs/formList/index.js
+16
-10
index.jsx
one_stop_public/tableCompon/index.jsx
+16
-7
没有找到文件。
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
5a0fc9bb
...
@@ -471,8 +471,6 @@ class DetailSplit extends Component {
...
@@ -471,8 +471,6 @@ class DetailSplit extends Component {
route
:
this
.
props
?.
route
,
route
:
this
.
props
?.
route
,
};
};
// console.log("🚀 ~ file:DetailSplit method:render line:467 -----", "data", data);
return
(
return
(
<
Fragment
>
<
Fragment
>
<
div
<
div
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
5a0fc9bb
...
@@ -296,14 +296,17 @@ class FormList extends React.Component {
...
@@ -296,14 +296,17 @@ class FormList extends React.Component {
}
else
{
}
else
{
// DataObj models层中的数据
// DataObj models层中的数据
getServicesNomal
(
findByCodeApi
,
{
objCode
:
this
.
props
.
objCode
}).
then
(
dataObj
=>
{
getServicesNomal
(
findByCodeApi
,
{
objCode
:
this
.
props
.
objCode
}).
then
(
dataObj
=>
{
this
.
setState
(
if
(
dataObj
&&
dataObj
.
id
){
{
this
.
setState
(
objId
:
dataObj
.
id
,
{
isTable
:
dataObj
.
isTable
,
objId
:
dataObj
.
id
,
},
isTable
:
dataObj
.
isTable
,
()
=>
{
},
this
.
initColumn
();
()
=>
{
})
this
.
initColumn
();
})
}
});
});
}
}
}
else
{
}
else
{
...
@@ -511,8 +514,8 @@ class FormList extends React.Component {
...
@@ -511,8 +514,8 @@ class FormList extends React.Component {
{
files
.
map
((
f
,
index2
)
=>
{
{
files
.
map
((
f
,
index2
)
=>
{
return
(
return
(
<
li
key
=
{
index2
}
>
<
li
key
=
{
index2
}
>
<
FilePreview
<
FilePreview
path
=
{
queryFileUrl
(
f
.
path
)}
path
=
{
queryFileUrl
(
f
.
path
)}
pathName
=
{
f
.
name
}
pathName
=
{
f
.
name
}
images
=
{
files
?.
map
((
item
)
=>
{
images
=
{
files
?.
map
((
item
)
=>
{
return
{
return
{
...
@@ -642,6 +645,9 @@ class FormList extends React.Component {
...
@@ -642,6 +645,9 @@ class FormList extends React.Component {
this
.
setState
({
this
.
setState
({
loading
:
false
,
loading
:
false
,
});
});
if
(
!
data
){
return
null
;
}
if
(
!
this
.
state
.
isReady
)
{
if
(
!
this
.
state
.
isReady
)
{
this
.
setState
({
this
.
setState
({
data
,
data
,
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
5a0fc9bb
...
@@ -161,6 +161,7 @@ export default class TableCom extends Component {
...
@@ -161,6 +161,7 @@ export default class TableCom extends Component {
}
}
}
}
this
.
serviceJSONParams
=
{};
}
}
closeModal
=
(
fk
,
callback
)
=>
{
closeModal
=
(
fk
,
callback
)
=>
{
...
@@ -1352,9 +1353,11 @@ export default class TableCom extends Component {
...
@@ -1352,9 +1353,11 @@ export default class TableCom extends Component {
// 当上次的请求参数和这次的相同时 不再发起请求
// 当上次的请求参数和这次的相同时 不再发起请求
return
false
;
return
false
;
}
}
if
(
this
.
serviceJSONParams
!==
JSON
.
stringify
(
params
)){
this
.
serviceJSONParams
=
JSON
.
stringify
(
params
);
}
else
{
return
false
;
}
getServicesNomal
(
getSqlOptionsApi
,
params
).
then
(
options
=>
{
getServicesNomal
(
getSqlOptionsApi
,
params
).
then
(
options
=>
{
const
optionsx
=
[];
const
optionsx
=
[];
let
base52
=
dataColumn
.
base52
;
let
base52
=
dataColumn
.
base52
;
...
@@ -1401,7 +1404,11 @@ export default class TableCom extends Component {
...
@@ -1401,7 +1404,11 @@ export default class TableCom extends Component {
// 当上次的请求参数和这次的相同时 不再发起请求
// 当上次的请求参数和这次的相同时 不再发起请求
return
false
;
return
false
;
}
}
if
(
this
.
serviceJSONParams
!==
JSON
.
stringify
(
params
)){
this
.
serviceJSONParams
=
JSON
.
stringify
(
params
);
}
else
{
return
false
;
}
if
(
obj
[
base52
])
{
if
(
obj
[
base52
])
{
getServicesNomal
(
getSqlLabelsApi
,
params
).
then
(
labels
=>
{
getServicesNomal
(
getSqlLabelsApi
,
params
).
then
(
labels
=>
{
this
.
setState
({
this
.
setState
({
...
@@ -1425,9 +1432,11 @@ export default class TableCom extends Component {
...
@@ -1425,9 +1432,11 @@ export default class TableCom extends Component {
return
false
;
return
false
;
}
}
// if(params.sqlKey === 'KFRvOyGdyvU'){
if
(
this
.
serviceJSONParams
!==
JSON
.
stringify
(
params
)){
// console.log(params);
this
.
serviceJSONParams
=
JSON
.
stringify
(
params
);
// }
}
else
{
return
false
;
}
getServicesNomal
(
getSqlOptionsApi
,
params
).
then
(
options
=>
{
getServicesNomal
(
getSqlOptionsApi
,
params
).
then
(
options
=>
{
let
base52
=
dataColumn
.
base52
;
let
base52
=
dataColumn
.
base52
;
let
vl
=
this
.
props
.
form
.
getFieldsValue
()[
base52
];
let
vl
=
this
.
props
.
form
.
getFieldsValue
()[
base52
];
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论