Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
6dba2d1c
提交
6dba2d1c
authored
7月 06, 2024
作者:
姚鑫国
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增树多选组件
上级
23d8ba1b
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
69 行增加
和
1 行删除
+69
-1
index.jsx
one_stop_public/TreeSelect/index.jsx
+37
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+32
-1
没有找到文件。
one_stop_public/TreeSelect/index.jsx
0 → 100644
浏览文件 @
6dba2d1c
/**
* 姚鑫国
* 2024-07-05 20点37分
* 树多选组件
*/
import
{
TreeSelect
}
from
'antd'
;
import
React
,
{
useEffect
,
useState
}
from
'react'
;
const
{
SHOW_PARENT
}
=
TreeSelect
;
export
default
function
TreeSelectDiy
(
props
)
{
const
{
value
,
onChange
,
json
,
disabled
,
treeData
}
=
props
;
const
[
data
,
setData
]
=
useState
([]);
const
onChangeS
=
v
=>
{
onChange
(
v
);
};
useEffect
(()
=>
{
setData
(
treeData
)
},
[
treeData
]);
return
(
<
TreeSelect
labelInValue
disabled=
{
disabled
}
treeData=
{
data
}
value=
{
value
}
onChange=
{
onChangeS
}
treeCheckable
showCheckedStrategy=
{
SHOW_PARENT
}
searchPlaceholder=
"请选择"
placeholder=
{
json
.
placeholder
}
style=
{
{
width
:
'100%'
,
}
}
{
...
json
.
otherProps
}
/>
)
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
6dba2d1c
...
...
@@ -33,6 +33,7 @@ import MyBlockRenderer from '../App/MyBlockRender';
import
{
Flex
,
List
as
MobileList
,
Switch
as
MobileSwitch
,
List
}
from
'antd-mobile'
;
import
ReactEcharts
from
'echarts-for-react'
;
import
ZdyTable
from
'../Table/index'
;
import
TreeSelectDiy
from
'../TreeSelect/index'
;
import
{
connect
}
from
'dva'
;
import
UploadCom
from
'../libs/UploadCom'
;
import
TableSelect
from
'../libs/TableSelect'
;
...
...
@@ -444,7 +445,7 @@ export default class TableCom extends Component {
}
}
dataFilter
=
[
'Select'
,
'Radio'
,
'Checkbox'
,
'Cascader'
];
dataFilter
=
[
'Select'
,
'Radio'
,
'Checkbox'
,
'Cascader'
,
'TreeSelect'
];
getData
=
(
json
,
dataColumn
,
obj
,
init
)
=>
{
const
{
formKey
,
uuid
}
=
this
.
props
;
...
...
@@ -3084,6 +3085,36 @@ ${obj[dataColumn.base52]}
/>,
);
break
;
case
'TreeSelect'
:
if
(
json
?.
otherProps
)
{
otherProps
=
json
?.
otherProps
;
try
{
otherProps
=
new
Function
(
otherProps
)();
}
catch
(
e
)
{
otherProps
=
{};
}
}
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
rules
:
json
.
vlds
&&
json
.
vlds
.
length
>
0
?
json
.
vlds
:
[
{
required
:
required
,
message
:
'请选择'
+
dataColumn
.
title
,
},
],
})(
<
TreeSelectDiy
value=
{
this
.
props
.
form
.
getFieldsValue
()[
dataColumn
.
base52
]
}
treeData=
{
options
}
json=
{
json
}
disabled=
{
disabled
}
data
-
base52=
{
dataColumn
.
base52
}
/>
);
break
;
case
'Select'
:
if
(
json
?.
otherProps
)
{
otherProps
=
json
?.
otherProps
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论