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
0d54529f
Commit
0d54529f
authored
Aug 21, 2019
by
zhangderong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Ztext1' of git.quantgroup.cn:ui/recruiting-management into Ztext1
Conflicts: src/api/stystem.server.js
parents
b45aad8b
c490a2ed
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
21 deletions
+14
-21
home.server.js
src/api/home.server.js
+1
-1
interview.server.js
src/api/interview.server.js
+1
-1
login.server.js
src/api/login.server.js
+1
-1
resume.server.js
src/api/resume.server.js
+1
-1
stystem.server.js
src/api/stystem.server.js
+6
-10
sweepCode.server.js
src/api/sweepCode.server.js
+2
-4
upload.server.js
src/api/upload.server.js
+2
-3
No files found.
src/api/home.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
// 获取个人信息
export
function
getpersonMassage
(
params
)
{
...
...
src/api/interview.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
// 更改约面信息
export
function
changeinterviewMassage
(
parmars
)
{
...
...
src/api/login.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
//登录
export
function
login
(
params
)
{
...
...
src/api/resume.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
// 查询简历列表
export
function
serchList
(
parmars
){
...
...
src/api/stystem.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
//账号列表查询
export
function
queryaccountList
(
params
)
{
...
...
@@ -12,8 +12,7 @@ export function queryaccountList(params) {
//添加账户
export
function
addAccount
(
params
)
{
return
axios
.
post
(
`
${
sapi
}
/api/user/add`
,
params
,{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
"
X-Requested-With
"
:
"
XMLHttpRequest
"
'
Content-Type
'
:
'
application/json
'
}})
}
//删除单条账户
...
...
@@ -43,28 +42,25 @@ export function queryemailList(parmars){
// 同步邮箱
export
function
Synchronization
(
parmars
){
return
axios
.
post
(
`
${
sapi
}
/api/email/bindAndSync`
,
parmars
,{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
'
X-Requested-With
'
:
'
XMLHttpRequest
'
'
Content-Type
'
:
'
application/json
'
}})
}
// 解绑邮箱
export
function
jiebangEmail
(
id
){
return
axios
.
post
(
`
${
sapi
}
/api/email/unbind/
${
id
}
`
,{
headers
:
{
'
Content-Type
'
:
'
application/x-www-form-urlencoded
'
,
'
X-Requested-With
'
:
'
XMLHttpRequest
'
'
Content-Type
'
:
'
application/x-www-form-urlencoded
'
}})
}
// 修改邮箱并重新绑定
export
function
updateemailTWO
(
parmars
){
return
axios
.
post
(
`
${
sapi
}
/api/email/modify`
,
parmars
,{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
'
X-Requested-With
'
:
'
XMLHttpRequest
'
'
Content-Type
'
:
'
application/json
'
}})
}
// 批量解绑邮箱
export
function
UntyingAll
(
UntyingAllARR
){
return
axios
.
post
(
`
${
sapi
}
/api/email/unbind/batch`
,
JSON
.
stringify
(
UntyingAllARR
),{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
}})
}
// 获取二维码
...
...
src/api/sweepCode.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
// 提交应聘登记表
export
function
submitMassage
(
params
)
{
// params=qs.stringify(params)
return
axios
.
post
(
`
${
sapi
}
/api/interview/arrive`
,
params
,{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
'
X-Requested-With
'
:
'
XMLHttpRequest
'
}})
'
Content-Type
'
:
'
application/json
'
}})
}
\ No newline at end of file
src/api/upload.server.js
View file @
0d54529f
import
axios
from
'
../service/http.service
'
import
{
sapi
}
from
'
../config
/env.config
'
}
from
'
../config
'
import
qs
from
'
qs
'
// 获取上传批次号
export
function
getuploadNumber
()
{
// params=qs.stringify(params)
return
axios
.
get
(
`
${
sapi
}
/api/resume/upload/batchNum`
,{
headers
:
{
'
Content-Type
'
:
'
application/json
'
,
'
X-Requested-With
'
:
'
XMLHttpRequest
'
'
Content-Type
'
:
'
application/json
'
}})
}
//上传文件
...
...
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