Files
xk-doctor-wx/utils/workbenchCardPref.js

24 lines
696 B
JavaScript
Raw Permalink Normal View History

/**
* 工作台功能卡片形态偏好长卡/短卡
* 存本地 storage已确认不入库用户在我的页切换后各工作台首页 onShow 时读取生效
* short = 双列短卡默认long = 整行长卡
*/
const STORAGE_KEY = 'wb_card_style'
/**
* 读取卡片形态偏好异常值一律回落 short保证布局不会因脏数据坏掉
*/
export function getCardStyle() {
const value = uni.getStorageSync(STORAGE_KEY)
return value === 'long' ? 'long' : 'short'
}
/**
* 写入卡片形态偏好
* @param {'short'|'long'} style
*/
export function setCardStyle(style) {
uni.setStorageSync(STORAGE_KEY, style === 'long' ? 'long' : 'short')
}