Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
66911f8b
提交
66911f8b
authored
2月 03, 2021
作者:
tb53863844
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
开发
上级
9b453fba
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
33 行增加
和
24 行删除
+33
-24
index.jsx
one_stop_public/Table/index.jsx
+8
-2
isNewMobileTable.jsx
one_stop_public/Table/isNewMobileTable.jsx
+3
-0
ChildForm.jsx
one_stop_public/libs/ChildForm.jsx
+4
-0
components.jsx
one_stop_public/location/components.jsx
+4
-22
index.jsx
one_stop_public/tableCompon/index.jsx
+14
-0
没有找到文件。
one_stop_public/Table/index.jsx
浏览文件 @
66911f8b
...
...
@@ -19,6 +19,7 @@ export default class ZdyTable extends Component {
super
(
props
);
this
.
state
=
{
objRealTime
:{},
isChange
:
false
,
selects
:
new
Map
(),
left
:
0
,
...
...
@@ -590,6 +591,9 @@ export default class ZdyTable extends Component {
return
this
.
getT
(
trees
,
key
);
};
setRealTimeValues
=
(
obj
)
=>
{
this
.
setState
({
objRealTime
:
obj
})
}
getT
=
(
trees
,
key
)
=>
{
for
(
var
i
=
0
;
i
<
trees
.
length
;
i
++
)
{
...
...
@@ -845,13 +849,14 @@ export default class ZdyTable extends Component {
fatherObj=
{
this
.
props
.
fatherObj
}
datas=
{
datas
}
uuid=
{
cell
.
uuid
}
setRealTimeValues=
{
this
.
setRealTimeValues
}
isEdit=
{
isEdit
}
formKey=
{
currentFormKey
}
currentFormTitle=
{
currentFormTitle
}
init=
{
init
}
get=
{
get
}
// 区分移动端或wen端
json=
{
cell
.
content
}
obj=
{
obj
||
{}
}
// 是否存在默认值
obj=
{
{...
obj
,...
this
.
state
.
objRealTime
}
||
{}
}
// 是否存在默认值
mapData=
{
mapData
}
form=
{
this
.
props
.
form
}
// antd form控件
sqlData=
{
sqlData
}
...
...
@@ -941,6 +946,7 @@ export default class ZdyTable extends Component {
importExcel=
{
this
.
importExcel
}
isPreview=
{
isPreview
}
trees=
{
trees
}
setRealTimeValues=
{
this
.
setRealTimeValues
}
isRowCol=
{
isRowCol
}
modalInit=
{
modalInit
}
items=
{
items
}
...
...
@@ -955,7 +961,7 @@ export default class ZdyTable extends Component {
currentFormTitle=
{
currentFormTitle
}
init=
{
init
}
get=
{
get
}
obj=
{
obj
}
obj=
{
{...
obj
,...
this
.
state
.
objRealTime
}
}
mapData=
{
mapData
}
form=
{
this
.
props
.
form
}
sqlData=
{
sqlData
}
...
...
one_stop_public/Table/isNewMobileTable.jsx
浏览文件 @
66911f8b
...
...
@@ -94,6 +94,7 @@ export default class isNewTable extends Component {
isPreview=
{
isPreview
}
i=
{
i
}
j=
{
j
}
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
index=
{
index
}
getCurrentFormTitle=
{
getCurrentFormTitle
}
fatherCode=
{
fatherCode
}
...
...
@@ -176,6 +177,7 @@ export default class isNewTable extends Component {
fatherCode=
{
fatherCode
}
datas=
{
datas
}
isEdit=
{
isEdit
}
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
getCurrentFormTitle=
{
getCurrentFormTitle
}
importExcel=
{
this
.
props
.
importExcel
}
fatherObj=
{
this
.
props
.
fatherObj
}
...
...
@@ -236,6 +238,7 @@ export default class isNewTable extends Component {
init=
{
init
}
get=
{
get
}
key=
{
j
}
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
sqlData=
{
sqlData
}
obj=
{
obj
||
{}
}
form=
{
this
.
props
.
form
}
...
...
one_stop_public/libs/ChildForm.jsx
浏览文件 @
66911f8b
...
...
@@ -147,6 +147,8 @@ export default class ChildForm extends React.Component {
span=
{
isEdit
?
24
:
span
}
>
<
ZdyTable
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
trees=
{
this
.
props
.
trees
}
key=
{
r
}
modalInit=
{
modalInit
}
...
...
@@ -224,6 +226,8 @@ export default class ChildForm extends React.Component {
return
(
<
Col
span=
{
span
}
>
<
ZdyTable
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
modalInit=
{
modalInit
}
hfInstance=
{
hfInstance
}
currentFormTitle=
{
getCurrentFormTitle
?
getCurrentFormTitle
(
json
.
childFormKey
):
null
}
...
...
one_stop_public/location/components.jsx
浏览文件 @
66911f8b
...
...
@@ -28,29 +28,7 @@ class GetLocation extends Component {
}
}
/* updateMap=(lng,lat,params)=>{
this.map.remove(this.fugai);
this.fugai.length = 0
this.map.setCenter([lng ? lng : 116.397428, lat ? lat : 39.90923]);
if (params && params.polygons) {
for (var i = 0; i < params.polygons.length; i++) {
const p = params.polygons[i]
const path = p.path
const paths = []
for (var j = 0; j < path.lngs.length; j++) {
paths.push(new AMap.LngLat(path.lngs[j], path.lats[j]))
}
var polygon = new AMap.Polygon({
...p,
path: paths
});
this.map.add(polygon);
this.fugai.push(polygon)
}
}
} */
componentWillMount
()
{
...
...
@@ -58,6 +36,10 @@ class GetLocation extends Component {
componentDidMount
=
()
=>
{
this
.
getLocation
()
this
.
searchSiteSelection
()
const
{
lng
,
lat
,
params
}
=
this
.
props
if
(
params
.
setMap
){
params
.
setMap
(
this
.
map
,
AMap
)
}
}
// 12,[116.171731,40.06682]
//获取当前定位
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
66911f8b
...
...
@@ -761,6 +761,15 @@ export default class tableCom extends Component {
e
,
);
}
if
(
!
this
.
props
.
isEdit
){
if
(
this
.
props
.
setRealTimeValues
){
this
.
props
.
setRealTimeValues
(
values
)
}
}
};
reqUtil
=
(
base52
,
json
,
orgCallback
,
url
,
method
,
params
,
callback
,
options
=
{})
=>
{
//查缓存
...
...
@@ -1510,6 +1519,7 @@ export default class tableCom extends Component {
initialValue
:
fk
,
})(<
Input
type=
"hidden"
/>)
}{
' '
}
<
ZdyTable
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
hfInstance=
{
this
.
props
.
hfInstance
}
currentFormTitle=
{
this
.
props
.
getCurrentFormTitle
?
this
.
props
.
getCurrentFormTitle
(
fk
)
:
null
}
getCellValue=
{
getCellValue
}
...
...
@@ -2274,6 +2284,8 @@ export default class tableCom extends Component {
cm
=
(
<
ChildForm
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
modalInit=
{
modalInit
}
trees=
{
this
.
props
.
trees
}
isPreview=
{
isPreview
}
...
...
@@ -3028,6 +3040,8 @@ export default class tableCom extends Component {
initialValue
:
initValue
||
{},
})(
<
ChildForm
setRealTimeValues=
{
this
.
props
.
setRealTimeValues
}
rights=
{
json
.
rights
||
[]
}
hfInstance=
{
this
.
props
.
hfInstance
}
getCurrentFormTitle=
{
this
.
props
.
getCurrentFormTitle
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论