Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
8cc8187f
提交
8cc8187f
authored
4月 27, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://scjoyedu.eicp.net:9121/front-team/webPublic
上级
dc635a4b
c6a31c51
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
16 行删除
+20
-16
index.jsx
one_stop_public/AffairButton/AuditButton/userTable/index.jsx
+3
-3
index.jsx
one_stop_public/filePreview/index.jsx
+10
-10
TableList.js
one_stop_public/libs/TableList.js
+2
-1
index.js
one_stop_public/libs/formList/index.js
+5
-2
没有找到文件。
one_stop_public/AffairButton/AuditButton/userTable/index.jsx
浏览文件 @
8cc8187f
...
...
@@ -15,10 +15,10 @@ export default class userButton extends Component {
super
()
this
.
state
=
{
// 路由位置
visibleOk
:
false
,
// 通过模态框状态
visibleOk
:
false
,
// 通过模态框状态
value
:
''
,
// 文本域输入
user
:
''
,
// 用于保存用户点击了对应按钮
returnText
:
''
,
returnText
:
''
,
key
:
''
,
// 后端返回按钮规格
btnValue
:
''
,
// 后端返回按钮状态
}
...
...
@@ -119,7 +119,7 @@ export default class userButton extends Component {
};
render
()
{
let
{
btnList
,
visibleOk
,
value
,
user
,
returnText
}
=
this
.
state
let
{
let
{
affairOk
,
btns
,
isSecond
,
...
...
one_stop_public/filePreview/index.jsx
浏览文件 @
8cc8187f
...
...
@@ -2,7 +2,7 @@
* web端文件预览功能
*/
import
React
,
{
Component
}
from
'react'
;
import
{
Modal
,
Icon
,
Tooltip
,
Popconfirm
}
from
'antd'
;
import
{
Modal
,
Popconfirm
}
from
'antd'
;
import
FileViewer
from
'react-file-viewer'
;
export
default
class
index
extends
Component
{
constructor
(
props
){
...
...
@@ -16,13 +16,13 @@ export default class index extends Component {
visible
:
true
,
});
};
handleOk
=
e
=>
{
this
.
setState
({
visible
:
false
,
});
};
handleCancel
=
e
=>
{
this
.
setState
({
visible
:
false
,
...
...
@@ -88,19 +88,19 @@ export default class index extends Component {
okText=
"下载"
cancelText=
"预览"
>
<
a
target=
"_blank"
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
</
Popconfirm
>
:
<
a
target=
"_blank"
:
<
a
target=
"_blank"
href=
{
path
}
>
{
pathName
}
</
a
>
}
<
Modal
title=
{
pathName
}
visible=
{
visible
}
...
...
@@ -123,7 +123,7 @@ export default class index extends Component {
height
:
600
,
}
}
>
<
FileViewer
<
FileViewer
fileType=
{
type
}
filePath=
{
path
}
// onError=
{
this
.
onError
}
...
...
@@ -132,7 +132,7 @@ export default class index extends Component {
/>
</
div
>
}
</
Modal
>
</>
)
...
...
one_stop_public/libs/TableList.js
浏览文件 @
8cc8187f
...
...
@@ -40,7 +40,8 @@ export default class TableList extends React.Component {
}
render
()
{
return
<
FormList
return
<
FormList
onSelectRow
=
{
this
.
props
.
value
.
onSelectRow
}
istableCom
=
{
true
}
showHeader
=
{
this
.
props
.
showHeader
}
get
=
{
this
.
props
.
get
}
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
8cc8187f
...
...
@@ -626,6 +626,9 @@ class FormList extends React.Component {
};
handleSelectRows
=
rows
=>
{
if
(
this
.
props
.
onSelectRow
){
this
.
props
.
onSelectRow
(
rows
)
}
this
.
setState
({
selectedRows
:
rows
,
});
...
...
@@ -1063,7 +1066,7 @@ class FormList extends React.Component {
(
!
istableCom
)
||
(
this
.
props
.
value
&&
this
.
props
.
value
.
columns
)?
<
StandardTable
showHeader
=
{
this
.
props
.
showHeader
!=
null
?
this
.
props
.
showHeader
:
true
}
noSelectRow
=
{
rights
==
null
||
!
rights
.
includes
(
'delete'
)
}
noSelectRow
=
{
this
.
props
.
onSelectRow
==
null
&&
(
rights
==
null
||
!
rights
.
includes
(
'delete'
)
)
}
rowKey
=
"id"
data
=
{
data
}
isHiddenPage
=
{
this
.
props
.
isHiddenPage
!=
null
?
this
.
props
.
isHiddenPage
:
false
}
...
...
@@ -1093,7 +1096,7 @@ class FormList extends React.Component {
{
showDiv
&&<
StandardTable
showHeader
=
{
this
.
props
.
showHeader
!=
null
?
this
.
props
.
showHeader
:
true
}
noSelectRow
=
{
rights
==
null
||
!
rights
.
includes
(
'delete'
)
}
noSelectRow
=
{
this
.
props
.
onSelectRow
==
null
&&
(
rights
==
null
||
!
rights
.
includes
(
'delete'
)
)
}
rowKey
=
"id"
data
=
{
data
}
columns
=
{
this
.
columns
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论