/** * 页面布局配置 * 该文件用于存储页面布局相关的配置信息 */ /** * 品牌与状态区域的位置类型 * 可能的值:'top' 或 'bottom' */ export type BrandAndStatusPosition = 'top' | 'bottom'; /** * 页面布局配置对象 * 包含品牌与状态区域的位置等配置项 */ export const pageLayoutConfig = { /** * 品牌与状态区域的位置 * 可能的值:'top' 或 'bottom' */ brandAndStatusPosition: 'bottom' as BrandAndStatusPosition, };