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
f2d94180
Commit
f2d94180
authored
Aug 27, 2019
by
zhangderong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
搜索显示问题
parent
7c628013
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
47 deletions
+54
-47
channel.vue
src/page/resume/channel.vue
+53
-47
emailMange.vue
src/page/system/emailMange.vue
+1
-0
No files found.
src/page/resume/channel.vue
View file @
f2d94180
...
@@ -351,7 +351,7 @@ export default {
...
@@ -351,7 +351,7 @@ export default {
flowStatusarr
:[],
flowStatusarr
:[],
quanxuan
:[],
quanxuan
:[],
orignarr
:[
'
TO_SEE
'
,
'
HAS_SEE
'
,
'
SEE_FAIL
'
,
'
INTERVIEW_FAIL
'
,
'
TO_SENT_OFFER
'
,
'
TO_ENTRY
'
,
'
HAS_ENTRY
'
,
'
NO_ENTRY
'
,
'
END
'
,
'
ARRIVED
'
],
orignarr
:[
'
TO_SEE
'
,
'
HAS_SEE
'
,
'
SEE_FAIL
'
,
'
INTERVIEW_FAIL
'
,
'
TO_SENT_OFFER
'
,
'
TO_ENTRY
'
,
'
HAS_ENTRY
'
,
'
NO_ENTRY
'
,
'
END
'
,
'
ARRIVED
'
],
totalSize
:
null
,
totalSize
:
0
,
pageSize
:
30
,
pageSize
:
30
,
pageIndex
:
1
,
pageIndex
:
1
,
searchInfo
:{
searchInfo
:{
...
@@ -385,50 +385,50 @@ export default {
...
@@ -385,50 +385,50 @@ export default {
},
},
methods
:{
methods
:{
//查询列表
//查询列表
quxiaoxi
(
page
){
//
quxiaoxi(page){
page
=
typeof
(
page
)
==
'
number
'
?
page
:
1
//
page = typeof(page)=='number'?page:1
this
.
searchInfo
.
pageIndex
=
page
//
this.searchInfo.pageIndex = page
this
.
pageIndex
=
page
//
this.pageIndex = page
let
parmars
=
{
//
let parmars={
pageSize
:
this
.
searchInfo
.
pageSize
,
//
pageSize:this.searchInfo.pageSize,
pageIndex
:
this
.
searchInfo
.
pageIndex
,
//
pageIndex:this.searchInfo.pageIndex,
parameter
:{
//
parameter:{
optSourceCode
:
this
.
$route
.
params
.
channelname
//
optSourceCode:this.$route.params.channelname
}
//
}
}
//
}
this
.
ajaxData
=
[]
//
this.ajaxData=[]
adoptOneSeeResumeList
(
parmars
).
then
(
res
=>
{
//
adoptOneSeeResumeList(parmars).then(res=>{
if
(
res
.
data
.
success
==
true
){
//
if(res.data.success==true){
this
.
checkboxList
=
[]
//
this.checkboxList=[]
this
.
spinShow
=
false
//
this.spinShow=false
this
.
totalSize
=
res
.
data
.
body
.
totalNumber
//
this.totalSize=res.data.body.totalNumber
this
.
quanxuan
.
push
(
res
.
data
.
body
.
items
.
id
)
//
this.quanxuan.push(res.data.body.items.id)
this
.
ajaxData
=
res
.
data
.
body
.
items
.
map
((
item
,
index
)
=>
{
//
this.ajaxData=res.data.body.items.map((item,index)=>{
item
.
id
=
item
.
id
//
item.id=item.id
item
.
ownerName
=
item
.
ownerName
//
item.ownerName=item.ownerName
item
.
ownerSex
=
item
.
ownerSex
//
item.ownerSex=item.ownerSex
item
.
deliveryTime
=
item
.
deliveryTime
//
item.deliveryTime=item.deliveryTime
item
.
belongs
=
item
.
belongs
//
item.belongs=item.belongs
item
.
emailSendtime
=
item
.
emailSendtime
//
item.emailSendtime=item.emailSendtime
item
.
ownerMobile
=
item
.
ownerMobile
//
item.ownerMobile=item.ownerMobile
item
.
ownerHighestDegree
=
item
.
ownerHighestDegree
//
item.ownerHighestDegree=item.ownerHighestDegree
item
.
ownerExpectTitles
=
item
.
ownerExpectTitles
//
item.ownerExpectTitles=item.ownerExpectTitles
item
.
flowStatus
=
item
.
flowStatus
//
item.flowStatus=item.flowStatus
item
.
ownerAge
=
item
.
ownerAge
//
item.ownerAge=item.ownerAge
item
.
ownerWorkYears
=
item
.
ownerWorkYears
//
item.ownerWorkYears=item.ownerWorkYears
item
.
modifyTime
=
item
.
modifyTime
//
item.modifyTime=item.modifyTime
item
.
srcSite
=
item
.
srcSite
//
item.srcSite=item.srcSite
item
.
STATES
=
false
//
item.STATES=false
item
.
isShow
=
false
//
item.isShow=false
item
.
optSource
=
item
.
optSource
//
item.optSource=item.optSource
item
.
modifier
=
item
.
modifier
//
item.modifier=item.modifier
item
.
c
=
item
.
modifier
==
''
?
item
.
modifier
:
item
.
modifier
.
split
(
'
_
'
)
//
item.c=item.modifier==''?item.modifier:item.modifier.split('_')
item
.
d
=
item
.
c
[
0
]
//
item.d=item.c[0]
return
item
//
return item
})
//
})
}
//
}
})
//
})
},
//
},
// 判断输入年限的大小
// 判断输入年限的大小
judge1
(
value
){
judge1
(
value
){
this
.
searchInfo
.
ownerWorkYears1
=
value
.
value
this
.
searchInfo
.
ownerWorkYears1
=
value
.
value
...
@@ -974,6 +974,9 @@ export default {
...
@@ -974,6 +974,9 @@ export default {
let
Ishow
=
res
.
data
.
items
let
Ishow
=
res
.
data
.
items
if
(
res
.
data
.
success
==
true
){
if
(
res
.
data
.
success
==
true
){
this
.
checkboxList
=
[]
this
.
checkboxList
=
[]
if
(
res
.
data
.
body
.
totalNumber
==
0
){
this
.
totalSize
=
0
}
this
.
spinShow
=
false
this
.
spinShow
=
false
this
.
ajaxData
=
res
.
data
.
body
.
items
.
map
((
item
,
index
)
=>
{
this
.
ajaxData
=
res
.
data
.
body
.
items
.
map
((
item
,
index
)
=>
{
this
.
totalSize
=
res
.
data
.
body
.
totalNumber
this
.
totalSize
=
res
.
data
.
body
.
totalNumber
...
@@ -1029,7 +1032,10 @@ export default {
...
@@ -1029,7 +1032,10 @@ export default {
adoptOneSeeResumeList
(
parmars
).
then
(
res
=>
{
adoptOneSeeResumeList
(
parmars
).
then
(
res
=>
{
if
(
res
.
data
.
success
==
true
){
if
(
res
.
data
.
success
==
true
){
this
.
checkboxList
=
[]
this
.
checkboxList
=
[]
this
.
totalSize
=
res
.
data
.
body
.
totalNumber
if
(
res
.
data
.
body
.
totalNumber
==
0
){
this
.
totalSize
=
0
}
this
.
totalSize
=
res
.
data
.
body
.
totalNumber
this
.
quanxuan
.
push
(
res
.
data
.
body
.
items
.
id
)
this
.
quanxuan
.
push
(
res
.
data
.
body
.
items
.
id
)
this
.
ajaxData
=
res
.
data
.
body
.
items
.
map
((
item
,
index
)
=>
{
this
.
ajaxData
=
res
.
data
.
body
.
items
.
map
((
item
,
index
)
=>
{
item
.
id
=
item
.
id
item
.
id
=
item
.
id
...
@@ -1083,7 +1089,7 @@ export default {
...
@@ -1083,7 +1089,7 @@ export default {
},
},
mounted
(){
mounted
(){
this
.
quxiaoxi
()
this
.
SouSuo
()
}
}
}
}
</
script
>
</
script
>
...
...
src/page/system/emailMange.vue
View file @
f2d94180
...
@@ -231,6 +231,7 @@ export default {
...
@@ -231,6 +231,7 @@ export default {
this
.
formInline
.
emailPsd
=
''
this
.
formInline
.
emailPsd
=
''
this
.
formInline
.
UserName
=
''
this
.
formInline
.
UserName
=
''
this
.
DATA
=
''
this
.
DATA
=
''
this
.
SearchList
()
}
}
if
(
res
.
data
.
success
==
false
){
if
(
res
.
data
.
success
==
false
){
this
.
modal3
=
false
this
.
modal3
=
false
...
...
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