Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
app-manage-console
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
app-manage-console
Commits
486480ca
提交
486480ca
authored
7月 13, 2017
作者:
vipcxj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增强DsTable服务端筛选的功能
上级
8f5a5b32
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
31 行增加
和
20 行删除
+31
-20
index.js
src/components/table/dstable/index.js
+1
-1
model.js
src/components/table/dstable/model.js
+13
-17
enum.js
src/components/table/search/enum.js
+17
-2
没有找到文件。
src/components/table/dstable/index.js
浏览文件 @
486480ca
...
...
@@ -37,7 +37,7 @@ class DsTable extends React.Component {
total
:
num
,
pageSize
:
this
.
state
.
pageSize
,
},
onChange
:
(
pagination
)
=>
{
onChange
:
(
pagination
,
filters
,
sorter
)
=>
{
this
.
setState
({
current
:
pagination
.
current
,
pageSize
:
pagination
.
pageSize
,
...
...
src/components/table/dstable/model.js
浏览文件 @
486480ca
...
...
@@ -12,16 +12,16 @@ const getKeyName = (meta) => {
};
const
getSource
=
(
property
)
=>
{
if
(
property
.
filter
&&
property
.
filter
.
source
)
{
let
source
=
_
.
trim
(
property
.
filter
.
source
);
if
(
source
[
0
]
!==
'['
)
{
source
=
`[
${
source
}
]`
;
}
try
{
return
JSON
.
parse
(
source
);
}
catch
(
err
)
{
return
undefined
;
}
if
(
property
.
source
)
{
return
(
property
.
source
.
items
||
[]).
map
((
item
)
=>
{
try
{
return
JSON
.
parse
(
item
)
;
}
catch
(
err
)
{
return
item
;
}
}
);
}
else
{
return
[];
}
};
...
...
@@ -64,12 +64,6 @@ const makeColumns = (meta) => {
if
(
props
.
order
===
undefined
)
{
props
.
order
=
0
;
}
if
(
props
.
visible
===
undefined
)
{
props
.
visible
=
true
;
}
if
(
!
props
.
visible
)
{
props
.
colSpan
=
0
;
}
if
((
props
.
fixed
===
true
||
props
.
fixed
===
'left'
||
props
.
fixed
===
'right'
)
&&
props
.
width
===
undefined
)
{
props
.
width
=
150
;
}
...
...
@@ -77,10 +71,12 @@ const makeColumns = (meta) => {
...
props
,
dataIndex
:
property
.
name
,
key
:
property
.
name
,
filterType
:
property
.
filter
?
property
.
filter
.
type
:
undefined
,
sorter
:
property
.
sort
,
filterType
:
property
.
filterType
,
filterEnums
:
getSource
(
property
),
},
_
.
negate
(
_
.
isUndefined
));
})
.
filter
(
c
=>
c
.
visible
!==
false
)
.
sort
((
c1
,
c2
)
=>
{
const
c1Left
=
c1
.
fixed
===
true
||
c1
.
fixed
===
'left'
;
const
c1Right
=
c1
.
fixed
===
'right'
;
...
...
src/components/table/search/enum.js
浏览文件 @
486480ca
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
Checkbox
,
Button
}
from
'antd'
;
import
{
isString
}
from
'lodash'
;
import
styles
from
'./enum.less'
;
class
EnumSearch
extends
Component
{
static
getValue
(
filterEnum
)
{
if
(
isString
(
filterEnum
))
{
return
filterEnum
;
}
else
{
return
filterEnum
?
filterEnum
.
value
:
null
;
}
}
static
getText
(
filterEnum
)
{
if
(
isString
(
filterEnum
))
{
return
filterEnum
;
}
else
{
return
filterEnum
?
filterEnum
.
text
:
null
;
}
}
constructor
(
props
,
context
)
{
super
(
props
,
context
);
...
...
@@ -19,7 +34,7 @@ class EnumSearch extends Component {
const
{
onSearchSubmit
}
=
this
.
props
;
const
values
=
this
.
props
.
filterEnums
.
filter
((
filterEnum
,
index
)
=>
this
.
state
.
checked
[
index
])
.
map
(
filterEnum
=>
filterEnum
.
value
);
.
map
(
filterEnum
=>
EnumSearch
.
getValue
(
filterEnum
)
);
if
(
values
&&
values
.
length
===
1
)
{
onSearchSubmit
(
`=
${
values
[
0
]}
`
);
}
else
if
(
values
&&
values
.
length
>
1
)
{
...
...
@@ -48,7 +63,7 @@ class EnumSearch extends Component {
return
(
<
span
key
=
{
index
}
>
<
Checkbox
checked
=
{
this
.
state
.
checked
[
index
]}
onChange
=
{
onChange
}
>
{
filterEnum
.
text
}
{
EnumSearch
.
getText
(
filterEnum
)
}
<
/Checkbox
>
<
br
/>
<
/span
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论