Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c23e2750
提交
c23e2750
authored
12月 02, 2022
作者:
刘浪
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://scjoyedu.eicp.net:9121/front-team/webPublic
上级
025cc07b
ab8f0f97
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
75 行增加
和
49 行删除
+75
-49
index.js
one_stop_public/tableCompon/Split_Index/EchartsDiy/index.js
+24
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+39
-43
hrefWithToken.js
zyd_public/utils/hrefWithToken.js
+12
-6
没有找到文件。
one_stop_public/tableCompon/Split_Index/EchartsDiy/index.js
0 → 100644
浏览文件 @
c23e2750
import
React
,
{
useMemo
}
from
'react'
;
import
ReactEcharts
from
'echarts-for-react'
;
export
default
function
EchartsDiy
(
props
){
const
{
json
,
uuid
,
option
,
value
}
=
props
;
const
opt
=
useMemo
(()
=>
{
return
(
value
&&
typeof
value
===
'object'
&&
Object
.
keys
(
value
).
length
)
?
value
:
option
;
},
[
value
,
option
]);
// console.log(opt);
if
(
!
opt
){
return
null
;
}
return
(
<
ReactEcharts
style
=
{{
height
:
json
.
height
||
500
}}
key
=
{
uuid
}
option
=
{
opt
}
notMerge
=
{
true
}
lazyUpdate
=
{
true
}
theme
=
{
'theme_name'
}
onEvents
=
{{}}
/
>
)
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
c23e2750
...
...
@@ -83,6 +83,7 @@ import ButtonDiy from '@/webPublic/one_stop_public/tableCompon/Split_Index/Butto
import
giveVarcharRules
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/giveVarcharLength'
;
import
getPopupContainer
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/getPopupContainer'
;
import
StepDiy
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/StepDiy'
;
import
EchartsDiy
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/EchartsDiy'
;
/**
* 日期组件antd3.x有bug 详情见禅道 27152 毕业跟踪调查管理 毕业时间改为年级筛选
...
...
@@ -162,9 +163,11 @@ export default class TableCom extends Component {
const
{
dispatch
}
=
this
.
props
;
const
x
=
this
.
props
.
DataColumn
.
isShowModal
;
x
[
fk
]
=
true
;
this
.
setState
({
this
.
setState
(
{
modalInit
:
data
,
},
()
=>
{
},
()
=>
{
dispatch
({
type
:
'DataColumn/showModal'
,
payload
:
{
isShowModal
:
x
},
...
...
@@ -176,8 +179,8 @@ export default class TableCom extends Component {
});
},
});
})
},
);
};
/**
...
...
@@ -312,7 +315,7 @@ export default class TableCom extends Component {
return
;
}
if
(
!
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
==
'TableSelect'
)
&&
!
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
==
=
'TableSelect'
)
&&
json
.
isFormulaOnce
)
{
return
;
...
...
@@ -320,7 +323,7 @@ export default class TableCom extends Component {
if
(
!
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
==
'TableSelect'
||
json
.
comName
==
=
'TableSelect'
||
(
json
.
formula
!=
null
&&
json
.
formula
!=
''
)
)
)
{
...
...
@@ -404,7 +407,7 @@ export default class TableCom extends Component {
}
}
if
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
==
'TableSelect'
)
{
if
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
==
=
'TableSelect'
)
{
const
obj2
=
{
...
obj
,
...
props
.
form
.
getFieldsValue
(),
...
...
@@ -713,7 +716,7 @@ export default class TableCom extends Component {
if
(
callback
)
{
const
data
=
reqUrls
[
url
].
data
;
if
(
json
.
optionType
&&
json
.
optionType
==
'func'
)
{
if
(
json
.
optionType
&&
json
.
optionType
==
=
'func'
)
{
const
res
=
callback
(
data
);
if
(
res
!=
null
&&
!
(
typeof
res
===
'function'
))
{
...
...
@@ -727,7 +730,7 @@ export default class TableCom extends Component {
},
);
}
}
else
if
(
json
.
comName
==
'Button'
)
{
}
else
if
(
json
.
comName
==
=
'Button'
)
{
try
{
callback
(
data
);
}
catch
(
e
)
{
...
...
@@ -903,7 +906,7 @@ export default class TableCom extends Component {
if
(
!
isChange
)
{
if
(
callback
)
{
const
data
=
sqlKeys
[
sqlKey
].
data
;
if
(
json
.
optionType
&&
json
.
optionType
==
'func'
)
{
if
(
json
.
optionType
&&
json
.
optionType
==
=
'func'
)
{
const
res
=
callback
(
data
);
if
(
res
!=
null
&&
!
(
typeof
res
===
'function'
))
{
this
.
setState
(
...
...
@@ -916,7 +919,7 @@ export default class TableCom extends Component {
},
);
}
}
else
if
(
json
.
comName
==
'Button'
)
{
}
else
if
(
json
.
comName
==
=
'Button'
)
{
try
{
callback
(
data
);
}
catch
(
e
)
{
...
...
@@ -1045,7 +1048,6 @@ export default class TableCom extends Component {
return
'norefeshxxxxxxxxxxxxxxxxxxxx'
;
};
getObjValues
=
()
=>
{
const
{
isEdit
,
fatherObj
,
defaultValues
,
formKey
,
form
,
fatherCode
}
=
this
.
props
;
let
obj
=
{};
...
...
@@ -1064,7 +1066,7 @@ export default class TableCom extends Component {
};
}
return
obj
;
}
}
;
functionArguments
=
(
column
,
callback
)
=>
{
const
base52
=
column
.
base52
;
...
...
@@ -1619,18 +1621,12 @@ export default class TableCom extends Component {
}
return
<
QRCode
{
...
this
.
state
.
option
}
key=
{
uuid
}
/>;
}
if
(
json
.
comName
==
'Echart'
)
{
return
(
<
ReactEcharts
style=
{
{
height
:
json
.
height
||
500
}
}
key=
{
uuid
}
option=
{
this
.
state
.
option
||
{}
}
notMerge=
{
true
}
lazyUpdate=
{
true
}
theme=
{
'theme_name'
}
onEvents=
{
{}
}
/>
);
if
(
json
.
comName
===
'Echart'
)
{
return
this
.
props
.
form
.
getFieldDecorator
(
uuid
,
{
initialValue
:
''
,
})(
<
EchartsDiy
json=
{
json
}
uuid=
{
uuid
}
option=
{
this
.
state
.
option
}
/>
)
}
if
(
json
.
comName
===
'Graph'
)
{
return
<
Neo4jD3Com
key=
{
uuid
}
json=
{
json
}
option=
{
this
.
state
.
option
||
[]
}
/>;
...
...
@@ -2115,9 +2111,9 @@ export default class TableCom extends Component {
if
(
dataColumn
.
isNull
!=
null
&&
!
dataColumn
.
isNull
)
{
required
=
true
;
}
if
(
Array
.
isArray
(
json
.
vlds
))
{
for
(
let
item
of
json
.
vlds
)
{
if
(
item
.
required
)
{
if
(
Array
.
isArray
(
json
.
vlds
))
{
for
(
let
item
of
json
.
vlds
)
{
if
(
item
.
required
)
{
required
=
true
;
// 验证里面填了必填 则必填
}
}
...
...
@@ -2590,12 +2586,8 @@ ${obj[dataColumn.base52]}
style=
{
{
marginLeft
:
5
,
minHeight
:
get
===
'mobile'
?
'200px'
:
'auto'
,
width
:
get
===
'mobile'
?
'auto'
:
json
.
width
,
width
:
get
===
'mobile'
?
'auto'
:
json
.
width
,
height
:
get
===
'mobile'
?
''
:
json
.
height
,
}
}
/>
);
...
...
@@ -3175,8 +3167,12 @@ ${obj[dataColumn.base52]}
}
}
const
optDiy
=
Array
.
isArray
(
json
?.
options
)
?
json
.
options
:
Array
.
isArray
(
options
)
?
options
:
[];
if
(
dataColumn
.
base52
===
'KjWXQFIprRc'
){
const
optDiy
=
Array
.
isArray
(
json
?.
options
)
?
json
.
options
:
Array
.
isArray
(
options
)
?
options
:
[];
if
(
dataColumn
.
base52
===
'KjWXQFIprRc'
)
{
// console.log(json, required, dataColumn, optDiy);
}
...
...
@@ -3192,7 +3188,9 @@ ${obj[dataColumn.base52]}
},
],
})(
!
optDiy
.
length
?
<
Input
disabled=
{
true
}
style=
{
{
width
:
json
.
width
}
}
/>:
!
optDiy
.
length
?
(
<
Input
disabled=
{
true
}
style=
{
{
width
:
json
.
width
}
}
/>
)
:
(
<
Select
allowClear
showSearch
...
...
@@ -3225,16 +3223,15 @@ ${obj[dataColumn.base52]}
}
{
...
otherProps
}
>
{
optDiy
.
map
(
r
=>
{
{
optDiy
.
map
(
r
=>
{
return
(
<
Option
key=
{
r
.
value
}
value=
{
r
.
value
}
>
{
r
.
label
}
</
Option
>
);
})
}
</
Select
>
,
})
}
</
Select
>
)
,
);
if
(
get
===
'mobile'
&&
...
...
@@ -3441,13 +3438,12 @@ ${obj[dataColumn.base52]}
json
.
vlds
&&
json
.
vlds
.
length
>
0
?
json
.
vlds
:
[
{
required
:
required
,
message
:
'请选择起止时间'
,
validator
:
(
rule
,
value
,
callback
)
=>
{
let
errors
=
[];
if
(
!
value
||
!
Array
.
isArray
(
value
)
||
value
.
length
!==
2
)
{
if
(
!
value
||
!
Array
.
isArray
(
value
)
||
value
.
length
!==
2
)
{
// 移动端起止时间必须是个数组 且 length = 2
errors
.
push
(
new
Error
(
'请选择'
,
rule
.
field
));
}
...
...
zyd_public/utils/hrefWithToken.js
浏览文件 @
c23e2750
...
...
@@ -4,13 +4,19 @@ import { getInfo, transformApi } from '@/highOrderComponent/Service';
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform'
;
export
function
hrefWithToken
(
url
,
arg
=
{})
{
export
function
hrefWithToken
(
url
,
arg
=
{
justOpenUrl
:
false
,
params
:
{},
fileName
:
'导出'
,
method
:
'GET'
,
ext
:
'xlsx'
,
})
{
const
{
justOpenUrl
=
false
,
params
=
{}
,
fileName
=
''
,
method
=
'GET'
,
ext
=
'xlsx'
,
justOpenUrl
,
params
,
fileName
,
method
,
ext
,
}
=
arg
;
if
(
!
getIsBei_Dian
())
{
if
(
url
.
indexOf
(
'?'
)
>
-
1
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论