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
3c13eafc
Commit
3c13eafc
authored
Mar 08, 2024
by
jiaxu.yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 70436 70453 70454
parent
ac6c9d5a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
41 additions
and
6 deletions
+41
-6
index.vue
src/views/setting/company/index.vue
+2
-1
index.vue
src/views/setting/rules/index.vue
+2
-1
index.vue
src/views/setting/scene/index.vue
+2
-1
index.vue
src/views/setting/standard/index.vue
+2
-1
index.vue
src/views/system/menu/index.vue
+2
-1
index.vue
src/views/task/on/index.vue
+31
-1
No files found.
src/views/setting/company/index.vue
View file @
3c13eafc
...
...
@@ -216,7 +216,8 @@ export default {
handleDelete
(
id
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
})
.
then
(()
=>
{
...
...
src/views/setting/rules/index.vue
View file @
3c13eafc
...
...
@@ -363,7 +363,8 @@ export default {
// console.log(node, data)
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
})
.
then
(()
=>
{
...
...
src/views/setting/scene/index.vue
View file @
3c13eafc
...
...
@@ -166,7 +166,8 @@ export default {
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
}
)
.
then
(()
=>
{
...
...
src/views/setting/standard/index.vue
View file @
3c13eafc
...
...
@@ -186,7 +186,8 @@ export default {
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
}
)
.
then
(()
=>
{
...
...
src/views/system/menu/index.vue
View file @
3c13eafc
...
...
@@ -550,7 +550,8 @@ export default {
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
})
.
then
(
function
()
{
...
...
src/views/task/on/index.vue
View file @
3c13eafc
<
template
>
<page-standard>
<div
slot=
"tab"
>
<el-tabs
v-model=
"queryParams.taskStatus"
@
tab-click=
"loadData"
>
<el-tab-pane
v-for=
"(dict, key) in reviewTypeList"
:key=
"key"
:label=
"dict.label"
:name=
"dict.value"
>
</el-tab-pane>
</el-tabs>
</div>
<el-form
ref=
"queryForm"
:model=
"queryParams"
size=
"small"
:inline=
"true"
>
<template
v-if=
"showSearch"
>
<el-form-item
label=
"检验依据"
>
...
...
@@ -509,6 +520,24 @@ export default {
mixins
:
[
page
],
data
()
{
return
{
reviewTypeList
:
[
{
label
:
'全部'
,
value
:
''
},
{
label
:
'未开始'
,
value
:
'NEW'
},
{
label
:
'进行中'
,
value
:
'PENDING'
},
{
label
:
'已完成'
,
value
:
'FINISH'
}
],
// 子任务内容跳转文字map
dialogVisible
:
false
,
listUrl
:
'/task/findCreate'
,
...
...
@@ -604,7 +633,8 @@ export default {
teakDelete
(
id
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
{
title
:
'操作确认'
,
type
:
'warning'
,
title
:
'删除'
,
closeOnClickModal
:
false
})
.
then
(()
=>
{
...
...
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