Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
frontend
/
qqxb-self-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
47043396
authored
Jun 24, 2020
by
xws
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
up
parent
9aed871f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
3 deletions
.env.development
package-lock.json
src/services/employee/employeeService.ts
src/servicesImpl/employee/employeeImpl.ts
src/utils/urls.ts
src/views/Information.vue
.env.development
View file @
47043396
...
@@ -5,5 +5,7 @@ VUE_APP_BASE_URL= http://organization.test.hrs100.cn:18080
...
@@ -5,5 +5,7 @@ VUE_APP_BASE_URL= http://organization.test.hrs100.cn:18080
VUE_APP_USERINFO_URL=http://106.120.107.145:7778/v1/qqxb/user/api
VUE_APP_USERINFO_URL=http://106.120.107.145:7778/v1/qqxb/user/api
VUE_APP_SALARY_URL=http://salary.test-api.qqxb.jinsehuaqin.com:8800
# https开关
# https开关
VUE_APP_OPEN_HTTPS=false
VUE_APP_OPEN_HTTPS=false
package-lock.json
View file @
47043396
...
@@ -7144,7 +7144,8 @@
...
@@ -7144,7 +7144,8 @@
"version"
:
"2.2.2"
,
"version"
:
"2.2.2"
,
"resolved"
:
"https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"
,
"resolved"
:
"https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"
,
"integrity"
:
"sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="
,
"integrity"
:
"sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
},
"pify"
:
{
"pify"
:
{
"version"
:
"4.0.1"
,
"version"
:
"4.0.1"
,
...
...
src/services/employee/employeeService.ts
View file @
47043396
...
@@ -31,7 +31,7 @@ export interface EmployeeInterface {
...
@@ -31,7 +31,7 @@ export interface EmployeeInterface {
setFiles
(
params
:
any
):
Promise
<
any
>
;
// 设置文件
setFiles
(
params
:
any
):
Promise
<
any
>
;
// 设置文件
delFiles
(
params
:
any
):
Promise
<
any
>
;
// 删除文件
delFiles
(
params
:
any
):
Promise
<
any
>
;
// 删除文件
putFiles
(
params
:
any
):
Promise
<
any
>
;
// 提交文件
putFiles
(
params
:
any
):
Promise
<
any
>
;
// 提交文件
tranFiles
(
params
:
any
):
Promise
<
any
>
;
//上传文件转短连接
getAgileWorker
(
params
:
any
):
Promise
<
any
>
;
//灵活用工
getAgileWorker
(
params
:
any
):
Promise
<
any
>
;
//灵活用工
}
}
src/servicesImpl/employee/employeeImpl.ts
View file @
47043396
...
@@ -11,7 +11,7 @@ class EmployeeService implements EmployeeInterface {
...
@@ -11,7 +11,7 @@ class EmployeeService implements EmployeeInterface {
* 请求头信息
* 请求头信息
*/
*/
private
header
:
any
;
private
header
:
any
;
private
headerUp
:
any
;
/**
/**
* 当前版本
* 当前版本
*/
*/
...
@@ -29,6 +29,7 @@ class EmployeeService implements EmployeeInterface {
...
@@ -29,6 +29,7 @@ class EmployeeService implements EmployeeInterface {
// 获取登录token
// 获取登录token
store
.
getters
.
getAccessToken
.
then
((
res
:
any
)
=>
{
store
.
getters
.
getAccessToken
.
then
((
res
:
any
)
=>
{
this
.
header
=
{
Authorization
:
`Bearer
${
res
}
`
};
this
.
header
=
{
Authorization
:
`Bearer
${
res
}
`
};
this
.
headerUp
=
{
Authorization
:
`Bearer
${
res
}
`
,
'Content-Type'
:
'multipart/form-data;charset=UTF-8'
}
});
});
// store.getters.getUserInfo.then((res: any) => {
// store.getters.getUserInfo.then((res: any) => {
// // console.log(res);
// // console.log(res);
...
@@ -310,6 +311,16 @@ class EmployeeService implements EmployeeInterface {
...
@@ -310,6 +311,16 @@ class EmployeeService implements EmployeeInterface {
/**
/**
*
*
* base64转短连接
* @param params
*/
public
tranFiles
(
params
:
any
):
Promise
<
any
>
{
let
url
=
urls
.
salaryUrl
+
`/general/person/upload`
;
return
request
.
post
(
url
,
params
,
this
.
headerUp
);
}
/**
*
* 提交文件
* 提交文件
* @param params
* @param params
*/
*/
...
...
src/utils/urls.ts
View file @
47043396
...
@@ -9,10 +9,15 @@ class Urls {
...
@@ -9,10 +9,15 @@ class Urls {
employeeUrl
:
String
=
process
.
env
.
VUE_APP_BASE_URL
;
employeeUrl
:
String
=
process
.
env
.
VUE_APP_BASE_URL
;
/**
/**
*
* 获取用户信息
* 获取用户信息
*/
*/
userInfoUrl
:
String
=
process
.
env
.
VUE_APP_USERINFO_URL
;
userInfoUrl
:
String
=
process
.
env
.
VUE_APP_USERINFO_URL
;
/**
* 个人中心
*/
salaryUrl
:
String
=
process
.
env
.
VUE_APP_SALARY_URL
;
}
}
...
...
src/views/Information.vue
View file @
47043396
This diff is collapsed.
Click to expand it.
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