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
8eb340aa
Commit
8eb340aa
authored
Mar 06, 2024
by
jiaxu.yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 70356 70365 70367 70398 70399 70403
parent
ca6dfd66
Changes
23
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
100 additions
and
44 deletions
+100
-44
index.vue
src/views/monitor/job/index.vue
+9
-3
log.vue
src/views/monitor/job/log.vue
+6
-2
index.vue
src/views/monitor/logininfor/index.vue
+9
-3
companyFile.vue
...ing/carReview/write-check-form/components/companyFile.vue
+1
-1
index.vue
src/views/processing/carReview/write-check-form/index.vue
+1
-1
companyFile.vue
.../systemReview/write-check-form/components/companyFile.vue
+1
-1
index.vue
src/views/processing/systemReview/write-check-form/index.vue
+1
-1
index.vue
src/views/setting/company/index.vue
+15
-13
index.vue
src/views/setting/rules/index.vue
+3
-1
index.vue
src/views/setting/scene/index.vue
+3
-1
index.vue
src/views/setting/standard/index.vue
+3
-1
index.vue
src/views/system/config/index.vue
+3
-1
index.vue
src/views/system/dept/index.vue
+3
-1
data.vue
src/views/system/dict/data.vue
+3
-1
index.vue
src/views/system/dict/index.vue
+3
-1
index.vue
src/views/system/menu/index.vue
+3
-1
index.vue
src/views/system/notice/index.vue
+3
-1
index.vue
src/views/system/post/index.vue
+3
-1
authUser.vue
src/views/system/role/authUser.vue
+6
-2
index.vue
src/views/system/role/index.vue
+6
-2
index.vue
src/views/system/user/index.vue
+6
-2
index.vue
src/views/task/on/index.vue
+3
-1
index.vue
src/views/tool/gen/index.vue
+6
-2
No files found.
src/views/monitor/job/index.vue
View file @
8eb340aa
...
...
@@ -544,7 +544,9 @@ export default {
handleStatusChange
(
row
)
{
const
text
=
row
.
status
===
'0'
?
'启用'
:
'停用'
this
.
$modal
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
jobName
+
'"任务吗?'
)
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
jobName
+
'"任务吗?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
changeJobStatus
(
row
.
jobId
,
row
.
status
)
})
...
...
@@ -558,7 +560,9 @@ export default {
/* 立即执行一次 */
handleRun
(
row
)
{
this
.
$modal
.
confirm
(
'确认要立即执行一次"'
+
row
.
jobName
+
'"任务吗?'
)
.
confirm
(
'确认要立即执行一次"'
+
row
.
jobName
+
'"任务吗?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
runJob
(
row
.
jobId
,
row
.
jobGroup
)
})
...
...
@@ -628,7 +632,9 @@ export default {
handleDelete
(
row
)
{
const
jobIds
=
row
.
jobId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除定时任务编号为"'
+
jobIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除定时任务编号为"'
+
jobIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delJob
(
jobIds
)
})
...
...
src/views/monitor/job/log.vue
View file @
8eb340aa
...
...
@@ -351,7 +351,9 @@ export default {
handleDelete
(
row
)
{
const
jobLogIds
=
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除调度日志编号为"'
+
jobLogIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除调度日志编号为"'
+
jobLogIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delJobLog
(
jobLogIds
)
})
...
...
@@ -364,7 +366,9 @@ export default {
/** 清空按钮操作 */
handleClean
()
{
this
.
$modal
.
confirm
(
'是否确认清空所有调度日志数据项?'
)
.
confirm
(
'是否确认清空所有调度日志数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
cleanJobLog
()
})
...
...
src/views/monitor/logininfor/index.vue
View file @
8eb340aa
...
...
@@ -284,7 +284,9 @@ export default {
handleDelete
(
row
)
{
const
infoIds
=
row
.
infoId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除访问编号为"'
+
infoIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除访问编号为"'
+
infoIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delLogininfor
(
infoIds
)
})
...
...
@@ -297,7 +299,9 @@ export default {
/** 清空按钮操作 */
handleClean
()
{
this
.
$modal
.
confirm
(
'是否确认清空所有登录日志数据项?'
)
.
confirm
(
'是否确认清空所有登录日志数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
cleanLogininfor
()
})
...
...
@@ -311,7 +315,9 @@ export default {
handleUnlock
()
{
const
username
=
this
.
selectName
this
.
$modal
.
confirm
(
'是否确认解锁用户"'
+
username
+
'"数据项?'
)
.
confirm
(
'是否确认解锁用户"'
+
username
+
'"数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
unlockLogininfor
(
username
)
})
...
...
src/views/processing/carReview/write-check-form/components/companyFile.vue
View file @
8eb340aa
...
...
@@ -4,7 +4,7 @@
<div
class=
"warn-prompt"
>
该文件第一次出现,请维护如下相关信息
</div>
<div
class=
"file-box"
>
<div
class=
"file-box-header"
>
企业文件
库
</div>
<div
class=
"file-box-header"
>
企业文件
信息
</div>
<el-form
ref=
"fileRef"
:model=
"model"
...
...
src/views/processing/carReview/write-check-form/index.vue
View file @
8eb340aa
...
...
@@ -49,7 +49,7 @@
<div
class=
"prompt-message"
>
<i
class=
"icon el-icon-info"
></i>
<span
>
问卷
填写情况:共
<span
class=
"blue weight"
>
>
表单
填写情况:共
<span
class=
"blue weight"
>
{{
model
.
detailsList
.
length
}}
</span
>
条审查细则,已完成
<span
class=
"green weight"
>
{{
readNumber
}}
</span>
条,未完成
...
...
src/views/processing/systemReview/write-check-form/components/companyFile.vue
View file @
8eb340aa
...
...
@@ -4,7 +4,7 @@
<div
class=
"warn-prompt"
>
该文件第一次出现,请维护如下相关信息
</div>
<div
class=
"file-box"
>
<div
class=
"file-box-header"
>
企业文件
库
</div>
<div
class=
"file-box-header"
>
企业文件
信息
</div>
<el-form
ref=
"fileRef"
:model=
"model"
...
...
src/views/processing/systemReview/write-check-form/index.vue
View file @
8eb340aa
...
...
@@ -49,7 +49,7 @@
<div
class=
"prompt-message"
>
<i
class=
"icon el-icon-info"
></i>
<span
>
问卷
填写情况:共
<span
class=
"blue weight"
>
>
表单
填写情况:共
<span
class=
"blue weight"
>
{{
model
.
detailsList
.
length
}}
</span
>
条审查细则,已完成
<span
class=
"green weight"
>
{{
readNumber
}}
</span>
条,未完成
...
...
src/views/setting/company/index.vue
View file @
8eb340aa
...
...
@@ -10,7 +10,7 @@
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"
车企
地址"
prop=
"address"
>
<el-form-item
label=
"
企业
地址"
prop=
"address"
>
<el-input
v-model=
"queryParams.address"
placeholder=
"请输入"
...
...
@@ -18,14 +18,6 @@
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"车企邮编"
prop=
"postcode"
>
<el-input
v-model=
"queryParams.postcode"
placeholder=
"请输入"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"企业联系人"
prop=
"enterpriseContact"
>
<el-input
v-model=
"queryParams.enterpriseContact"
...
...
@@ -63,7 +55,7 @@
</el-form-item> -->
</el-form>
<
!-- <el-row
:gutter="10" class="mb10">
<
el-row
v-if=
"view == 1"
:gutter=
"10"
class=
"mb10"
>
<el-col
:span=
"1.5"
>
<el-button
v-hasPermi=
"['setting:company:add']"
...
...
@@ -75,7 +67,7 @@
>
新建
</el-button
>
</el-col>
</el-row>
-->
</el-row>
<el-table
v-if=
"refreshTable"
v-loading=
"loading"
...
...
@@ -101,7 +93,7 @@
>
</el-table-column>
<el-table-column
label=
"
企业
邮编"
label=
"邮编"
prop=
"postcode"
min-width=
"200"
align=
"left"
...
...
@@ -121,6 +113,14 @@
align=
"left"
>
</el-table-column>
<el-table-column
label=
"创建人员"
prop=
"createBy"
min-width=
"200"
align=
"left"
sortable
>
</el-table-column>
<el-table-column
label=
"创建时间"
prop=
"createTime"
...
...
@@ -214,7 +214,9 @@ export default {
methods
:
{
handleDelete
(
id
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
)
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
,
{
closeOnClickModal
:
false
})
.
then
(()
=>
{
this
.
model
.
uuid
=
id
this
.
model
.
destroy
(()
=>
{
...
...
src/views/setting/rules/index.vue
View file @
8eb340aa
...
...
@@ -362,7 +362,9 @@ export default {
handleDelete
(
node
,
data
)
{
// console.log(node, data)
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
)
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
,
{
closeOnClickModal
:
false
})
.
then
(()
=>
{
// return delNotice(noticeIds)
})
...
...
src/views/setting/scene/index.vue
View file @
8eb340aa
...
...
@@ -165,7 +165,9 @@ export default {
}
,
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确定删除场景?'
,
'操作确认'
)
.
confirm
(
'是否确定删除该条数据?'
,
{
closeOnClickModal
:
false
}
)
.
then
(()
=>
{
// return delNotice(noticeIds)
}
)
...
...
src/views/setting/standard/index.vue
View file @
8eb340aa
...
...
@@ -185,7 +185,9 @@ export default {
}
,
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
)
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
,
{
closeOnClickModal
:
false
}
)
.
then
(()
=>
{
// return delNotice(noticeIds)
}
)
...
...
src/views/system/config/index.vue
View file @
8eb340aa
...
...
@@ -400,7 +400,9 @@ export default {
handleDelete
(
row
)
{
const
configIds
=
row
.
configId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除参数编号为"'
+
configIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除参数编号为"'
+
configIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delConfig
(
configIds
)
})
...
...
src/views/system/dept/index.vue
View file @
8eb340aa
...
...
@@ -410,7 +410,9 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确认删除名称为"'
+
row
.
deptName
+
'"的数据项?'
)
.
confirm
(
'是否确认删除名称为"'
+
row
.
deptName
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delDept
(
row
.
deptId
)
})
...
...
src/views/system/dict/data.vue
View file @
8eb340aa
...
...
@@ -465,7 +465,9 @@ export default {
handleDelete
(
row
)
{
const
dictCodes
=
row
.
dictCode
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除字典编码为"'
+
dictCodes
+
'"的数据项?'
)
.
confirm
(
'是否确认删除字典编码为"'
+
dictCodes
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delData
(
dictCodes
)
})
...
...
src/views/system/dict/index.vue
View file @
8eb340aa
...
...
@@ -395,7 +395,9 @@ export default {
handleDelete
(
row
)
{
const
dictIds
=
row
.
dictId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除字典编号为"'
+
dictIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除字典编号为"'
+
dictIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delType
(
dictIds
)
})
...
...
src/views/system/menu/index.vue
View file @
8eb340aa
...
...
@@ -549,7 +549,9 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
this
.
$modal
.
confirm
(
'是否确认删除名称为"'
+
row
.
menuName
+
'"的数据项?'
)
.
confirm
(
'是否确定删除该条数据?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delMenu
(
row
.
menuId
)
})
...
...
src/views/system/notice/index.vue
View file @
8eb340aa
...
...
@@ -371,7 +371,9 @@ export default {
handleDelete
(
row
)
{
const
noticeIds
=
row
.
noticeId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除公告编号为"'
+
noticeIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除公告编号为"'
+
noticeIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
}
)
.
then
(()
=>
{
return
delNotice
(
noticeIds
)
}
)
...
...
src/views/system/post/index.vue
View file @
8eb340aa
...
...
@@ -352,7 +352,9 @@ export default {
handleDelete
(
row
)
{
const
postIds
=
row
.
postId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除岗位编号为"'
+
postIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除岗位编号为"'
+
postIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delPost
(
postIds
)
})
...
...
src/views/system/role/authUser.vue
View file @
8eb340aa
...
...
@@ -238,7 +238,9 @@ export default {
cancelAuthUser
(
row
)
{
const
roleId
=
this
.
queryParams
.
roleId
this
.
$modal
.
confirm
(
'确认要取消该用户"'
+
row
.
userName
+
'"角色吗?'
)
.
confirm
(
'确认要取消该用户"'
+
row
.
userName
+
'"角色吗?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
authUserCancel
({
userId
:
row
.
userId
,
roleId
:
roleId
})
})
...
...
@@ -253,7 +255,9 @@ export default {
const
roleId
=
this
.
queryParams
.
roleId
const
userIds
=
this
.
userIds
.
join
(
','
)
this
.
$modal
.
confirm
(
'是否取消选中用户授权数据项?'
)
.
confirm
(
'是否取消选中用户授权数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
authUserCancelAll
({
roleId
:
roleId
,
userIds
:
userIds
})
})
...
...
src/views/system/role/index.vue
View file @
8eb340aa
...
...
@@ -514,7 +514,9 @@ export default {
handleStatusChange
(
row
)
{
const
text
=
row
.
status
===
'0'
?
'启用'
:
'停用'
this
.
$modal
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
roleName
+
'"角色吗?'
)
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
roleName
+
'"角色吗?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
changeRoleStatus
(
row
.
roleId
,
row
.
status
)
})
...
...
@@ -709,7 +711,9 @@ export default {
handleDelete
(
row
)
{
const
roleIds
=
row
.
roleId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除角色编号为"'
+
roleIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除角色编号为"'
+
roleIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delRole
(
roleIds
)
})
...
...
src/views/system/user/index.vue
View file @
8eb340aa
...
...
@@ -666,7 +666,9 @@ export default {
handleStatusChange
(
row
)
{
const
text
=
row
.
status
===
'0'
?
'启用'
:
'停用'
this
.
$modal
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
userName
+
'"用户吗?'
)
.
confirm
(
'确认要"'
+
text
+
'""'
+
row
.
userName
+
'"用户吗?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
changeUserStatus
(
row
.
userId
,
row
.
status
)
})
...
...
@@ -803,7 +805,9 @@ export default {
handleDelete
(
row
)
{
const
userIds
=
row
.
userId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除用户编号为"'
+
userIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除用户编号为"'
+
userIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(
function
()
{
return
delUser
(
userIds
)
})
...
...
src/views/task/on/index.vue
View file @
8eb340aa
...
...
@@ -672,7 +672,9 @@ export default {
},
teakDelete
(
id
)
{
this
.
$modal
.
confirm
(
'是否确定删除该条数据?'
)
.
confirm
(
'是否确定删除该条数据?'
,
'操作确认'
,
{
closeOnClickModal
:
false
})
.
then
(()
=>
{
removeTask
({
id
...
...
src/views/tool/gen/index.vue
View file @
8eb340aa
...
...
@@ -357,7 +357,9 @@ export default {
handleSynchDb
(
row
)
{
const
tableName
=
row
.
tableName
this
.
$modal
.
confirm
(
'确认要强制同步"'
+
tableName
+
'"表结构吗?'
)
.
confirm
(
'确认要强制同步"'
+
tableName
+
'"表结构吗?'
,
{
closeOnClickModal
:
false
})
.
then
(()
=>
{
return
synchDb
(
tableName
)
})
...
...
@@ -417,7 +419,9 @@ export default {
handleDelete
(
row
)
{
const
tableIds
=
row
.
tableId
||
this
.
ids
this
.
$modal
.
confirm
(
'是否确认删除表编号为"'
+
tableIds
+
'"的数据项?'
)
.
confirm
(
'是否确认删除表编号为"'
+
tableIds
+
'"的数据项?'
,
{
closeOnClickModal
:
false
})
.
then
(()
=>
{
return
delTable
(
tableIds
)
})
...
...
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