超管中心-头饰管理列表增加头饰图片

This commit is contained in:
chenruiye
2025-05-30 11:16:48 +08:00
parent e20c7cb32b
commit 7d768ff9e9

View File

@@ -119,6 +119,20 @@ export default {
{field: 'name.ar', title: '阿语头饰名称', align: 'center', width: '5%'},
{field: 'name.en', title: '英语头饰名称', align: 'center', width: '5%'},
{field: 'name.tr', title: '土耳其头饰名称', align: 'center', width: '5%'},
{
field: 'pic',
title: '头饰图片',
align: 'center',
valign: 'center',
width: '5%',
formatter: function (val, row, index) {
if (val) {
return "<img style='max-width: 100px;max-height: 100px' src='" + val + "'>";
} else {
return '-';
}
}
},
{
field: 'headwearId',