Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
6e0792ea
提交
6e0792ea
authored
2月 14, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
一站式wangEditor组件开发
上级
9fca5ac4
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
56 行增加
和
13 行删除
+56
-13
ZdyTable.jsx
one_stop_public/Table/ZdyTable.jsx
+0
-1
index.jsx
one_stop_public/TableV2/index.jsx
+0
-1
index.jsx
one_stop_public/tableCompon/index.jsx
+20
-1
OneStopWangEditor.js
zyd_public/WangEditor/OneStopWangEditor.js
+4
-3
OnstopWang.js
zyd_public/WangEditor/OnstopWang.js
+32
-6
handlePhoto.js
zyd_public/utils/handlePhoto.js
+0
-1
没有找到文件。
one_stop_public/Table/ZdyTable.jsx
浏览文件 @
6e0792ea
...
...
@@ -55,7 +55,6 @@ export default class ZdyTable extends Component {
formDeafault
=
''
,
// 为二维码快捷发起默认值
}
=
this
.
props
;
// if(this.props.currentFormKey === 'aa20cdbd-2019-45ea-8cdf-715aa46e132e'){
// debugger;
// }
if
(
isPreview
||
isChild
)
{
this
.
initExcel
({
datas
:
this
.
props
.
datas
,
trees
:
this
.
props
.
trees
},
()
=>
{
...
...
one_stop_public/TableV2/index.jsx
浏览文件 @
6e0792ea
...
...
@@ -55,7 +55,6 @@ export default class ZdyTable extends Component {
formDeafault
=
''
,
// 为二维码快捷发起默认值
}
=
this
.
props
;
// if(this.props.currentFormKey === 'aa20cdbd-2019-45ea-8cdf-715aa46e132e'){
// debugger;
// }
if
(
isPreview
||
isChild
)
{
this
.
initExcel
({
datas
:
this
.
props
.
datas
,
trees
:
this
.
props
.
trees
},
()
=>
{
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
6e0792ea
...
...
@@ -60,6 +60,7 @@ import MobileItem from './MobileItem';
import
MobileCascader
from
'./CascaderDiy/MobileCascader'
;
import
{
equal
,
errorHandler
,
getBase64
,
getRender
,
isJSON
}
from
'./Split_Index/staticInfo'
;
import
PictureSignature
,
{
SignArray
}
from
"@/webPublic/one_stop_public/libs/PictureSignature/PictureSignature"
;
import
WangEditor
from
'@/webPublic/zyd_public/WangEditor/OnstopWang'
;
const
{
TextArea
}
=
Input
;
const
{
Option
}
=
Select
;
...
...
@@ -1824,6 +1825,7 @@ export default class tableCom extends Component {
}
}
}
// console.log(initValue, 'initValue');
// console.table({
// objinit,
// fatherCode: this.props.fatherCode,
...
...
@@ -1862,6 +1864,11 @@ export default class tableCom extends Component {
/>
);
break
;
case
'WangEditor'
:
cm
=
(<
div
dangerouslySetInnerHTML=
{
{
__html
:
obj
[
dataColumn
.
base52
]}
}
>
</
div
>);
break
;
case
'TextArea'
:
cm
=
(
<
span
...
...
@@ -3060,8 +3067,20 @@ export default class tableCom extends Component {
);
}
break
;
case
'WangEditor'
:
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
rules
:
json
.
vlds
&&
json
.
vlds
.
length
>
0
?
json
.
vlds
:
[{
required
:
required
,
message
:
'请输入'
}],
})(<
WangEditor
json=
{
json
}
dataColumn=
{
dataColumn
}
disabled=
{
disabled
}
/>);
break
;
case
'RichText'
:
console
.
log
(
initValue
,
'22222222222222'
,
dataColumn
.
base52
,
json
);
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
rules
:
...
...
zyd_public/WangEditor/OneStopWangEditor.js
浏览文件 @
6e0792ea
...
...
@@ -16,6 +16,7 @@
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
WangEditor
from
'./includes/wangEditor.min'
;
import
{
uploadFile
}
from
"@/webPublic/one_stop_public/libs/PictureSignature/ShowItem"
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
let
editor
=
null
;
export
default
function
Index
({
...
...
@@ -49,9 +50,9 @@ export default function Index({
editor
.
config
.
customUploadImg
=
function
(
resultFiles
,
insertImgFn
)
{
// 重写上传图片的方法
uploadFile
(
{
file
:
resultFiles
[
0
]
}
).
then
((
y
)
=>
{
if
(
y
&&
y
.
url
)
{
insertImgFn
(
y
.
url
);
uploadFile
(
resultFiles
[
0
]
).
then
((
y
)
=>
{
if
(
y
&&
y
.
length
)
{
insertImgFn
(
queryApiActionPath
()
+
y
);
}
});
// insertImgFn(imgUrl);
...
...
zyd_public/WangEditor/OnstopWang.js
浏览文件 @
6e0792ea
import
React
,
{
useState
,
useEffect
,
forwardRef
}
from
'react'
;
import
WangEditor
from
'./OneStopWangEditor'
;
function
Index
({
onChange
,
value
,
height
,
domKey
})
{
function
Index
({
onChange
,
value
,
otherProps
,
dataColumn
,
disabled
})
{
const
[
ready
,
setReady
]
=
useState
(
false
);
const
domKey
=
dataColumn
.
base52
||
'wang-editor-dom-content'
;
useEffect
(()
=>
{
let
dom
=
document
.
getElementById
(
`wangEditor
${
domKey
}
`
);
if
(
dom
&&
dom
.
parentNode
){
dom
.
parentNode
.
removeChild
(
dom
);
}
setReady
(
true
);
},
[]);
if
(
!
ready
){
return
null
;
}
return
(
<
WangEditor
key
=
{
'cmsContent'
}
height
=
{
height
}
value
=
{
value
}
domKey
=
{
d
omKey
}
height
=
{
otherProps
?.
height
||
450
}
value
=
{
value
||
''
}
domKey
=
{
d
ataColumn
.
base52
||
'wang-editor-dom-content'
}
onChangeValue
=
{
onChange
}
otherProps
=
{
otherProps
}
/
>
);
}
export
default
forwardRef
((
props
,
_ref
)
=>
{
console
.
log
(
props
);
return
<
Index
{...
props
}
/>
;
let
otherProps
=
{};
if
(
!
props
.
json
||
typeof
props
.
json
.
initialValue
===
'undefined'
){
return
<
div
><
/div>
;
}
if
(
props
.
json
?.
otherProps
)
{
otherProps
=
props
.
json
?.
otherProps
;
try
{
otherProps
=
new
Function
(
otherProps
)();
// console.log(this.otherProps);
}
catch
(
e
)
{
}
}
return
<
Index
{...
props
}
otherProps
=
{
otherProps
}
/>
;
});
zyd_public/utils/handlePhoto.js
浏览文件 @
6e0792ea
...
...
@@ -147,7 +147,6 @@ export const zipImage = (file, fileSizeLimitMb = 3) => {
image
.
src
=
e
.
target
.
result
;
return
(
image
.
onload
=
()
=>
{
let
canvas
=
document
.
createElement
(
'canvas'
);
debugger
;
let
context
=
canvas
.
getContext
(
'2d'
);
let
imageWidth
=
image
.
width
*
0.3
;
//压缩后图片的大小
let
imageHeight
=
image
.
height
*
0.3
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论