1.新增马来语ms,修改有商品管理和所有接口返回

This commit is contained in:
2026-04-21 14:30:15 +08:00
parent 3ac825f15d
commit 7b9187fb62
11 changed files with 501 additions and 59 deletions

View File

@@ -58,6 +58,46 @@ const baTable = new baTableClass(
sortable: false,
operator: 'LIKE',
},
{
label: t('mall.item.title_en'),
prop: 'title_en',
align: 'center',
minWidth: 90,
show: false,
operatorPlaceholder: t('Fuzzy query'),
sortable: false,
operator: 'LIKE',
},
{
label: t('mall.item.description_en'),
prop: 'description_en',
align: 'center',
minWidth: 90,
show: false,
operatorPlaceholder: t('Fuzzy query'),
sortable: false,
operator: 'LIKE',
},
{
label: t('mall.item.title_ms'),
prop: 'title_ms',
align: 'center',
minWidth: 90,
show: false,
operatorPlaceholder: t('Fuzzy query'),
sortable: false,
operator: 'LIKE',
},
{
label: t('mall.item.description_ms'),
prop: 'description_ms',
align: 'center',
minWidth: 90,
show: false,
operatorPlaceholder: t('Fuzzy query'),
sortable: false,
operator: 'LIKE',
},
{
label: t('mall.item.score'),
prop: 'score',
@@ -189,6 +229,10 @@ const baTable = new baTableClass(
defaultItems: {
stock: 0,
sort: 100,
title_en: '',
description_en: '',
title_ms: '',
description_ms: '',
},
}
)