Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
5078f36b
提交
5078f36b
authored
11月 25, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加 DiyModal 组件 用于 一站式1.0页面的 自定义弹窗
上级
2934462f
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
190 行增加
和
3 行删除
+190
-3
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+4
-1
ProgressDiy.js
FormInsertDiy/ExportComponent/DiyModal/ProgressDiy.js
+34
-0
SpinPercent.js
FormInsertDiy/ExportComponent/DiyModal/SpinPercent.js
+40
-0
index.js
FormInsertDiy/ExportComponent/DiyModal/index.js
+57
-0
styles.less
FormInsertDiy/ExportComponent/DiyModal/styles.less
+53
-0
TableList.js
one_stop_public/libs/TableList.js
+1
-1
index.js
one_stop_public/libs/formList/index.js
+1
-1
没有找到文件。
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
5078f36b
...
...
@@ -18,6 +18,7 @@ import ApplyMerge from './ApplyMerge'; // merge
import
AuditMerge
from
'./AuditMerge'
;
import
CheckRecordMerge
from
'./CheckRecordMerge'
;
import
CreateC
from
'./ContextCreate'
;
import
DiyModal
from
'./DiyModal/index'
;
window
.
iframeParentComponent
=
{
Modal
,
...
...
@@ -55,7 +56,9 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
switch
(
component
)
{
case
'CheckRecord'
:
// 查询类应用
Res
=
<
CheckRecord
workId
=
{
appId
}
/>
;
Res
=
<>
<
CheckRecord
workId
=
{
appId
}
/
>
<
/>
;
break
;
case
'CheckRecordMerge'
:
// 查询类应用聚合
Res
=
<
CheckRecordMerge
routerConfig
=
{
routerConfig
}
/>
;
...
...
FormInsertDiy/ExportComponent/DiyModal/ProgressDiy.js
0 → 100644
浏览文件 @
5078f36b
/**
* 解决黔南医保 批量审核时 数据量过大的问题.
* */
import
React
,
{
useEffect
,
useState
}
from
'react'
;
import
SpinPercent
from
'./SpinPercent'
;
export
default
function
ProgressDiy
(
props
)
{
const
{
componentProps
}
=
props
;
const
[
data
,
setData
]
=
useState
(
componentProps
.
data
||
{});
const
changeData
=
(
newV
)
=>
{
setData
({
...
newV
,
});
};
useEffect
(()
=>
{
if
(
componentProps
)
{
componentProps
.
changeData
=
changeData
;
}
},
[]);
useEffect
(()
=>
{
if
(
data
){
componentProps
.
data
=
data
;
}
},
[
data
]);
console
.
log
(
data
);
return
(
<
div
>
<
SpinPercent
{...
data
}
/
>
<
/div
>
);
}
FormInsertDiy/ExportComponent/DiyModal/SpinPercent.js
0 → 100644
浏览文件 @
5078f36b
/**
* 钟是志
* 2022年8月15日
* 百分比进度条组件 只负责渲染
* */
import
React
,
{
useEffect
,
useState
,
useRef
}
from
'react'
;
import
{
Spin
,
Progress
}
from
'antd'
;
import
styles
from
'./styles.less'
;
export
default
function
SpinPercent
(
props
)
{
const
{
loadingPercent
=
false
,
percent
,
status
,
total
,
speed
,
message
,
}
=
props
;
if
(
loadingPercent
){
return
(
<
div
className
=
{
styles
.
juzhongSpin
}
>
<
div
style
=
{{
textAlign
:
'center'
}}
>
<
Progress
type
=
'circle'
strokeColor
=
{{
'0%'
:
'#108ee9'
,
'100%'
:
'#87d068'
,
}}
percent
=
{
percent
}
status
=
{
status
}
format
=
{
percent
=>
`
${
speed
}
/
${
total
}
`
}
/
>
<
div
className
=
{
styles
.
textCenter
}
>
{
message
}
<
/div
>
<
/div
>
<
/div
>
);
}
return
null
;
}
FormInsertDiy/ExportComponent/DiyModal/index.js
0 → 100644
浏览文件 @
5078f36b
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Modal
,
Progress
,
Button
}
from
'antd'
;
import
ProgressDiy
from
'./ProgressDiy'
;
const
componentList
=
{
ProgressDiy
,
};
export
default
function
DiyModal
(
props
)
{
const
[
show
,
setShow
]
=
useState
(
false
);
const
changeShow
=
(
s
)
=>
{
setShow
(
s
);
};
useEffect
(()
=>
{
console
.
log
(
112233
);
window
.
showDiyModalInfo
=
{
// 对外暴露的接口.
open
:
()
=>
{
changeShow
(
true
);
},
close
:
()
=>
{
changeShow
(
false
);
},
ModalProps
:
{
title
:
'自定义弹框'
,
width
:
1200
,
bodyStyle
:
{
minHeight
:
'50vh'
,
overflowY
:
'auto'
,
},
maskClosable
:
false
,
onCancel
:
()
=>
{
changeShow
(
false
);
},
onOk
:
()
=>
{
console
.
log
(
'点击了确定按钮'
);
},
},
component
:
'ProgressDiy'
,
componentProps
:
{},
};
},
[]);
const
Component
=
window
.
showDiyModalInfo
&&
!!
window
.
showDiyModalInfo
.
component
?
componentList
[
window
.
showDiyModalInfo
.
component
]
:
ProgressDiy
;
return
(
<
div
>
{
show
&&
<
Modal
{...
window
.
showDiyModalInfo
?.
ModalProps
}
visible
=
{
show
}
>
<
Component
componentProps
=
{
window
.
showDiyModalInfo
.
componentProps
}
/
>
<
/Modal
>
}
<
/div
>
);
}
FormInsertDiy/ExportComponent/DiyModal/styles.less
0 → 100644
浏览文件 @
5078f36b
@color1: #d43d52;
@color2: #2196F3;
.basicTitle{
background: #fff;
padding: 5px;
}
.man{
color: @color2;
}
.woman{
color: @color1;
}
.bg-green{
background: #4daf61;
padding: 5px 10px;
color: white;
}
.header{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
height: 30px;
text-align: center;
line-height: 30px;
font-size: 14px;
font-weight: 500;
color: #000;
background-color: #F0F0F0;
.activeH{
color: #FFFFFF;
background-color: #6066BA;
}
.normal{
}
}
.footer{
padding: 10px 0 0 0;
text-align: center;
}
.juzhongSpin{
min-height: 300px;
width: 100%;
display: grid;
align-items: center;
justify-items: center;
}
.textCenter{
text-align: center;
}
one_stop_public/libs/TableList.js
浏览文件 @
5078f36b
...
...
@@ -51,7 +51,7 @@ export default class TableList extends React.Component {
componentDidUpdate
(
prevProps
,
prevState
)
{
if
(
prevState
?.
columns
!==
this
.
state
.
columns
)
{
console
.
log
(
prevState
.
columns
,
this
.
state
.
columns
);
//
console.log(prevState.columns, this.state.columns);
this
.
setState
(
{
showNo
:
true
,
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
5078f36b
...
...
@@ -293,7 +293,7 @@ class FormList extends React.Component {
if
(
Number
(
objCode
)
===
1
)
{
this
.
initColumn
();
}
else
{
console
.
log
(
'componentDidMount-296'
);
//
console.log('componentDidMount-296');
dispatch
({
type
:
'DataObj/findByCode'
,
payload
:
{
objCode
:
this
.
props
.
objCode
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论