Commit f540adcc by wusiyi

fix: lint

parent 885a48a6
...@@ -2039,16 +2039,16 @@ const operationOrderColumns = [ ...@@ -2039,16 +2039,16 @@ const operationOrderColumns = [
return ( return (
<div style="display:flex;gap:4px;"> <div style="display:flex;gap:4px;">
{list.map((img, idx) => ( {list.map((img, idx) => (
<Thumbnail <span key={idx} title={img.title ?? ''}>
title={img.title ?? ''} <Thumbnail
key={idx} src={img.url}
src={img.url} width="45"
width="45" display-width="50"
display-width="50" previewTeleported
previewTeleported previewSrcList={urls}
previewSrcList={urls} initialIndex={idx}
initialIndex={idx} />
/> </span>
))} ))}
</div> </div>
) )
......
...@@ -6586,8 +6586,8 @@ function getProductMarkt(productMark: string) { ...@@ -6586,8 +6586,8 @@ function getProductMarkt(productMark: string) {
return '' return ''
} }
const dialogVisible = ref(false) // const dialogVisible = ref(false)
const dialogImageUrl = ref('') // const dialogImageUrl = ref('')
// const handlePictureCardPreview = (fileUrl: string, type?: string) => { // const handlePictureCardPreview = (fileUrl: string, type?: string) => {
// dialogImageUrl.value = fileUrl // dialogImageUrl.value = fileUrl
// if (type == 'variantImage') // if (type == 'variantImage')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment