pageLayout.ts 504 B

12345678910111213141516171819202122
  1. /**
  2. * 页面布局配置
  3. * 该文件用于存储页面布局相关的配置信息
  4. */
  5. /**
  6. * 品牌与状态区域的位置类型
  7. * 可能的值:'top' 或 'bottom'
  8. */
  9. export type BrandAndStatusPosition = 'top' | 'bottom';
  10. /**
  11. * 页面布局配置对象
  12. * 包含品牌与状态区域的位置等配置项
  13. */
  14. export const pageLayoutConfig = {
  15. /**
  16. * 品牌与状态区域的位置
  17. * 可能的值:'top' 或 'bottom'
  18. */
  19. brandAndStatusPosition: 'bottom' as BrandAndStatusPosition,
  20. };