Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
recruiting-management
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
recruiting-management
Commits
c65f370b
Commit
c65f370b
authored
Sep 11, 2019
by
zhangderong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复编辑器图片上传问题
parent
0b730699
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
allResume.vue
src/page/resume/allResume.vue
+6
-3
resumeDetail.vue
src/page/resume/resumeDetail.vue
+3
-0
util.js
src/service/util.js
+2
-0
No files found.
src/page/resume/allResume.vue
View file @
c65f370b
...
...
@@ -1289,8 +1289,9 @@ import ckeditor from '../../components/ckeditor'
getEmailContent
(
parmars
).
then
(
res
=>
{
this
.
emailInline
.
theme
=
res
.
data
.
body
.
templateSubject
this
.
emailInline
.
receiveEmail
=
res
.
data
.
body
.
receiveEmail
this
.
emailInline
.
templateContent
=
res
.
data
.
body
.
templateContent
this
.
sad
=
this
.
emailInline
.
templateContent
// this.emailInline.templateContent=res.data.body.templateContent
// this.sad=this.emailInline.templateContent
this
.
sad
=
res
.
data
.
body
.
templateContent
if
(
res
.
data
.
body
&&
res
.
data
.
body
.
resumeInterviewVO
){
this
.
formInline
.
UpdateOWER
=
res
.
data
.
body
.
resumeInterviewVO
.
interviewerName
this
.
formInline
.
UpdateVIEW
=
res
.
data
.
body
.
resumeInterviewVO
.
inviterName
...
...
@@ -1302,6 +1303,7 @@ import ckeditor from '../../components/ckeditor'
}
})
console
.
log
(
"
+++++++++++++++
"
)
},
uploadFile
(){
// this.uploadFileList=[]
...
...
@@ -1352,6 +1354,7 @@ import ckeditor from '../../components/ckeditor'
// getEditorValue(value){
// this.emailContent=value
// this.sad = value
// console.log( this.emailContent,777777,this.sad)
// // if(this.sad==''){this.$Notice.error({
// // title: '提示',
// // desc: '正文不能为空'
...
...
@@ -1364,7 +1367,7 @@ import ckeditor from '../../components/ckeditor'
// // this.isDisable=true
// // }
// },
getEditorValue
:
_debounce
(
(
value
)
=>
{
getEditorValue
:
_debounce
(
function
(
value
)
{
this
.
emailContent
=
value
this
.
sad
=
value
}),
...
...
src/page/resume/resumeDetail.vue
View file @
c65f370b
...
...
@@ -137,11 +137,14 @@ export default {
reList
:[],
downresume
:
''
,
detialID
:
''
,
showBtn
:
''
,
}
},
methods
:
{
getDETAIL
(){
this
.
detialID
=
this
.
$route
.
query
.
id
// this.showBtn=this.$router.query.noShowBtn
// console.log(this.showBtn)
let
parmars
=
{
resumeId
:
this
.
$route
.
query
.
id
}
...
...
src/service/util.js
View file @
c65f370b
...
...
@@ -5,12 +5,14 @@ export function _debounce (fn, delay) {
return
function
()
{
let
args
=
arguments
if
(
timer
)
{
clearTimeout
(
timer
)
}
timer
=
setTimeout
(
function
()
{
timer
=
null
console
.
log
(
this
)
fn
.
apply
(
this
,
args
)
}.
bind
(
this
),
delay
)
}
...
...
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