Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
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
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
10455607
Commit
10455607
authored
Nov 23, 2022
by
王晓倩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
空白
parent
cca679d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
6 deletions
+25
-6
index.vue
...-manage-web/src/views/contractor/contractorInfo/index.vue
+18
-4
index.vue
...nage-web/src/views/deviceManagement/repairOrder/index.vue
+7
-2
No files found.
danger-manage-web/src/views/contractor/contractorInfo/index.vue
View file @
10455607
...
@@ -51,13 +51,27 @@
...
@@ -51,13 +51,27 @@
<el-table
v-loading=
"loading"
:data=
"contractorInfoList"
>
<el-table
v-loading=
"loading"
:data=
"contractorInfoList"
>
<el-table-column
label=
"单位名称"
align=
"center"
prop=
"contractorName"
/>
<el-table-column
label=
"单位名称"
align=
"center"
prop=
"contractorName"
/>
<el-table-column
label=
"主要负责人"
align=
"center"
prop=
"keyPerson"
/>
<el-table-column
label=
"主要负责人"
align=
"center"
prop=
"keyPerson"
>
<el-table-column
label=
"主要负责人手机"
align=
"center"
prop=
"keyPersonPhone"
/>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.keyPerson != null && scope.row.keyPerson != ''"
>
{{
scope
.
row
.
keyPerson
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"主要负责人手机"
align=
"center"
prop=
"keyPersonPhone"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.keyPersonPhone != null && scope.row.keyPersonPhone != ''"
>
{{
scope
.
row
.
keyPersonPhone
}}
</span>
<span
v-else
>
-
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"单位资质"
align=
"center"
prop=
"certificateUrl"
style=
"text-align:center;"
>
<el-table-column
label=
"单位资质"
align=
"center"
prop=
"certificateUrl"
style=
"text-align:center;"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.certificateUrl != null && scope.row.certificateUrl != ''"
>
<span
v-if=
"scope.row.certificateUrl != null && scope.row.certificateUrl != ''"
>
<img
:src=
"scope.row.certificateUrl"
style=
"width: 20%;vertical-align:middle;cursor:pointer;"
@
click=
"showPicture(scope.row)"
/>
<img
:src=
"scope.row.certificateUrl"
style=
"width: 20%;vertical-align:middle;cursor:pointer;"
@
click=
"showPicture(scope.row)"
/>
<el-image
:ref=
"'a'+scope.row.id"
:src=
"scope.row.certificateUrl"
v-show=
"false"
:preview-src-list=
"[scope.row.certificateUrl]"
v-if=
"scope.row.certificateUrl != '' && scope.row.certificateUrl != null"
></el-image>
<el-image
:ref=
"'a'+scope.row.id"
:src=
"scope.row.certificateUrl"
v-show=
"false"
:preview-src-list=
"[scope.row.certificateUrl]"
v-if=
"scope.row.certificateUrl != '' && scope.row.certificateUrl != null"
></el-image>
</span>
</span>
<span
v-else
>
<span
v-else
>
-
-
...
...
danger-manage-web/src/views/deviceManagement/repairOrder/index.vue
View file @
10455607
...
@@ -67,8 +67,13 @@
...
@@ -67,8 +67,13 @@
<el-table-column
label=
"设备编号"
align=
"center"
prop=
"deviceCode"
/>
<el-table-column
label=
"设备编号"
align=
"center"
prop=
"deviceCode"
/>
<el-table-column
label=
"现场照片"
align=
"center"
prop=
"fileUrl"
>
<el-table-column
label=
"现场照片"
align=
"center"
prop=
"fileUrl"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<img
:src=
"scope.row.fileUrl"
style=
"width: 20%;vertical-align:middle;cursor:pointer;"
@
click=
"showPicture(scope.row)"
/>
<span
v-if=
"scope.row.fileUrl != null && scope.row.fileUrl != ''"
>
<el-image
:ref=
"'a'+scope.row.id"
:src=
"scope.row.fileUrl"
v-show=
"false"
:preview-src-list=
"[scope.row.fileUrl]"
v-if=
"scope.row.fileUrl != '' && scope.row.fileUrl != null"
></el-image>
<img
:src=
"scope.row.fileUrl"
style=
"width: 20%;vertical-align:middle;cursor:pointer;"
@
click=
"showPicture(scope.row)"
/>
<el-image
:ref=
"'a'+scope.row.id"
:src=
"scope.row.fileUrl"
v-show=
"false"
:preview-src-list=
"[scope.row.fileUrl]"
v-if=
"scope.row.fileUrl != '' && scope.row.fileUrl != null"
></el-image>
</span>
<span
v-else
>
-
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"故障描述"
align=
"center"
prop=
"troubleDescribe"
/>
<el-table-column
label=
"故障描述"
align=
"center"
prop=
"troubleDescribe"
/>
...
...
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