优化商品列表数据展示

This commit is contained in:
gyq
2024-10-09 09:33:30 +08:00
parent 44c2f6c3dd
commit 940ceee222
3 changed files with 67 additions and 54 deletions

View File

@@ -2,7 +2,7 @@ module.exports = {
/**
* @description 网站标题
*/
title: '管理后台',
title: "管理后台",
/**
* @description 是否显示 tagsView
*/
@@ -22,7 +22,7 @@ module.exports = {
/**
* @description token key
*/
TokenKey: 'ELADMIN-TOEKN',
TokenKey: "ELADMIN-TOEKN",
/**
* @description 请求超时时间毫秒默认2分钟
*/
@@ -38,36 +38,37 @@ module.exports = {
/**
* 底部文字支持html语法
*/
footerTxt: '© 2018-2024 超掌柜科技 <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License 2.0</a>',
footerTxt:
'© 2018-2024 超掌柜科技 <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License 2.0</a>',
/**
* 备案号
*/
caseNumber: '陕ICP备2022008069号',
caseNumber: "陕ICP备2022008069号",
typeEnum: [
{
label: '计量商品',
intro: '单价购买',
typeEnum: 'normal'
label: "单规格",
intro: "单价购买",
typeEnum: "normal"
},
{
label: '多规格',
intro: '多种不同规格',
typeEnum: 'sku'
},
{
label: '套餐商品',
intro: '选职多种组合',
typeEnum: 'group'
},
{
label: '称重商品',
intro: '按重量售卖',
typeEnum: 'weight'
},
{
label: '时价商品',
intro: '收银端可更改价格',
typeEnum: 'currentPrice'
label: "多规格",
intro: "多种不同规格",
typeEnum: "sku"
}
// {
// label: '套餐商品',
// intro: '选职多种组合',
// typeEnum: 'group'
// },
// {
// label: '称重商品',
// intro: '按重量售卖',
// typeEnum: 'weight'
// },
// {
// label: '时价商品',
// intro: '收银端可更改价格',
// typeEnum: 'currentPrice'
// }
]
}
};