Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
73ba8050
Commit
73ba8050
authored
Dec 23, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改一些
parent
a9a427f5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
20 deletions
+39
-20
forMyApproval.vue
src/pages/administration/forMyApproval.vue
+12
-5
leaveApproval.vue
src/pages/administration/leaveApproval.vue
+8
-6
myApprovalList.vue
src/pages/administration/myApprovalList.vue
+9
-4
sendToMeApproval.vue
src/pages/administration/sendToMeApproval.vue
+9
-4
FinancialDocumentsDetail.vue
...s/financial/financalDocument/FinancialDocumentsDetail.vue
+1
-1
No files found.
src/pages/administration/forMyApproval.vue
View file @
73ba8050
...
...
@@ -271,6 +271,9 @@
import
{
getEmployeeAddrBook
}
from
'../../api/users/user'
import
{
UploadSelfFile
}
from
'../../api/common/common'
export
default
{
data
()
{
return
{
...
...
@@ -341,10 +344,14 @@
let
newArr
=
[];
newArr
.
push
(
file
.
file
)
let
path
=
"/Upload/Temporary/"
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
let
url
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
UploadSelfFile
(
'Temporary'
,
file
.
file
,
x
=>
{
if
(
x
.
Code
==
1
){
let
url
=
x
.
FileUrl
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
}
});
},
handleRemove
(
file
){
//删除
...
...
@@ -521,7 +528,7 @@
});
},
updateAapproval
(
path
,
cmd
,
submitCmd
,
workFlowId
,
templateId
){
this
.
$router
.
push
({
name
:
path
,
query
:{
cmd
:
cmd
,
submitCmd
:
submitCmd
,
workFlowId
:
workFlowId
,
templateId
:
templateId
}})
this
.
$router
.
push
({
path
:
path
,
query
:{
cmd
:
cmd
,
submitCmd
:
submitCmd
,
workFlowId
:
workFlowId
,
templateId
:
templateId
}})
},
getBigpic
(
obj
){
...
...
src/pages/administration/leaveApproval.vue
View file @
73ba8050
...
...
@@ -146,12 +146,14 @@
let
newArr
=
[];
newArr
.
push
(
file
.
file
)
UploadSelfFile
(
'Temporary'
,
file
.
file
,
x
=>
{
console
.
log
(
x
)
let
url
=
x
.
FileUrl
this
.
submitFileList
.
push
(
url
)
this
.
fileList
.
push
({
url
:
x
.
FileUrl
})
if
(
x
.
Code
==
1
){
let
url
=
x
.
FileUrl
this
.
submitFileList
.
push
(
url
)
this
.
fileList
.
push
({
url
:
x
.
FileUrl
})
}
});
},
handleRemove
(
file
)
{
//删除
...
...
src/pages/administration/myApprovalList.vue
View file @
73ba8050
...
...
@@ -265,6 +265,9 @@
import
{
getEmployeeAddrBook
}
from
'../../api/users/user'
import
{
UploadSelfFile
}
from
'../../api/common/common'
export
default
{
data
()
{
return
{
...
...
@@ -335,10 +338,12 @@
let
newArr
=
[];
newArr
.
push
(
file
.
file
)
let
path
=
"/Upload/Temporary/"
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
let
url
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
UploadSelfFile
(
'Temporary'
,
file
.
file
,
x
=>
{
if
(
x
.
Code
==
1
){
let
url
=
x
.
FileUrl
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
}
});
...
...
src/pages/administration/sendToMeApproval.vue
View file @
73ba8050
...
...
@@ -267,6 +267,9 @@
setCareOf
,
copyTomyaudit
}
from
'../../api/administration/administration'
;
import
{
UploadSelfFile
}
from
'../../api/common/common'
export
default
{
data
()
{
return
{
...
...
@@ -337,10 +340,12 @@
let
newArr
=
[];
newArr
.
push
(
file
.
file
)
let
path
=
"/Upload/Temporary/"
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
let
url
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
UploadSelfFile
(
'Temporary'
,
file
.
file
,
x
=>
{
if
(
x
.
Code
==
1
){
let
url
=
x
.
FileUrl
this
.
appMsg
.
Image
.
push
(
url
)
this
.
fileList
.
push
({
url
:
url
})
}
});
...
...
src/pages/financial/financalDocument/FinancialDocumentsDetail.vue
View file @
73ba8050
...
...
@@ -809,7 +809,7 @@
</div>
</div>
<div
style=
"padding-left: 75px;"
>
<button
class=
"hollowFixedBtn"
v-if=
"(bossID===1 || bossID===5||bossID===1903) && (GetDetail.Status===2 || GetDetail.Status===5 || GetDetail.Status===1)"
@
click=
"bohui()"
>
驳回
</button
>
<!-- <button class="hollowFixedBtn" v-if="(bossID===1 || bossID===5||bossID===1903) && (GetDetail.Status===2 || GetDetail.Status===5 || GetDetail.Status===1)" @click="bohui()">驳回</button>--
>
<button
class=
"hollowFixedBtn"
@
click=
"AuditOrRefund()"
>
返回
</button>
</div>
</div>
...
...
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