1
0

feat(frontend): 优化数据产品展示和详情查看功能

- 在 constants.js 中更新了信息结构,使用空值合并运算符提高代码健壮性
- 在 main.js 中添加了样式文件导入,提升页面视觉效果
- 在 tab-market.js 中增加了数据产品详情对话框,丰富了产品信息展示内容
This commit is contained in:
2024-12-19 19:03:36 +08:00
parent 91e30fefe4
commit 74b0638a07
4 changed files with 44 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
export const information = {
debug: true,
// baseUrl: '',
baseUrl: 'http://127.0.0.1:20080',
title: '可信供给中心',
}
@@ -17,8 +16,8 @@ export function useAmis(amisObject) {
struct,
{
data: {
debug: information.debug,
base: information.baseUrl,
debug: information.debug ?? false,
base: information.baseUrl ?? '',
},
},
{