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
b7e6cbbc
Commit
b7e6cbbc
authored
Apr 03, 2024
by
高滢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(概览): 70960
parent
27abf3e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
index.vue
src/views/setting/sample/taskDetails/index.vue
+15
-4
No files found.
src/views/setting/sample/taskDetails/index.vue
View file @
b7e6cbbc
...
@@ -734,9 +734,7 @@
...
@@ -734,9 +734,7 @@
<div
class=
"tip-navigation"
>
<div
class=
"tip-navigation"
>
<div
class=
"tip"
></div>
<div
class=
"tip"
></div>
<div
class=
"tip-title"
>
<div
class=
"tip-title"
>
{{
{{ '整车样品信息 (' + completeVehicleSampleTotal + ')' }}
'整车样品信息 (' + taskForm.completeVehicleSample.length + ')'
}}
</div>
</div>
</div>
</div>
<div
style=
"display: flex; flex-wrap: wrap"
>
<div
style=
"display: flex; flex-wrap: wrap"
>
...
@@ -858,7 +856,7 @@
...
@@ -858,7 +856,7 @@
<div
class=
"tip-navigation"
>
<div
class=
"tip-navigation"
>
<div
class=
"tip"
></div>
<div
class=
"tip"
></div>
<div
class=
"tip-title"
>
<div
class=
"tip-title"
>
{{ '零部件样品信息 (' +
taskForm.partVehicleSample.length
+ ')' }}
{{ '零部件样品信息 (' +
partVehicleSampleTotal
+ ')' }}
</div>
</div>
</div>
</div>
<div
style=
"display: flex; flex-wrap: wrap"
>
<div
style=
"display: flex; flex-wrap: wrap"
>
...
@@ -975,6 +973,8 @@ export default {
...
@@ -975,6 +973,8 @@ export default {
dicts
:
[
'system_task_status'
,
'confidentiality_level'
,
'inspection_item'
],
dicts
:
[
'system_task_status'
,
'confidentiality_level'
,
'inspection_item'
],
data
()
{
data
()
{
return
{
return
{
completeVehicleSampleTotal
:
0
,
partVehicleSampleTotal
:
0
,
taskList
:
[],
taskList
:
[],
taskId
:
''
,
taskId
:
''
,
dialogVisible
:
false
,
dialogVisible
:
false
,
...
@@ -1021,6 +1021,17 @@ export default {
...
@@ -1021,6 +1021,17 @@ export default {
getTaskInfo
()
{
getTaskInfo
()
{
selectTaskInfo
({
id
:
this
.
taskId
}).
then
(
res
=>
{
selectTaskInfo
({
id
:
this
.
taskId
}).
then
(
res
=>
{
this
.
taskForm
=
res
.
data
this
.
taskForm
=
res
.
data
if
(
res
.
data
.
partVehicleSample
)
{
this
.
partVehicleSampleTotal
=
res
.
data
.
partVehicleSample
.
length
}
else
{
this
.
taskForm
.
partVehicleSample
=
[]
}
if
(
res
.
data
.
completeVehicleSample
)
{
this
.
completeVehicleSampleTotal
=
res
.
data
.
completeVehicleSample
.
length
}
else
{
this
.
taskForm
.
completeVehicleSample
=
[]
}
if
(
res
.
data
.
taskList
)
{
if
(
res
.
data
.
taskList
)
{
this
.
taskList
=
this
.
taskForm
.
taskList
.
split
(
','
)
this
.
taskList
=
this
.
taskForm
.
taskList
.
split
(
','
)
this
.
taskList
.
forEach
((
item
,
index
)
=>
{
this
.
taskList
.
forEach
((
item
,
index
)
=>
{
...
...
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