给商品库存报表增加商品图片,优化单据查看界面的商品图片

This commit is contained in:
季圣华
2023-08-09 23:25:08 +08:00
parent 26faed4704
commit a7b6ae677a
3 changed files with 137 additions and 58 deletions

View File

@@ -84,12 +84,14 @@
:customRow="rowAction"
@change="handleTableChange">
<template slot="customBarCode" slot-scope="text, record">
{{record.mBarCode}}
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.mBarCode}}</div>
<a-popover placement="right" trigger="click">
<template slot="content">
<img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" />
</template>
<img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" style="cursor:pointer; max-width:40px; max-height:30px;" title="查看大图" />
<div class="item-info" v-if="record.imgName">
<img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" />
</div>
</a-popover>
</template>
<template slot="customName" slot-scope="text, record">
@@ -417,4 +419,19 @@
cursor: pointer;
transition: color .3s;
}
.item-info {
float:left;
width:30px;
height:30px;
margin-left:8px
}
.item-img {
cursor:pointer;
position: static;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>