| | |
| | | * @param {object} card // 搜索条件对象 |
| | | * @param {Array} roleList // 角色列表-黑名单 |
| | | * @param {Array} columns // 显示列 |
| | | * @param {Array} actions // 按钮组 |
| | | */ |
| | | export function getChartViewForm (card, roleList = [], _columns) { |
| | | export function getChartViewForm (card, roleList = [], _columns, actions) { |
| | | let _charts = [{ |
| | | value: 'line', |
| | | text: '折线图' |
| | |
| | | initVal: card.blacklist || [], |
| | | required: false, |
| | | options: roleList |
| | | }, |
| | | { |
| | | type: 'multiselect', |
| | | key: 'actions', |
| | | label: '按钮组', |
| | | initVal: card.actions || [], |
| | | required: false, |
| | | options: actions |
| | | } |
| | | ] |
| | | } |