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
b8b71bec
Commit
b8b71bec
authored
Feb 29, 2024
by
jiaxu.yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 更新页面问题
parent
391a63dd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
57 deletions
+39
-57
index.vue
src/views/processing/carReview/source-record/index.vue
+18
-9
index.vue
src/views/processing/processed-review/index.vue
+1
-0
index.vue
src/views/processing/retention-file/index.vue
+2
-36
index.vue
src/views/processing/systemReview/source-record/index.vue
+18
-12
No files found.
src/views/processing/carReview/source-record/index.vue
View file @
b8b71bec
...
...
@@ -167,15 +167,24 @@
<tr
:key=
"reviewDetailKey"
>
<td
align=
"center"
>
{{
reviewDetail
.
text
}}
</td>
<td
align=
"center"
>
{{
reviewDetail
.
result
?
reviewDetail
.
result
.
passed
===
null
?
'__'
:
reviewDetail
.
result
.
passed
===
0
?
'不通过'
:
'通过'
:
'__'
}}
<div
v-if=
"reviewDetail.result"
>
<div
v-if=
"reviewDetail.result"
>
<el-tag
v-if=
"reviewDetail.result.passed === 1"
size=
"medium"
type=
"success"
>
通过
</el-tag
>
<el-tag
v-if=
"reviewDetail.result.passed === 0"
size=
"medium"
type=
"danger"
>
不通过
</el-tag
>
</div>
<div
v-else
>
__
</div>
</div>
<div
v-else
>
__
</div>
</td>
<td
align=
"center"
>
<div
v-if=
"reviewDetail.result"
>
...
...
src/views/processing/processed-review/index.vue
View file @
b8b71bec
...
...
@@ -220,6 +220,7 @@ import page from '@/mixins/page'
import
{
mapGetters
}
from
'vuex'
export
default
{
mixins
:
[
page
],
dicts
:
[
'inspection_item'
],
data
()
{
return
{
listUrl
:
'/task/findUserFinish'
,
...
...
src/views/processing/retention-file/index.vue
View file @
b8b71bec
...
...
@@ -9,46 +9,12 @@
>
返回
</header-button>
<header-button
class=
"back-btn"
icon=
"el-icon-refresh"
type=
"default"
>
重新生成
</header-button>
<header-button
class=
"back-btn"
icon=
"el-icon-download"
type=
"default"
>
<header-button
class=
"back-btn"
icon=
"to-bottom"
type=
"default"
>
下载文件
</header-button>
</div>
<!-- table部分 -->
<table
border=
"1"
>
<thead>
<tr>
<th
class=
"one-column"
rowspan=
"2"
>
文件名称
</th>
<th
class=
"two-column"
>
文件目录
</th>
<th
class=
"three-column"
>
标准章节
</th>
<th
class=
"four-column"
>
标准要求
</th>
<th
class=
"five-column"
>
审查要点
</th>
</tr>
</thead>
<tbody>
<tr>
<td
class=
"one-column"
rowspan=
"2"
>
文件
</td>
<td
class=
"two-column"
>
1.1-1.5
</td>
<td
class=
"three-column"
>
5.1
</td>
<td
class=
"four-column"
>
车辆制造商应具备车辆全生命周期的汽车信息安全管理体系
</td>
<td
class=
"five-column"
>
车辆制造商是否建立汽车信息安全管理体系
</td>
</tr>
<tr>
<td
class=
"two-column"
>
1.6
</td>
<td
class=
"three-column"
>
5.1
</td>
<td
class=
"four-column"
>
车辆制造商应具备车辆全生命周期的汽车信息安全管理体系
</td>
<td
class=
"five-column"
>
车辆制造商是否针对正式发布的汽车信息安全管理体系进行了试运行
</td>
</tr>
</tbody>
</table>
<iframe
src=
"/download/download.html"
frameborder=
"0"
></iframe>
</task-standard>
</
template
>
...
...
src/views/processing/systemReview/source-record/index.vue
View file @
b8b71bec
...
...
@@ -167,18 +167,24 @@
<tr
:key=
"reviewDetailKey"
>
<td
align=
"center"
>
{{
reviewDetail
.
text
}}
</td>
<td
align=
"center"
>
<el-tag
v-if=
"reviewDetail.result.passed === 1"
size=
"medium"
type=
"success"
>
通过
</el-tag
>
<el-tag
v-if=
"reviewDetail.result.passed === 0"
size=
"medium"
type=
"danger"
>
不通过
</el-tag
>
<div
v-if=
"reviewDetail.result"
>
<div
v-if=
"reviewDetail.result"
>
<el-tag
v-if=
"reviewDetail.result.passed === 1"
size=
"medium"
type=
"success"
>
通过
</el-tag
>
<el-tag
v-if=
"reviewDetail.result.passed === 0"
size=
"medium"
type=
"danger"
>
不通过
</el-tag
>
</div>
<div
v-else
>
__
</div>
</div>
<div
v-else
>
__
</div>
</td>
<td
align=
"center"
>
<div
v-if=
"reviewDetail.result"
>
...
...
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