|
@@ -4,11 +4,7 @@
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
<div class="col-md-12">
|
|
<div class="col-md-12">
|
|
|
<h1 class="page-header" style="margin-top: 10px; margin-bottom: 0px">
|
|
<h1 class="page-header" style="margin-top: 10px; margin-bottom: 0px">
|
|
|
- <a-image
|
|
|
|
|
- style="width: 78px; height: 78px"
|
|
|
|
|
- :src="Common.getThumbnailImageSrc(assetClassName,showAssetInstance.imageName)"
|
|
|
|
|
- />
|
|
|
|
|
- <!-- <AuthImage
|
|
|
|
|
|
|
+ <AuthImage
|
|
|
:auth-src="
|
|
:auth-src="
|
|
|
Common.getThumbnailImageSrc(
|
|
Common.getThumbnailImageSrc(
|
|
|
assetClassName,
|
|
assetClassName,
|
|
@@ -23,7 +19,7 @@
|
|
|
showAssetInstance.imageName
|
|
showAssetInstance.imageName
|
|
|
)
|
|
)
|
|
|
"
|
|
"
|
|
|
- /> -->
|
|
|
|
|
|
|
+ />
|
|
|
|
|
|
|
|
{{ $t("lang.AssetInstanceSearchDetail.assetCardDetails") }}
|
|
{{ $t("lang.AssetInstanceSearchDetail.assetCardDetails") }}
|
|
|
</h1>
|
|
</h1>
|
|
@@ -778,25 +774,16 @@
|
|
|
<td>{{ item.position }}</td>
|
|
<td>{{ item.position }}</td>
|
|
|
<td>{{ item.type }}</td>
|
|
<td>{{ item.type }}</td>
|
|
|
<td>
|
|
<td>
|
|
|
- <a-image
|
|
|
|
|
- style="width: 80px; height: 50px"
|
|
|
|
|
- :src="Common.getThumbnailImageSrc(item.className,item.image)"
|
|
|
|
|
- />
|
|
|
|
|
- <!-- <img
|
|
|
|
|
- :authSrc="
|
|
|
|
|
|
|
+ <AuthImage
|
|
|
|
|
+ :auth-src="
|
|
|
showRfidRecordThumbnailImage(
|
|
showRfidRecordThumbnailImage(
|
|
|
item.className,
|
|
item.className,
|
|
|
item.image
|
|
item.image
|
|
|
)
|
|
)
|
|
|
"
|
|
"
|
|
|
style="width: 80px; height: 50px"
|
|
style="width: 80px; height: 50px"
|
|
|
- @click="
|
|
|
|
|
- $refs.imagePreview.preview(
|
|
|
|
|
- item.className,
|
|
|
|
|
- item.image
|
|
|
|
|
- )
|
|
|
|
|
- "
|
|
|
|
|
- /> -->
|
|
|
|
|
|
|
+ @click="getImage(item.className,item.image)"
|
|
|
|
|
+ />
|
|
|
</td>
|
|
</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
</tbody>
|
|
</tbody>
|
|
@@ -929,6 +916,10 @@ export default {
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ getImage: function (className,imageName) {
|
|
|
|
|
+ const url = this.showRfidRecordThumbnailImage(className,imageName);
|
|
|
|
|
+ this.$refs.imagePreview.preview(url);
|
|
|
|
|
+ },
|
|
|
getEventOriginalEndDate: function () {
|
|
getEventOriginalEndDate: function () {
|
|
|
const _self = this;
|
|
const _self = this;
|
|
|
// 前一个月的时间
|
|
// 前一个月的时间
|