|
@@ -56,7 +56,7 @@
|
|
|
<el-table-column prop='photos_num' label='照片'>
|
|
|
<template slot-scope='scope'>
|
|
|
<span
|
|
|
- style='color: #025BAA'
|
|
|
+ style='color: #025BAA;cursor: pointer;'
|
|
|
@click='showPicturesDetail(scope.row, "equip")'
|
|
|
>{{ scope.row.photos_num?(scope.row.photos_num + '张') : '—' }}</span>
|
|
|
<!-- <span style="color: #025BAA" @click="showPicturesDetail(scope.row)">1张</span> -->
|
|
@@ -65,7 +65,7 @@
|
|
|
<el-table-column prop='attachments_num' label='报告'>
|
|
|
<template slot-scope='scope'>
|
|
|
<span
|
|
|
- style='color: #025BAA'
|
|
|
+ style='color: #025BAAp;cursor: pointer;'
|
|
|
@click='(e) => showReportDetail(scope.row, "equip", e)'
|
|
|
>{{ scope.row.attachments_num?(scope.row.attachments_num+ '张') : '—'}}</span>
|
|
|
<!-- <span style="color: #025BAA" @click="(e) => showReportDetail(scope.row, 'equip', e)">1张</span> -->
|
|
@@ -99,7 +99,7 @@
|
|
|
<el-table-column width='100' property='photosNum' label='照片'>
|
|
|
<template slot-scope='scope'>
|
|
|
<span
|
|
|
- style='color: #025BAA'
|
|
|
+ style='color: #025BAA;cursor: pointer;'
|
|
|
@click='showPicturesDetail(scope.row, "his")'
|
|
|
>{{ scope.row.photosNum || scope.row.photosNum === 0?(scope.row.photosNum + '张') : '—' }}</span>
|
|
|
<!-- <span style="color: #025BAA" @click="showPicturesDetail(scope.row)">1张</span> -->
|
|
@@ -108,7 +108,7 @@
|
|
|
<el-table-column width='100' property='attachmentsNum' label='报告'>
|
|
|
<template slot-scope='scope'>
|
|
|
<span
|
|
|
- style='color: #025BAA'
|
|
|
+ style='color: #025BAA;cursor: pointer;'
|
|
|
@click='(e) => showReportDetail(scope.row, "his", e)'
|
|
|
>{{ scope.row.attachmentsNum?(scope.row.attachmentsNum+ '张') : '—'}}</span>
|
|
|
<!-- <span style="color: #025BAA" @click="(e) => showReportDetail(scope.row, 'his', e)">1张</span> -->
|
|
@@ -748,4 +748,11 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+</style>
|
|
|
+<style lang="less">
|
|
|
+.core-device-report {
|
|
|
+ /deep/.el-table tr {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|