Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web
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
中汽测评-信息安全测评系统
web
Commits
77ccd8ea
Commit
77ccd8ea
authored
Mar 18, 2024
by
jiaxu.yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 70661
parent
c65ea929
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
25 deletions
+50
-25
index.vue
src/views/processing/carReview/write-check-form/index.vue
+15
-6
index.vue
src/views/processing/systemReview/write-check-form/index.vue
+16
-7
index.vue
src/views/processing/unprocessed-review/index.vue
+19
-12
No files found.
src/views/processing/carReview/write-check-form/index.vue
View file @
77ccd8ea
...
...
@@ -682,14 +682,23 @@ export default {
})
},
/**
*确认
体系
审查
*确认
车型
审查
*/
submitFrom
()
{
this
.
$modal
.
confirm
(
'是否确认提交表单,提交后不可修改'
,
{
type
:
'warning'
,
title
:
'提示'
,
closeOnClickModal
:
false
})
.
then
(
async
()
=>
{
carReviewTaskConfirm
({
taskId
:
this
.
taskId
}).
then
(
res
=>
{
this
.
$router
.
go
(
-
1
)
})
})
.
catch
(()
=>
{})
},
/**
*确认细则内容变更
...
...
src/views/processing/systemReview/write-check-form/index.vue
View file @
77ccd8ea
...
...
@@ -700,6 +700,13 @@ export default {
*确认体系审查
*/
submitFrom
()
{
this
.
$modal
.
confirm
(
'是否确认提交表单,提交后不可修改'
,
{
type
:
'warning'
,
title
:
'提示'
,
closeOnClickModal
:
false
})
.
then
(
async
()
=>
{
reviewTaskConfirm
({
taskId
:
this
.
taskId
}).
then
(
res
=>
{
...
...
@@ -708,6 +715,8 @@ export default {
path
:
'/processing/unprocessed-review'
})
})
})
.
catch
(()
=>
{})
},
confirmDetailChange
()
{
reviewDetailsConfirm
({
...
...
src/views/processing/unprocessed-review/index.vue
View file @
77ccd8ea
...
...
@@ -434,7 +434,6 @@ export default {
* @param item 对象
*/
handleRetentionFile
(
item
)
{
console
.
log
(
item
)
this
.
$router
.
push
({
path
:
'/processing/retention-file?id='
+
item
.
id
})
...
...
@@ -457,6 +456,13 @@ export default {
* @param {} type 单项数据
*/
async
startTask
(
item
)
{
this
.
$modal
.
confirm
(
'是否确认开始?'
,
{
type
:
'warning'
,
title
:
'提示'
,
closeOnClickModal
:
false
})
.
then
(
async
()
=>
{
const
res
=
await
reviewTaskStart
({
id
:
item
.
id
})
...
...
@@ -467,9 +473,10 @@ export default {
this
.
$message
.
error
(
res
.
msg
)
}
}
})
.
catch
(()
=>
{})
},
goDetail
(
id
)
{
console
.
log
(
111
)
this
.
$router
.
push
({
path
:
'/task/task-detail?id='
+
id
})
...
...
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