Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
0fa1f2bd
提交
0fa1f2bd
authored
9月 27, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'yaanzhiyuan_2021' 到 'master'
norefeshxxxxxxxxxxxxxxxxxxxx 修改 查看合并请求
!2
上级
20bc18e1
a49e9f61
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
217 行增加
和
4 行删除
+217
-4
TableSelect.js
one_stop_public/libs/TableSelect.js
+4
-4
staticInfo.jsx
one_stop_public/tableCompon/Split_Index/staticInfo.jsx
+213
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+0
-0
没有找到文件。
one_stop_public/libs/TableSelect.js
浏览文件 @
0fa1f2bd
...
...
@@ -26,7 +26,7 @@ export default class TableSelect extends React.Component {
// Should provide an event to pass value to Form.
const
onChange
=
this
.
props
.
onChange
;
if
(
onChange
)
{
console
.
log
(
'changedValue'
,
changedValue
);
//
console.log('changedValue', changedValue);
onChange
(
Object
.
assign
({},
this
.
state
,
changedValue
));
}
};
...
...
@@ -234,9 +234,9 @@ export default class TableSelect extends React.Component {
});
}
console
.
log
(
this
.
props
);
console
.
log
(
this
.
state
);
console
.
log
(
'-0000 TableSelect000'
);
//
console.log(this.props);
//
console.log(this.state);
//
console.log('-0000 TableSelect000');
return
(
<
div
>
{
Object
.
keys
(
selects
).
length
>
0
?
(
...
...
one_stop_public/tableCompon/Split_Index/staticInfo.jsx
0 → 100644
浏览文件 @
0fa1f2bd
import
{
message
}
from
"antd"
;
import
baseX
from
"base-x"
;
import
moment
from
"moment"
;
import
{
isNaN
}
from
"lodash"
;
import
React
from
'react'
;
import
config
from
"@/webPublic/one_stop_public/config"
;
const
codeMessage
=
{
200
:
'服务器成功返回请求的数据。'
,
201
:
'新建或修改数据成功。'
,
202
:
'一个请求已经进入后台排队(异步任务)。'
,
204
:
'删除数据成功。'
,
400
:
'发出的请求有错误,服务器没有进行新建或修改数据的操作。'
,
401
:
'登录已过期,请重新登录'
,
403
:
'用户得到授权,但是访问是被禁止的。'
,
404
:
'发出的请求针对的是不存在的记录,服务器没有进行操作。'
,
406
:
'请求的格式不可得。'
,
410
:
'请求的资源被永久删除,且不会再得到的。'
,
422
:
'当创建一个对象时,发生一个验证错误。'
,
500
:
'服务器发生错误,请检查服务器。'
,
502
:
'网关错误。'
,
503
:
'服务不可用,服务器暂时过载或维护。'
,
504
:
'网关超时。'
,
};
const
errorHandler
=
(
error
)
=>
{
const
{
response
}
=
error
;
if
(
response
&&
response
.
status
)
{
const
errorText
=
codeMessage
[
response
.
status
]
||
response
.
statusText
;
message
.
error
(
`请求错误
${
errorText
}
`
);
if
(
response
.
status
===
401
)
{
return
window
.
g_app
.
_store
.
dispatch
({
type
:
'login/loginout'
,
});
}
}
else
{
message
.
error
(
`网络故障,请检查网络链接或联系管理员`
);
}
};
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
base64
=
baseX
(
Bs64
);
export
function
getBase64
(
value
)
{
return
value
?
base64
.
encode
(
new
Buffer
(
value
))
:
null
;
}
const
excludeKeys
=
[
'defaultValues'
,
''
];
const
equal
=
(
obj1
,
obj2
,
json
,
sqlContent
,
depth
,
props
)
=>
{
if
(
obj1
==
null
&&
obj2
!=
null
)
{
return
false
;
}
if
(
obj1
!=
null
&&
obj2
==
null
)
{
return
false
;
}
if
(
obj1
==
null
&&
obj2
==
null
)
{
return
true
;
}
if
(
obj1
instanceof
Date
)
{
if
(
obj1
.
valueOf
()
!=
obj2
.
valueOf
())
{
return
false
;
}
}
else
if
(
obj1
instanceof
moment
)
{
if
(
obj1
.
valueOf
()
!=
obj2
.
valueOf
())
{
return
false
;
}
}
else
if
(
typeof
obj1
==
'function'
)
{
if
(
obj1
.
toString
()
!=
obj2
.
toString
())
{
return
false
;
}
}
const
keys
=
new
Set
();
if
(
obj2
!=
null
)
{
Object
.
keys
(
obj2
).
forEach
(
k
=>
{
if
(
k
!=
''
)
keys
.
add
(
k
);
});
}
if
(
obj1
!=
null
)
{
Object
.
keys
(
obj1
).
forEach
(
k
=>
{
if
(
k
!=
''
)
keys
.
add
(
k
);
});
}
let
res
=
true
;
for
(
let
key
of
keys
)
{
if
(
key
==
''
)
{
continue
;
}
if
(
excludeKeys
.
includes
(
key
))
{
continue
;
}
if
(
obj1
[
key
]
==
null
&&
obj2
[
key
]
!=
null
)
{
res
=
false
;
break
;
}
if
(
obj1
[
key
]
!=
null
&&
obj2
[
key
]
==
null
)
{
res
=
false
;
break
;
}
if
(
depth
==
1
&&
((
props
.
json
.
sqlKey
==
null
&&
sqlContent
==
null
&&
json
.
formula
==
null
&&
json
.
funcs
==
null
)
||
(
sqlContent
!=
null
&&
sqlContent
.
indexOf
(
key
)
==
-
1
)
||
(
json
.
formula
!=
null
&&
json
.
formula
.
indexOf
(
key
)
==
-
1
&&
json
.
funcs
!=
null
&&
json
.
funcs
.
indexOf
(
key
)
==
-
1
))
)
{
excludeKeys
.
push
(
key
);
continue
;
}
if
(
obj1
[
key
]
==
null
&&
obj2
[
key
]
==
null
)
{
continue
;
}
if
(
isNaN
(
obj1
[
key
])
&&
isNaN
(
obj2
[
key
]))
{
continue
;
}
if
(
obj1
[
key
]
instanceof
Array
)
{
if
(
obj1
[
key
].
length
!=
obj2
[
key
].
length
)
{
res
=
false
;
break
;
}
else
{
var
xx
=
true
;
for
(
var
i
=
0
;
i
<
obj1
[
key
].
length
;
i
++
)
{
if
(
!
equal
(
obj1
[
key
][
i
],
obj2
[
key
][
i
],
json
,
sqlContent
,
depth
+
1
))
{
xx
=
false
;
break
;
}
}
if
(
!
xx
)
{
res
=
false
;
break
;
}
}
}
else
if
(
obj1
[
key
]
instanceof
Object
)
{
const
x
=
equal
(
obj1
[
key
],
obj2
[
key
],
json
,
sqlContent
,
depth
+
1
);
if
(
!
x
)
{
res
=
false
;
break
;
}
}
else
if
(
typeof
obj1
[
key
]
==
'function'
)
{
if
(
obj1
[
key
].
toString
()
!=
obj2
[
key
].
toString
())
{
res
=
false
;
break
;
}
}
else
{
if
(
obj1
[
key
]
!=
obj2
[
key
])
{
res
=
false
;
break
;
}
}
}
return
res
;
};
const
getRender
=
(
com
,
props
)
=>
{
if
(
com
==
'p'
)
return
<
p
{
...
props
}
/>;
if
(
com
==
'ul'
)
return
<
ul
{
...
props
}
/>;
if
(
com
==
'li'
)
return
<
li
{
...
props
}
/>;
if
(
com
==
'video'
)
return
<
video
{
...
props
}
/>;
if
(
com
==
'span'
)
return
<
span
{
...
props
}
/>;
if
(
com
==
'a'
)
return
<
a
{
...
props
}
/>;
if
(
com
==
'div'
)
return
<
div
{
...
props
}
/>;
if
(
com
==
'canvas'
)
return
<
canvas
{
...
props
}
/>;
if
(
com
==
'iframe'
)
return
<
iframe
{
...
props
}
/>;
if
(
com
==
'img'
)
{
const
src
=
props
.
src
!=
null
?
props
.
src
.
indexOf
(
'http'
)
>
-
1
?
props
.
src
:
config
.
httpServer
+
props
.
src
:
null
;
const
pp
=
{
...
props
,
src
:
src
};
return
<
img
{
...
pp
}
/>;
}
};
/**
* 判断传入值是否为JSON文本
*/
const
isJSON
=
str
=>
{
if
(
typeof
str
==
'string'
)
{
try
{
var
obj
=
JSON
.
parse
(
str
);
if
(
typeof
obj
==
'object'
&&
obj
)
{
return
true
;
}
else
{
return
false
;
}
}
catch
(
e
)
{
console
.
log
(
'error:'
+
str
+
'!!!'
+
e
);
return
false
;
}
}
};
export
{
errorHandler
,
equal
,
getRender
,
isJSON
};
one_stop_public/tableCompon/index.jsx
浏览文件 @
0fa1f2bd
This source diff could not be displayed because it is too large. You can
view the blob
instead.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论