Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
ebe6c000
提交
ebe6c000
authored
4月 14, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
注入中台函数库
上级
b1ee5caf
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
63 行增加
和
38 行删除
+63
-38
index.jsx
one_stop_public/Table/index.jsx
+0
-14
functionList.js
one_stop_public/excelInitFuc/functionList.js
+0
-0
index.jsx
one_stop_public/excelInitFuc/index.jsx
+48
-12
Basics.jsx
one_stop_public/libs/Basics.jsx
+1
-1
rollTab.jsx
one_stop_public/libs/rollTab.jsx
+0
-7
index.jsx
one_stop_public/tableCompon/index.jsx
+14
-4
没有找到文件。
one_stop_public/Table/index.jsx
浏览文件 @
ebe6c000
...
...
@@ -9,7 +9,6 @@ import { Row, Col ,Input,message} from 'antd'
import
TableCom
from
'../tableCompon'
import
{
Toast
}
from
'antd-mobile'
import
router
from
'umi/router'
import
{
formulaList
}
from
'../excelInitFuc/functionList'
;
import
IsNewTable
from
'./isNewTable'
;
export
default
class
ZdyTable
extends
Component
{
constructor
(
props
){
...
...
@@ -38,19 +37,6 @@ export default class ZdyTable extends Component {
}
componentDidMount
(){
if
(
!
window
.
functionObj
){
// 检查是否注册
/**
* 注册全局函数集
* 动态生成表单配置函数所使用
*/
let
functionObj
=
{}
formulaList
.
map
(
item
=>
{
item
.
children
.
map
(
arr
=>
{
functionObj
[
arr
.
callKey
]
=
arr
.
function
})
})
window
.
functionObj
=
functionObj
}
let
{
postData
,
// 数据源
isCg
,
// 用户点击草稿页面进入
...
...
one_stop_public/excelInitFuc/functionList.js
浏览文件 @
ebe6c000
This source diff could not be displayed because it is too large. You can
view the blob
instead.
one_stop_public/excelInitFuc/index.jsx
浏览文件 @
ebe6c000
...
...
@@ -7,6 +7,7 @@ import { Button,Modal,Row,Col,Select } from 'antd';
import
funcList
from
'./functionList'
;
import
AceEditor
from
"react-ace"
;
import
styles
from
'./style.less'
;
import
Throttle
from
'lodash-decorators/throttle'
;
const
{
Option
}
=
Select
;
export
default
class
index
extends
Component
{
state
=
{
...
...
@@ -16,6 +17,8 @@ export default class index extends Component {
checkedList
:
[],
// 用户选中的函数数据
checkedFuc
:
''
,
// 用户选择的函数
aceValue
:
''
,
// 编辑器输入内容
callKey
:
''
,
// 选择函数调用名
resultValue
:
''
,
// 计算结果
};
/**
* 展示模态框回调
...
...
@@ -29,11 +32,11 @@ export default class index extends Component {
* 模态框确定函数回调
*/
handleOk
=
e
=>
{
const
{
checkedFuc
}
=
this
.
state
const
{
checkedFuc
,
callKey
}
=
this
.
state
this
.
setState
({
visible
:
false
,
});
this
.
props
.
setPitchOff
(
checkedFuc
)
this
.
props
.
setPitchOff
(
`$.
${
callKey
}
()`
)
};
/**
* 模态框取消函数回调
...
...
@@ -60,7 +63,8 @@ export default class index extends Component {
func
:
item
.
function
,
funcName
:
item
.
funcName
,
params
:
item
.
params
,
demo
:
item
.
demo
demo
:
item
.
demo
,
callKey
:
item
.
callKey
,
})
})
this
.
setState
({
...
...
@@ -77,7 +81,8 @@ export default class index extends Component {
key
:
item
.
name
,
func
:
item
.
function
,
params
:
item
.
params
,
demo
:
item
.
demo
demo
:
item
.
demo
,
callKey
:
item
.
callKey
,
})
})
})
...
...
@@ -97,7 +102,11 @@ export default class index extends Component {
checkedList
:
arr
,
checkedFuc
:
arr
[
0
].
func
,
aceValue
:
arr
[
0
].
func
.
toString
(),
callKey
:
arr
[
0
].
callKey
},()
=>
{
this
.
getListData
(
this
.
state
.
checkedList
[
0
].
demo
)
})
}
/**
* 数据格式化等操作
...
...
@@ -117,7 +126,8 @@ export default class index extends Component {
key
:
item
.
name
,
func
:
item
.
function
,
params
:
item
.
params
,
demo
:
item
.
demo
demo
:
item
.
demo
,
callKey
:
item
.
callKey
,
})
})
})
...
...
@@ -129,6 +139,7 @@ export default class index extends Component {
/**
* 根据传入的数组长度返回对应的函数传入值
*/
@
Throttle
(
1
)
getListData
=
(
List
)
=>
{
const
{
checkedFuc
}
=
this
.
state
let
ary
=
[]
...
...
@@ -136,13 +147,20 @@ export default class index extends Component {
ary
.
push
(
item
.
value
)
return
item
})
return
checkedFuc
(...
ary
)
let
data
=
checkedFuc
(...
ary
)
this
.
setState
({
resultValue
:
data
})
}
componentWillReceiveProps
(
nextProps
){
const
{
isPicth
}
=
nextProps
this
.
setState
({
visible
:
isPicth
})
const
{
visible
}
=
this
.
state
if
(
visible
!==
isPicth
){
this
.
setState
({
visible
:
isPicth
})
}
}
// 编辑起状态函数
onAceChange
=
(
newValue
)
=>
{
...
...
@@ -151,7 +169,7 @@ export default class index extends Component {
})
}
render
()
{
const
{
selectOne
,
selectTwo
,
checkedList
,
checkedFuc
,
aceValue
}
=
this
.
state
const
{
selectOne
,
selectTwo
,
checkedList
,
checkedFuc
,
aceValue
,
resultValue
}
=
this
.
state
const
{
isShowBtn
,
isPicth
}
=
this
.
props
return
(
<>
...
...
@@ -270,8 +288,25 @@ export default class index extends Component {
</
Col
>
</
Row
>
<
Row
gutter=
{
16
}
>
<
Col
span=
{
5
}
className=
{
styles
.
left_title
}
>
计算结果:
</
Col
>
<
Col
span=
{
16
}
className=
{
styles
.
right_content
}
>
{
typeof
this
.
getListData
(
checkedList
[
0
].
demo
)
==
'object'
||
typeof
this
.
getListData
(
checkedList
[
0
].
demo
)
==
'boolean'
?
JSON
.
stringify
(
this
.
getListData
(
checkedList
[
0
].
demo
)):
this
.
getListData
(
checkedList
[
0
].
demo
)
}
</
Col
>
<
Col
span=
{
5
}
className=
{
styles
.
left_title
}
>
计算结果:
</
Col
>
<
Col
span=
{
16
}
className=
{
styles
.
right_content
}
>
{
resultValue
?
typeof
resultValue
===
'object'
||
typeof
resultValue
===
'boolean'
?
JSON
.
stringify
(
resultValue
)
:
resultValue
:
typeof
resultValue
===
'boolean'
?
JSON
.
stringify
(
resultValue
)
:
null
}
</
Col
>
</
Row
>
</
div
>
):<
div
className=
{
styles
.
noList
}
>
...
...
@@ -285,3 +320,4 @@ export default class index extends Component {
)
}
}
one_stop_public/libs/Basics.jsx
浏览文件 @
ebe6c000
...
...
@@ -47,7 +47,7 @@ export default class Basics extends Component {
!
isEmpty
(
item
.
children
)?
item
.
children
.
map
((
arr
,
index
)
=>
{
return
<
div
key=
{
index
}
><
Tooltip
placement=
"right"
title=
{
<
div
><
div
>
函数名称:
<
br
/>
{
arr
.
name
}
</
div
><
div
>
函数简介:
<
br
/>
{
arr
.
funcName
}
</
div
><
div
>
注:
<
br
/>
点击可快捷添加入输入栏
</
div
></
div
>
}
><
div
onClick=
{
()
=>
{
setCloseAll
();
setFunction
(
arr
.
function
)}
}
onClick=
{
()
=>
{
setCloseAll
();
setFunction
(
`$.${arr.callKey}()`
)}
}
className=
{
styles
.
top_list
}
>
<
Icon
style=
{
{
fontSize
:
12
,
marginRight
:
8
}
}
type=
"edit"
/>
{
arr
.
name
}
...
...
one_stop_public/libs/rollTab.jsx
浏览文件 @
ebe6c000
...
...
@@ -15,13 +15,6 @@ export default class rollTab extends Component {
}
}
componentDidMount
(){
let
functionObj
=
{}
formulaList
.
map
(
item
=>
{
item
.
children
.
map
(
arr
=>
{
functionObj
[
arr
.
callKey
]
=
arr
.
function
})
})
window
.
functionObj
=
functionObj
this
.
setState
({
tabList
:
formulaList
},()
=>
{
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
ebe6c000
...
...
@@ -64,6 +64,7 @@ const Bs64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
const
base64
=
baseX
(
Bs64
)
import
{
Base16Encode
}
from
"../Base16/index"
import
{
getToken
}
from
'../utils/token'
;
import
{
formulaList
}
from
'../excelInitFuc/functionList'
;
// import FilePreview from '../filePreview';
const
Item
=
MobileList
.
Item
;
const
Brief
=
Item
.
Brief
;
...
...
@@ -1115,9 +1116,18 @@ export default class tableCom extends Component {
return
} */
const
base52
=
column
.
base52
/**
* 中台函数库注入
* 动态生成表单配置函数所使用
*/
let
functionObj
=
{}
formulaList
.
map
(
item
=>
{
item
.
children
.
map
(
arr
=>
{
functionObj
[
arr
.
callKey
]
=
arr
.
function
})
})
try
{
var
fun1
=
new
Function
(
"obj"
,
"init"
,
"defaultValues"
,
"env"
,
"index"
,
"fatherCode"
,
"utils"
,
fun
);
var
fun1
=
new
Function
(
"obj"
,
"init"
,
"defaultValues"
,
"env"
,
"index"
,
"fatherCode"
,
"utils"
,
"$"
,
fun
);
let
obj
if
(
!
this
.
props
.
isEdit
&&
this
.
props
.
fatherCode
){
...
...
@@ -1137,9 +1147,9 @@ export default class tableCom extends Component {
setValues
:
this
.
setValues
.
bind
(
this
,
base52
,
json
),
req
:
this
.
reqUtil
.
bind
(
this
,
base52
,
json
,
callback
),
md5
:
md5
,
render
:
this
.
getRender
,
base64
:
getBase64
render
:
this
.
getRender
,
base64
:
getBase64
,
},
functionObj
)
if
(
base52
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论