vxe-table 表格 vue 單元格渲染上傳附件,顯示圖片列表,適配上傳附件樣式的用法,在系統中渲染複製表格時,經常會涉及到附件和圖片等上傳問題,比如在列表單元格中需要支持上傳附件,由於單元格太小,一般的組件根本無法正常顯示適配,這時候就可以使用上傳附件緊湊模式,通過配置更多按鈕來實現。
https://vxetable.cn
附件上傳
可以在單元格中放指定數量的附件,多餘的在更多按鈕中顯示

點擊後顯示更多,以及全功能的上傳模式,拖拽上傳等

<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script setup>
import { reactive } from 'vue'
import axios from 'axios'
const fileList2CellRender = reactive({
name: 'VxeUpload',
props: {
multiple: true,
showButtonText: false,
dragSort: true,
progressText: '{percent}%',
moreConfig: {
maxCount: 1,
layout: 'horizontal'
},
uploadMethod ({ file }) {
const formData = new FormData()
formData.append('file', file)
return axios.post('/api/pub/upload/single', formData).then((res) => {
// { url: ''}
return {
...res.data
}
})
}
}
})
const gridOptions = reactive({
border: true,
showOverflow: true,
columns: [
{ type: 'seq', width: 70 },
{ field: 'name', title: 'Name', minWidth: 180 },
{ field: 'fileList2', title: '上傳附件', width: 300, cellRender: fileList2CellRender }
],
data: [
{
id: 10001,
name: 'Test1',
fileList2: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' }
]
},
{
id: 10002,
name: 'Test2',
fileList2: []
},
{
id: 10003,
name: 'Test3',
fileList2: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' },
{ name: 'fj573.jpeg', url: 'https://vxeui.com/resource/img/fj573.jpeg' },
{ name: 'fj187.jpg', url: 'https://vxeui.com/resource/img/fj187.jpg' }
]
}
]
})
</script>
附件上傳 - 簡化顯示
簡化模式和上面一樣,區別就是不會 顯示任何附件,只會顯示數量,點擊後依然可以上傳

<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script setup>
import { reactive } from 'vue'
import axios from 'axios'
const fileList4CellRender = reactive({
name: 'VxeUpload',
props: {
multiple: true,
showButtonText: false,
dragSort: true,
progressText: '{percent}%',
moreConfig: {
maxCount: 0,
layout: 'horizontal'
},
uploadMethod ({ file }) {
const formData = new FormData()
formData.append('file', file)
return axios.post('/api/pub/upload/single', formData).then((res) => {
// { url: ''}
return {
...res.data
}
})
}
}
})
const gridOptions = reactive({
border: true,
showOverflow: true,
columns: [
{ type: 'seq', width: 70 },
{ field: 'name', title: 'Name', minWidth: 180 },
{ field: 'fileList4', title: '精簡上傳', width: 160, cellRender: fileList4CellRender }
],
data: [
{
id: 10001,
name: 'Test1',
fileList4: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' }
]
},
{
id: 10002,
name: 'Test2',
fileList4: []
},
{
id: 10003,
name: 'Test3',
fileList4: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' },
{ name: 'fj573.jpeg', url: 'https://vxeui.com/resource/img/fj573.jpeg' },
{ name: 'fj187.jpg', url: 'https://vxeui.com/resource/img/fj187.jpg' }
]
}
]
})
</script>
圖表上傳

點擊後顯示更多,以及全功能的上傳模式,拖拽上傳等

<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script setup>
import { reactive } from 'vue'
import axios from 'axios'
const imgList2CellRender = reactive({
name: 'VxeUpload',
props: {
mode: 'image',
multiple: true,
showButtonText: false,
dragSort: true,
progressText: '{percent}%',
moreConfig: {
maxCount: 1
},
imageConfig: {
width: 40,
height: 40
},
uploadMethod ({ file }) {
const formData = new FormData()
formData.append('file', file)
return axios.post('/api/pub/upload/single', formData).then((res) => {
// { url: ''}
return {
...res.data
}
})
}
}
})
const gridOptions = reactive({
border: true,
showOverflow: true,
columns: [
{ type: 'seq', width: 70 },
{ field: 'name', title: 'Name', minWidth: 180 },
{ field: 'imgList2', title: '上傳圖片', width: 210, cellRender: imgList2CellRender }
],
data: [
{
id: 10001,
name: 'Test1',
imgList2: []
},
{
id: 10002,
name: 'Test2',
imgList2: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' },
{ name: 'fj573.jpeg', url: 'https://vxeui.com/resource/img/fj573.jpeg' }
]
},
{
id: 10003,
name: 'Test3',
imgList2: [
{ name: 'fj577.jpg', url: 'https://vxeui.com/resource/img/fj577.jpg' }
]
}
]
})
</script>
圖表上傳 - 簡化顯示

<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script setup>
import { reactive } from 'vue'
import axios from 'axios'
const imgList4CellRender = reactive({
name: 'VxeUpload',
props: {
mode: 'image',
multiple: true,
showButtonText: false,
dragSort: true,
progressText: '{percent}%',
moreConfig: {
maxCount: 0
},
imageConfig: {
width: 40,
height: 40
},
uploadMethod ({ file }) {
const formData = new FormData()
formData.append('file', file)
return axios.post('/api/pub/upload/single', formData).then((res) => {
// { url: ''}
return {
...res.data
}
})
}
}
})
const gridOptions = reactive({
border: true,
showOverflow: true,
columns: [
{ type: 'seq', width: 70 },
{ field: 'name', title: 'Name', minWidth: 180 },
{ field: 'fileList4', title: '精簡上傳', width: 160, cellRender: imgList4CellRender }
],
data: [
{
id: 10001,
name: 'Test1',
imgList4: []
},
{
id: 10002,
name: 'Test2',
imgList4: [
{ name: 'fj562.png', url: 'https://vxeui.com/resource/img/fj562.png' },
{ name: 'fj573.jpeg', url: 'https://vxeui.com/resource/img/fj573.jpeg' }
]
},
{
id: 10003,
name: 'Test3',
imgList4: [
{ name: 'fj577.jpg', url: 'https://vxeui.com/resource/img/fj577.jpg' }
]
}
]
})
</script>
https://gitee.com/x-extends/vxe-table