(MENU_CFG: string[] = [])
| 216 | * @author: 白雾茫茫丶 |
| 217 | */ |
| 218 | export const renderColumnsStateMap = (MENU_CFG: string[] = []) => { |
| 219 | const result: Record<string, ColumnsState> = {} |
| 220 | MENU_CFG.forEach((ele) => { |
| 221 | result[ele] = { |
| 222 | show: false, |
| 223 | } |
| 224 | }) |
| 225 | return result |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * @description: Tag 标签随机颜色 |
no outgoing calls
no test coverage detected