Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
54d13dd5
提交
54d13dd5
authored
4月 21, 2020
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
元数据管理
上级
158b70e9
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
52 行增加
和
36 行删除
+52
-36
index.js
FormInsertDiy/Export/index.js
+0
-0
ExportAndDetail.js
FormInsertDiy/List/ExportAndDetail.js
+18
-0
index.js
FormInsertDiy/List/index.js
+34
-36
没有找到文件。
FormInsertDiy/Export/index.js
浏览文件 @
54d13dd5
差异被折叠。
点击展开。
FormInsertDiy/List/ExportAndDetail.js
0 → 100644
浏览文件 @
54d13dd5
import
React
from
'react'
;
import
List
from
'./index'
;
import
GetIdByPath
from
'./GetIdByPath'
;
const
ExportAndDetail
=
(
props
)
=>
{
const
Authority
=
{
add
:
false
,
// 新增
delete
:
false
,
// 删除
detail
:
true
,
// 详情
exportUtil
:
true
,
// 导出
importUtil
:
false
,
// 导入
};
return
<
GetIdByPath
{...
props
}
Authority
=
{
Authority
}
/>
;
};
export
default
ExportAndDetail
;
FormInsertDiy/List/index.js
浏览文件 @
54d13dd5
...
...
@@ -2,7 +2,7 @@ import React, { Fragment } from 'react';
import
{
Divider
,
message
,
Modal
,
Popconfirm
}
from
'antd'
;
import
moment
from
'moment'
;
import
router
from
'umi/router'
;
//
import ExportInfo from '../Export/index';
import
ExportInfo
from
'../Export/index'
;
import
{
text
,
number
,
date
,
getFormArrayConfig
}
from
'../config/index'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
Shell
from
'../Shell'
;
...
...
@@ -50,7 +50,7 @@ const CreateForm = props => {
fileSpan
=
{{
big
:
2
,
small
:
2
}}
changeValue
=
{
changeFormData
}
/
>
<
div
style
=
{{
clear
:
'both'
}}
/
>
<
div
style
=
{{
clear
:
'both'
}}
/
>
<
/Modal
>
);
};
...
...
@@ -79,7 +79,7 @@ class FormList extends React.Component {
// 渲染值
componentDidMount
()
{
const
{
objId
}
=
this
.
props
;
const
{
objId
,
Authority
}
=
this
.
props
;
getHead
({
dataObjId
:
objId
},
datas
=>
{
if
(
!
datas
)
return
;
this
.
setState
({
formItem
:
datas
});
...
...
@@ -116,26 +116,19 @@ class FormList extends React.Component {
this
.
setState
({
searchConfig
,
});
let
opt
=
{
/*
let opt = {
title: '操作',
render: (text, record) => (
<Fragment>
<div>
<
a
onClick
=
{
this
.
modify
.
bind
(
this
,
record
)}
>
编辑
<
/a
>
<
Divider
type
=
"vertical"
/>
<
Popconfirm
title
=
"确定删除该数据?"
onConfirm
=
{
this
.
delete
.
bind
(
this
,
record
)}
okText
=
"确定"
cancelText
=
"取消"
>
<
a
>
删除
<
/a
>
<
/Popconfirm
>
<a onClick={this.modify.bind(this, record)}>
编辑
</a>
</div>
</Fragment>
),
};
this
.
columns
.
push
(
opt
);
this.columns.push(opt);
*/
this
.
getPage
();
});
}
...
...
@@ -263,13 +256,12 @@ class FormList extends React.Component {
};
batchDelete
=
e
=>
{
const
{
selectedRows
,
formItem
,
objId
}
=
this
.
state
;
const
{
objId
}
=
this
.
props
;
const
{
selectedRows
,
formItem
}
=
this
.
state
;
if
(
!
selectedRows
)
return
;
const
Keys
=
formItem
.
filter
(
i
=>
i
.
isPrimaryKey
).
reduce
((
acc
,
i
)
=>
{
return
{
...
acc
,
[
i
.
name
]:
selectedRows
.
map
(
row
=>
row
[
i
.
name
]).
join
(
','
)
};
});
deleteItem
({
keys
:
JSON
.
stringify
(
Keys
),
objId
},
()
=>
{
this
.
setState
({
selectedRows
:
[],
...
...
@@ -294,20 +286,11 @@ class FormList extends React.Component {
render
()
{
const
{
modalVisible
,
selectedRows
,
formItem
,
isAdd
,
objId
,
pageData
,
showEdit
,
formData
,
primaryKey
,
formValues
,
searchConfig
,
modalVisible
,
selectedRows
,
formItem
,
isAdd
,
pageData
,
showEdit
,
formData
,
primaryKey
,
formValues
,
searchConfig
,
}
=
this
.
state
;
const
{
hasExport
,
hasImport
}
=
this
.
props
;
const
{
objId
,
Authority
}
=
this
.
props
;
const
parentMethods
=
{
handleAdd
:
this
.
handleAdd
,
handleModalVisible
:
this
.
handleModalVisible
,
...
...
@@ -343,10 +326,25 @@ class FormList extends React.Component {
)
:
null
}
<
Shell
>
<
div
style
=
{{
paddingLeft
:
'10px'
,
marginTop
:
'20px'
}}
>
<
ButtonDiy
icon
=
"plus"
className
=
"primaryBlue"
handleClick
=
{
this
.
add
}
name
=
"新建"
/>
{
/* {hasImport && <ImportUtil objId={objId} />}
{hasExport && <ExportInfo objId={objId} />}*/
}
<
ButtonDiy
handleClick
=
{
this
.
batchDelete
}
name
=
"批量删除"
/>
{
Authority
&&
Authority
.
add
===
false
?
null
:
<
ButtonDiy
icon
=
"plus"
className
=
"primaryBlue"
handleClick
=
{
this
.
add
}
name
=
"新建"
/>
}
{
Authority
&&
Authority
.
delete
===
false
?
null
:
<
ButtonDiy
handleClick
=
{
this
.
batchDelete
}
name
=
"批量删除"
/>
}
{
Authority
&&
Authority
.
exportUtil
===
false
?
null
:
<
ExportInfo
objId
=
{
objId
}
/
>
}
{
/* <ImportUtil objId={objId} />*/
}
<
/div
>
<
StandardTable
rowKey
=
"row_id"
...
...
@@ -360,7 +358,7 @@ class FormList extends React.Component {
<
/Fragment
>
)}
<
CreateForm
{...
parentMethods
}
modalVisible
=
{
modalVisible
}
/
>
<
CreateForm
{...
parentMethods
}
modalVisible
=
{
modalVisible
}
/
>
<
/
>
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论