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
6b87adaa
Commit
6b87adaa
authored
Dec 22, 2023
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://gitlab.91isoft.com:90/car-test/web
into developer/feijinlian
parents
828802ea
35d178d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
19 deletions
+27
-19
index.vue
src/views/review/wait/index.vue
+26
-9
index.vue
src/views/task/task-detail/index.vue
+1
-10
No files found.
src/views/review/wait/index.vue
View file @
6b87adaa
...
...
@@ -158,6 +158,7 @@
:title=
"handOverDialog.title"
>
<el-form
ref=
"handOverForm"
:model=
"handOverDialog.form"
:rules=
"handOverDialog.formControl.rules"
>
...
...
@@ -179,7 +180,7 @@
</el-form>
<div
slot=
"footer"
>
<el-button
@
click=
"handleClose()"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"handleSave()"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"handleSave()"
>
确定
</el-button>
</div>
</el-dialog>
</page-standard>
...
...
@@ -293,17 +294,33 @@ export default {
},
methods
:
{
/* 关闭移交弹窗-保存*/
handleSave
()
{
if
(
this
.
handOverDialog
.
form
.
receivingPersonnel
)
{
this
.
handOverDialog
.
visible
=
false
}
else
{
this
.
$message
.
error
(
'请选择接收人员'
)
}
},
/* 关闭移交弹窗-取消*/
handleClose
()
{
this
.
handOverDialog
.
visible
=
false
},
handleSave
()
{
this
.
$refs
.
handOverForm
.
validate
(
valid
=>
{
if
(
valid
)
{
// 表单校验通过,弹出二次确认对话框
this
.
$confirm
(
'是否确认移交此条数据?'
,
'移交'
,
{
confirmButtonText
:
'确定'
,
concelButtonText
:
'取消'
,
type
:
'warning'
,
customClass
:
'box-logout'
,
cancelButtonClass
:
'resetBtn'
,
closeOnClickModal
:
false
,
confirmButtonClass
:
'queryBtn'
}).
then
(()
=>
{
/* 二次弹窗确定后*/
this
.
handOverDialog
.
visible
=
false
console
.
log
(
'关闭人员弹窗'
)
})
}
else
{
// 表单校验未通过,显示错误消息
this
.
$message
.
error
(
'请选择接收人员'
)
console
.
log
(
'请选择接收人员'
)
}
})
},
/* 去评审按钮页面跳转*/
handleReview
()
{
this
.
$router
.
push
({
path
:
'/review/sceneReview'
})
...
...
src/views/task/task-detail/index.vue
View file @
6b87adaa
...
...
@@ -189,15 +189,6 @@
</
template
>
</el-table-column>
</el-table>
<!-- 添加小组成员 -->
<!-- <el-button
class="add-number"
icon="el-icon-circle-plus-outline"
@click="handleAddNumber"
>添加小组成员
</el-button
>-->
<div
class=
"subtitle"
style=
"margin-top: 20px"
>
报告信息
</div>
<el-row
style=
"display: flex"
>
<el-row
:gutter=
"20"
>
...
...
@@ -331,7 +322,7 @@ export default {
dicts
:
[
'sys_task_status'
,
'sys_pro'
],
data
()
{
return
{
image
:
require
(
'@/assets/images/
login-background.jp
g'
),
image
:
require
(
'@/assets/images/
questionnaire/xizeshu.pn
g'
),
formDisabled
:
true
,
formType
:
1
,
/* 表单对象*/
...
...
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