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
31b1c1b2
Commit
31b1c1b2
authored
Mar 29, 2024
by
jiaxu.yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 70885 70890 70882
parent
a7517071
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
84 additions
and
8 deletions
+84
-8
index.vue
src/views/processing/carReview/review-form/index.vue
+8
-1
index.vue
src/views/processing/carReview/source-record/index.vue
+7
-0
index.vue
src/views/processing/carReview/vehicle-type/index.vue
+7
-0
index.vue
src/views/processing/carReview/write-check-form/index.vue
+12
-1
index.vue
src/views/processing/carTest/confirmation-test/index.vue
+4
-0
index.vue
src/views/processing/carTest/execution-test-plan/index.vue
+5
-0
index.vue
src/views/processing/carTest/review-form/index.vue
+6
-0
index.vue
src/views/processing/systemReview/confirm-result/index.vue
+7
-0
index.vue
src/views/processing/systemReview/review-form/index.vue
+7
-0
index.vue
src/views/processing/systemReview/source-record/index.vue
+7
-0
index.vue
src/views/processing/systemReview/write-check-form/index.vue
+8
-0
index.vue
src/views/processing/unprocessed-review/index.vue
+3
-3
index.vue
src/views/task/on/index.vue
+3
-3
No files found.
src/views/processing/carReview/review-form/index.vue
View file @
31b1c1b2
...
@@ -196,7 +196,14 @@ export default {
...
@@ -196,7 +196,14 @@ export default {
loading
:
false
loading
:
false
}
}
},
},
async
created
()
{
async
mounted
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
},
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
this
.
taskId
=
this
.
$route
.
query
.
id
}
}
...
...
src/views/processing/carReview/source-record/index.vue
View file @
31b1c1b2
...
@@ -361,6 +361,13 @@ export default {
...
@@ -361,6 +361,13 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
openAll
()
this
.
openAll
()
}
,
}
,
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
}
,
methods
:
{
methods
:
{
openAll
()
{
openAll
()
{
this
.
activeNames
=
this
.
model
.
carReviewTask
.
standard
.
map
(
i
=>
{
this
.
activeNames
=
this
.
model
.
carReviewTask
.
standard
.
map
(
i
=>
{
...
...
src/views/processing/carReview/vehicle-type/index.vue
View file @
31b1c1b2
...
@@ -369,6 +369,13 @@ export default {
...
@@ -369,6 +369,13 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
openAll
()
this
.
openAll
()
},
},
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
},
methods
:
{
methods
:
{
/**
/**
* 获取任务详情
* 获取任务详情
...
...
src/views/processing/carReview/write-check-form/index.vue
View file @
31b1c1b2
...
@@ -327,7 +327,10 @@
...
@@ -327,7 +327,10 @@
</el-form>
</el-form>
</div>
</div>
</div>
</div>
<div
v-else
class=
"empty-message"
>
-暂无未完成条目-
</div>
<div
v-else
class=
"empty-message"
>
<iconpark-icon
name=
"wutiaomu"
size=
"120px"
></iconpark-icon>
<span>
无未完成条目
</span>
</div>
</div>
</div>
<div
class=
"bottom-btn"
>
<div
class=
"bottom-btn"
>
<footer-button
<footer-button
...
@@ -463,6 +466,14 @@ export default {
...
@@ -463,6 +466,14 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
handleCircle
(
0
)
this
.
handleCircle
(
0
)
},
},
async
activated
()
{
this
.
taskId
=
this
.
$route
.
query
.
id
this
.
$store
.
dispatch
(
'processing/getCompanyFiles'
,
{
taskId
:
this
.
$route
.
query
.
taskId
})
await
this
.
getTask
()
this
.
handleCircle
(
0
)
},
methods
:
{
methods
:
{
/**
/**
* 企业文件保存回调
* 企业文件保存回调
...
...
src/views/processing/carTest/confirmation-test/index.vue
View file @
31b1c1b2
...
@@ -260,6 +260,10 @@ export default {
...
@@ -260,6 +260,10 @@ export default {
this
.
getTest
()
this
.
getTest
()
this
.
getTestDetail
()
this
.
getTestDetail
()
},
},
activated
()
{
this
.
getTest
()
this
.
getTestDetail
()
},
methods
:
{
methods
:
{
getRows3
,
getRows3
,
/* 返回跳转*/
/* 返回跳转*/
...
...
src/views/processing/carTest/execution-test-plan/index.vue
View file @
31b1c1b2
...
@@ -48,6 +48,11 @@ export default {
...
@@ -48,6 +48,11 @@ export default {
this
.
dialogManger
.
dialogEditId
=
this
.
$route
.
query
.
taskid
this
.
dialogManger
.
dialogEditId
=
this
.
$route
.
query
.
taskid
this
.
url
=
`https://10.12.48.78:8090/car/complianceTestingCenter/projectOverView/
${
id
}
`
this
.
url
=
`https://10.12.48.78:8090/car/complianceTestingCenter/projectOverView/
${
id
}
`
},
},
activated
()
{
const
id
=
this
.
$route
.
query
.
id
this
.
dialogManger
.
dialogEditId
=
this
.
$route
.
query
.
taskid
this
.
url
=
`https://10.12.48.78:8090/car/complianceTestingCenter/projectOverView/
${
id
}
`
},
methods
:
{
methods
:
{
handlePreview
()
{
handlePreview
()
{
this
.
dialogManger
.
dialogVisible
=
true
this
.
dialogManger
.
dialogVisible
=
true
...
...
src/views/processing/carTest/review-form/index.vue
View file @
31b1c1b2
...
@@ -143,6 +143,12 @@ export default {
...
@@ -143,6 +143,12 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
console
.
log
(
'mounted'
)
this
.
getTestDetail
()
this
.
getTest
()
},
activated
()
{
console
.
log
(
'activated'
)
this
.
getTestDetail
()
this
.
getTestDetail
()
this
.
getTest
()
this
.
getTest
()
},
},
...
...
src/views/processing/systemReview/confirm-result/index.vue
View file @
31b1c1b2
...
@@ -332,6 +332,13 @@ export default {
...
@@ -332,6 +332,13 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
openAll
()
this
.
openAll
()
},
},
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
},
methods
:
{
methods
:
{
async
getTask
()
{
async
getTask
()
{
this
.
loading
=
true
this
.
loading
=
true
...
...
src/views/processing/systemReview/review-form/index.vue
View file @
31b1c1b2
...
@@ -214,6 +214,13 @@ export default {
...
@@ -214,6 +214,13 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
openAll
()
this
.
openAll
()
},
},
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
},
methods
:
{
methods
:
{
/**
/**
* 获取任务详情
* 获取任务详情
...
...
src/views/processing/systemReview/source-record/index.vue
View file @
31b1c1b2
...
@@ -374,6 +374,13 @@ export default {
...
@@ -374,6 +374,13 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
openAll
()
this
.
openAll
()
}
,
}
,
async
activated
()
{
if
(
this
.
$route
.
query
.
id
)
{
this
.
taskId
=
this
.
$route
.
query
.
id
}
await
this
.
getTask
()
this
.
openAll
()
}
,
methods
:
{
methods
:
{
/**
/**
* 获取子任务详情
* 获取子任务详情
...
...
src/views/processing/systemReview/write-check-form/index.vue
View file @
31b1c1b2
...
@@ -485,6 +485,14 @@ export default {
...
@@ -485,6 +485,14 @@ export default {
await
this
.
getTask
()
await
this
.
getTask
()
this
.
handleCircle
(
0
)
this
.
handleCircle
(
0
)
},
},
async
activated
()
{
this
.
taskId
=
this
.
$route
.
query
.
id
this
.
$store
.
dispatch
(
'processing/getCompanyFiles'
,
{
taskId
:
this
.
$route
.
query
.
taskId
})
await
this
.
getTask
()
this
.
handleCircle
(
0
)
},
methods
:
{
methods
:
{
/**
/**
* 企业文件保存回调
* 企业文件保存回调
...
...
src/views/processing/unprocessed-review/index.vue
View file @
31b1c1b2
...
@@ -314,7 +314,7 @@
...
@@ -314,7 +314,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.systemReview"
:percentage=
"item.systemReview
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
...
@@ -325,7 +325,7 @@
...
@@ -325,7 +325,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.carReview"
:percentage=
"item.carReview
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
<div
<div
...
@@ -335,7 +335,7 @@
...
@@ -335,7 +335,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.test"
:percentage=
"item.test
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
</div>
</div>
...
...
src/views/task/on/index.vue
View file @
31b1c1b2
...
@@ -307,7 +307,7 @@
...
@@ -307,7 +307,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.systemReview"
:percentage=
"item.systemReview
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
...
@@ -318,7 +318,7 @@
...
@@ -318,7 +318,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.carReview"
:percentage=
"item.carReview
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
<div
<div
...
@@ -328,7 +328,7 @@
...
@@ -328,7 +328,7 @@
<el-progress
<el-progress
class=
"cell-progress"
class=
"cell-progress"
:stroke-width=
"12"
:stroke-width=
"12"
:percentage=
"item.test"
:percentage=
"item.test
|| 0
"
></el-progress>
></el-progress>
</div>
</div>
</div>
</div>
...
...
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