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
bfb9a14f
Commit
bfb9a14f
authored
Mar 14, 2024
by
高滢
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://gitlab.91isoft.com:90/car-test/web
into gaoying
parents
aca0b4ca
92e32b67
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
72 additions
and
23 deletions
+72
-23
companyFile.vue
...ing/carReview/write-check-form/components/companyFile.vue
+1
-3
index.vue
src/views/processing/carReview/write-check-form/index.vue
+5
-1
index.vue
src/views/processing/carTest/execution-test-plan/index.vue
+36
-0
index.vue
src/views/processing/checkFileLibrary/index.vue
+5
-5
companyFile.vue
.../systemReview/write-check-form/components/companyFile.vue
+1
-3
index.vue
src/views/processing/systemReview/write-check-form/index.vue
+5
-1
index.vue
src/views/processing/unprocessed-review/index.vue
+13
-5
index.vue
src/views/setting/testMatrix/index.vue
+2
-1
index.vue
src/views/setting/testMatrix/useCaseDetails/index.vue
+4
-4
No files found.
src/views/processing/carReview/write-check-form/components/companyFile.vue
View file @
bfb9a14f
...
...
@@ -156,6 +156,7 @@ export default {
fileName
(
newValue
)
{
this
.
model
.
fileName
=
newValue
this
.
model
.
enterpriseName
=
this
.
enterpriseName
this
.
model
.
taskId
=
this
.
$route
.
query
.
taskId
},
'dialogManger.dialogEditId'
(
newValue
)
{
this
.
model
.
fetch
(
...
...
@@ -166,9 +167,6 @@ export default {
)
}
},
created
()
{
this
.
model
.
taskId
=
this
.
$route
.
query
.
taskId
},
methods
:
{
handleUpdateFile
(
newValue
)
{
this
.
$emit
(
'fileNameUpdate'
,
newValue
)
...
...
src/views/processing/carReview/write-check-form/index.vue
View file @
bfb9a14f
...
...
@@ -354,7 +354,11 @@ export default {
{
required
:
true
,
message
:
'请选择审查结果'
,
trigger
:
'blur'
}
],
fileName
:
[
{
required
:
true
,
message
:
'请输入文件名称'
,
trigger
:
'blur'
}
{
required
:
true
,
message
:
'请输入文件名称'
,
trigger
:
[
'change'
]
}
],
catalogue
:
[
{
...
...
src/views/processing/carTest/execution-test-plan/index.vue
0 → 100644
View file @
bfb9a14f
<!-- 测试用例详情 -->
<
template
>
<page-standard>
<div
class=
"web-page"
>
<iframe
:src=
"url"
frameborder=
"0"
style=
"width: 100%; height: 100%"
></iframe>
</div>
</page-standard>
</
template
>
<
script
>
import
{
NewFileTestProject
}
from
'@/api/graphql/client.graphql'
export
default
{
name
:
'Index'
,
data
()
{
return
{
id
:
this
.
$route
.
query
,
url
:
''
}
},
mounted
()
{
const
id
=
this
.
$route
.
query
.
id
this
.
url
=
`http://10.12.48.78:8090/car/complianceTestingCenter/projectOverView/project_items;
${
id
}
`
},
methods
:
{}
}
</
script
>
<
style
scoped
>
.web-page
{
height
:
90vh
;
}
</
style
>
src/views/processing/checkFileLibrary/index.vue
View file @
bfb9a14f
...
...
@@ -138,12 +138,12 @@
align
=
"left"
>
<
template
slot
-
scope
=
"scope"
>
<
img
<
el
-
image
style
=
"width: 36px; height: 36px"
:
src
=
"baseUrl + scope.row.photo"
alt
=
"文件照片"
width
=
"36"
height
=
"36"
/>
:
preview
-
src
-
list
=
"[baseUrl + scope.row.photo]"
>
<
/el-image
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
...
...
src/views/processing/systemReview/write-check-form/components/companyFile.vue
View file @
bfb9a14f
...
...
@@ -156,6 +156,7 @@ export default {
fileName
(
newValue
)
{
this
.
model
.
fileName
=
newValue
this
.
model
.
enterpriseName
=
this
.
enterpriseName
this
.
model
.
taskId
=
this
.
$route
.
query
.
taskId
},
'dialogManger.dialogEditId'
(
newValue
)
{
this
.
model
.
fetch
(
...
...
@@ -166,9 +167,6 @@ export default {
)
}
},
created
()
{
this
.
model
.
taskId
=
this
.
$route
.
query
.
taskId
},
methods
:
{
handleUpdateFile
(
newValue
)
{
this
.
$emit
(
'fileNameUpdate'
,
newValue
)
...
...
src/views/processing/systemReview/write-check-form/index.vue
View file @
bfb9a14f
...
...
@@ -364,7 +364,11 @@ export default {
{
required
:
true
,
message
:
'请选择审查结果'
,
trigger
:
'blur'
}
],
fileName
:
[
{
required
:
true
,
message
:
'请输入文件名称'
,
trigger
:
'blur'
}
{
required
:
true
,
message
:
'请输入文件名称'
,
trigger
:
[
'change'
]
}
],
catalogue
:
[
{
...
...
src/views/processing/unprocessed-review/index.vue
View file @
bfb9a14f
...
...
@@ -189,7 +189,11 @@
type=
"primary"
:underline=
"false"
@
click=
"
handleCarTypeTestTaskContent(item.carTestStatus, item.id)
handleCarTypeTestTaskContent(
item.carTestStatus,
item.carTestTaskId,
item.id
)
"
>
{{
...
...
@@ -534,26 +538,30 @@ export default {
}
},
// 车型测试
handleCarTypeTestTaskContent
(
status
,
id
)
{
handleCarTypeTestTaskContent
(
status
,
id
,
taskId
)
{
switch
(
status
)
{
// 查看试验方案
case
'NEW'
:
this
.
$router
.
push
({
path
:
'/processing/review-form?type=3&id='
+
id
path
:
`/processing/carTest/review-form?id=
${
id
}
`
})
break
// 执行试验方案
case
'PENDING'
:
this
.
$router
.
push
({
path
:
'/processing/vehicle-type'
path
:
`/processing/carTest/execution-test-plan?id=
${
id
}
&taskId=
${
taskId
}
`
})
break
// 确认测试结果
case
'SIGNED'
:
this
.
$router
.
push
({
path
:
'/processing/vehicle-type'
ath
:
`/processing/carTest/confirmation-test??id=
${
id
}
`
})
break
case
'FINISH'
:
this
.
$router
.
push
({
path
:
'/processing/carTest/source-record?id='
+
id
})
}
},
/* 跳转到问卷详情*/
...
...
src/views/setting/testMatrix/index.vue
View file @
bfb9a14f
...
...
@@ -183,7 +183,8 @@ export default {
},
/** 点击跳转详情 */
viewDetail
(
row
)
{
this
.
$message
(
row
)
console
.
log
(
row
)
// this.$message(row)
this
.
$router
.
push
({
path
:
'/setting/useCaseDetails'
,
query
:
{
id
:
row
}
...
...
src/views/setting/testMatrix/useCaseDetails/index.vue
View file @
bfb9a14f
...
...
@@ -6,8 +6,7 @@
:src=
"url"
frameborder=
"0"
style=
"width: 100%; height: 100%"
></iframe
>
Ï
></iframe>
<el-button
@
click=
"newFileTest"
>
新建任务
</el-button>
</div>
</page-standard>
...
...
@@ -20,12 +19,13 @@ export default {
data
()
{
return
{
id
:
this
.
$route
.
query
,
url
:
'
http://10.12.48.78:8090/car/caseManage/case/casePublishDetail/case_items;375
'
url
:
''
// http://10.12.48.80:1234/car/caseManage/case/casePublishDetail/case_items;375
}
},
mounted
()
{
this
.
getSuiteList
()
const
id
=
this
.
$route
.
query
.
id
this
.
url
=
`http://10.12.48.78:8090/car/caseManage/case/casePublishDetail/case_items;
${
id
}
`
},
methods
:
{
newFileTest
()
{
...
...
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