Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sgaqgl-vue
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
李苏
sgaqgl-vue
Commits
ccf1c2c1
Commit
ccf1c2c1
authored
Jan 11, 2023
by
黄自鹏
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.gavelinfo.com:lisu/sgaqgl-vue
parents
040b9b0d
e9be8457
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
14 deletions
+21
-14
index.vue
src/views/contingency/contingencyManager/index.vue
+5
-4
index.vue
src/views/daily/nros/index.vue
+9
-4
index.vue
src/views/outsourcingDirector/approve/index.vue
+2
-2
index.vue
src/views/outsourcingDirector/declare/index.vue
+5
-4
No files found.
src/views/contingency/contingencyManager/index.vue
View file @
ccf1c2c1
...
...
@@ -91,7 +91,8 @@
autoAttachDownload
,
deleteAttachDownload
,
uploadAttachDownload
,
aqglUploadUpdate
// aqglUploadUpdate
uploadUpdate
}
from
"common/src/api/system/dmgSystem.js"
;
import
Edit
from
'./lessEdit.vue'
import
{
tableMixin
}
from
'common'
...
...
@@ -170,7 +171,7 @@
},
creatFile
(){
/* 清除老节点 */
$
(
'#
yjyaF
ileAdd'
).
find
(
'input'
).
remove
()
$
(
'#
approvef
ileAdd'
).
find
(
'input'
).
remove
()
let
lineEl
=
document
.
createElement
(
'input'
);
let
$lineEl
=
$
(
lineEl
)
$lineEl
.
attr
(
'type'
,
'file'
)
...
...
@@ -181,7 +182,7 @@
this
.
beginUpload
()
})
// $lineEl
$
(
'#
yjyaF
ileAdd'
).
append
(
$lineEl
)
$
(
'#
approvef
ileAdd'
).
append
(
$lineEl
)
},
beginUpload
(){
this
.
isupLoad
=
true
...
...
@@ -200,7 +201,7 @@
if
(
updateId
){
formData
.
append
(
'id'
,
updateId
)
this
.
creatFile
()
aqglUploadUpdate
(
formData
).
then
(
res
=>
{
uploadUpdate
(
formData
,
this
.
baseUrl
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$success
(
'更新成功'
)
this
.
isupLoad
=
false
...
...
src/views/daily/nros/index.vue
View file @
ccf1c2c1
...
...
@@ -88,7 +88,8 @@
autoAttachDownload
,
deleteAttachDownload
,
uploadAttachDownload
,
aqglUploadUpdate
aqglUploadUpdate
,
uploadUpdate
}
from
"common/src/api/system/dmgSystem.js"
;
import
{
doQuery
,
...
...
@@ -172,7 +173,7 @@
},
creatFile
(){
/* 清除老节点 */
$
(
'#
fcgzybz
fileAdd'
).
find
(
'input'
).
remove
()
$
(
'#
approve
fileAdd'
).
find
(
'input'
).
remove
()
let
lineEl
=
document
.
createElement
(
'input'
);
let
$lineEl
=
$
(
lineEl
)
$lineEl
.
attr
(
'type'
,
'file'
)
...
...
@@ -183,7 +184,7 @@
this
.
beginUpload
()
})
// $lineEl
$
(
'#
fcgzybz
fileAdd'
).
append
(
$lineEl
)
$
(
'#
approve
fileAdd'
).
append
(
$lineEl
)
},
beginUpload
(){
this
.
isupLoad
=
true
...
...
@@ -202,7 +203,7 @@
if
(
updateId
){
formData
.
append
(
'id'
,
updateId
)
this
.
creatFile
()
aqglUploadUpdate
(
formData
).
then
(
res
=>
{
uploadUpdate
(
formData
,
'aqgl/rcgl/fcgzybz'
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$success
(
'更新成功'
)
this
.
isupLoad
=
false
...
...
@@ -230,7 +231,11 @@
}
},
upload
(){
/* 清除老节点*/
let
$upload
=
$
(
'#aqglfilesonadd'
)
console
.
log
(
$upload
)
arguments
[
0
]
==
'update'
&&
$upload
.
attr
(
'inputId'
,
arguments
[
1
].
fileId
)
&&
$upload
.
click
()
if
(
arguments
[
0
]
==
'update'
){
return
...
...
src/views/outsourcingDirector/approve/index.vue
View file @
ccf1c2c1
...
...
@@ -172,7 +172,7 @@
},
creatFile
(){
/* 清除老节点 */
$
(
'#
wxglxy
fileAdd'
).
find
(
'input'
).
remove
()
$
(
'#
approve
fileAdd'
).
find
(
'input'
).
remove
()
let
lineEl
=
document
.
createElement
(
'input'
);
let
$lineEl
=
$
(
lineEl
)
$lineEl
.
attr
(
'type'
,
'file'
)
...
...
@@ -183,7 +183,7 @@
this
.
beginUpload
()
})
// $lineEl
$
(
'#
wxglxy
fileAdd'
).
append
(
$lineEl
)
$
(
'#
approve
fileAdd'
).
append
(
$lineEl
)
},
beginUpload
(){
this
.
isupLoad
=
true
...
...
src/views/outsourcingDirector/declare/index.vue
View file @
ccf1c2c1
...
...
@@ -88,7 +88,8 @@
autoAttachDownload
,
deleteAttachDownload
,
uploadAttachDownload
,
aqglUploadUpdate
uploadUpdate
// aqglUploadUpdate
}
from
"common/src/api/system/dmgSystem.js"
;
import
{
doQuery
,
...
...
@@ -172,7 +173,7 @@
},
creatFile
(){
/* 清除老节点 */
$
(
'#
wxglzd
fileAdd'
).
find
(
'input'
).
remove
()
$
(
'#
approve
fileAdd'
).
find
(
'input'
).
remove
()
let
lineEl
=
document
.
createElement
(
'input'
);
let
$lineEl
=
$
(
lineEl
)
$lineEl
.
attr
(
'type'
,
'file'
)
...
...
@@ -183,7 +184,7 @@
this
.
beginUpload
()
})
// $lineEl
$
(
'#
wxglzd
fileAdd'
).
append
(
$lineEl
)
$
(
'#
approve
fileAdd'
).
append
(
$lineEl
)
},
beginUpload
(){
this
.
isupLoad
=
true
...
...
@@ -202,7 +203,7 @@
if
(
updateId
){
formData
.
append
(
'id'
,
updateId
)
this
.
creatFile
()
aqglUploadUpdate
(
formData
).
then
(
res
=>
{
uploadUpdate
(
formData
,
'aqgl/wxglzd'
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$success
(
'更新成功'
)
this
.
isupLoad
=
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