Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
ccf05b69
Commit
ccf05b69
authored
Apr 10, 2021
by
hechieh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
富文本编辑器自定义上传地址
parent
6810243a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
ruoyi-ui/src/components/Editor/index.vue
ruoyi-ui/src/components/Editor/index.vue
+40
-0
No files found.
ruoyi-ui/src/components/Editor/index.vue
View file @
ccf05b69
<
template
>
<
template
>
<div>
<el-upload
:action=
"uploadUrl"
:on-success=
"handleUploadSuccess"
:before-upload=
"handleBeforeUpload"
:on-error=
"handleUploadError"
name=
"file"
:show-file-list=
"false"
:headers=
"headers"
style=
"display: none;"
ref=
'upload'
v-if=
'this.uploadUrl'
>
</el-upload>
<div
class=
"editor"
ref=
"editor"
:style=
"styles"
></div>
<div
class=
"editor"
ref=
"editor"
:style=
"styles"
></div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -30,6 +45,11 @@ export default {
...
@@ -30,6 +45,11 @@ export default {
readOnly
:
{
readOnly
:
{
type
:
Boolean
,
type
:
Boolean
,
default
:
false
,
default
:
false
,
},
/* 上传地址 */
uploadUrl
:
{
type
:
String
,
default
:
''
,
}
}
},
},
data
()
{
data
()
{
...
@@ -95,6 +115,26 @@ export default {
...
@@ -95,6 +115,26 @@ export default {
init
()
{
init
()
{
const
editor
=
this
.
$refs
.
editor
;
const
editor
=
this
.
$refs
.
editor
;
this
.
Quill
=
new
Quill
(
editor
,
this
.
options
);
this
.
Quill
=
new
Quill
(
editor
,
this
.
options
);
// 如果设置了上传地址则自定义图片和视频的上传事件
if
(
this
.
uploadUrl
)
{
let
toolbar
=
this
.
Quill
.
getModule
(
'
toolbar
'
);
toolbar
.
addHandler
(
'
image
'
,
(
value
)
=>
{
this
.
uploadType
=
'
image
'
;
if
(
value
)
{
this
.
$refs
.
upload
.
$children
[
0
].
$refs
.
input
.
click
();
}
else
{
this
.
quill
.
format
(
'
image
'
,
false
);
}
});
toolbar
.
addHandler
(
'
video
'
,
(
value
)
=>
{
this
.
uploadType
=
'
video
'
;
if
(
value
)
{
this
.
$refs
.
upload
.
$children
[
0
].
$refs
.
input
.
click
();
}
else
{
this
.
quill
.
format
(
'
video
'
,
false
);
}
});
}
this
.
Quill
.
pasteHTML
(
this
.
currentValue
);
this
.
Quill
.
pasteHTML
(
this
.
currentValue
);
this
.
Quill
.
on
(
"
text-change
"
,
(
delta
,
oldDelta
,
source
)
=>
{
this
.
Quill
.
on
(
"
text-change
"
,
(
delta
,
oldDelta
,
source
)
=>
{
const
html
=
this
.
$refs
.
editor
.
children
[
0
].
innerHTML
;
const
html
=
this
.
$refs
.
editor
.
children
[
0
].
innerHTML
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment