| | |
| | | type: 'radio', |
| | | key: 'IsSort', |
| | | label: '排序', |
| | | initVal: card.IsSort || (card.isSub || card.type === 'custom' ? 'false' : 'true'), |
| | | initVal: card.IsSort || 'false', |
| | | required: true, |
| | | options: [{ |
| | | value: 'true', |
| | |
| | | required: true |
| | | }, |
| | | { |
| | | type: 'checkbox', |
| | | key: 'evalchars', |
| | | label: '替换字符', |
| | | initVal: card.evalchars || ['enter', 'space'], |
| | | tooltip: '公式解析后,可替换回车、空格等字符,实现换行、字间距控制等页面效果。', |
| | | required: false, |
| | | options: [{ |
| | | value: 'enter', |
| | | text: '回车符' |
| | | }, { |
| | | value: 'space', |
| | | text: '空格' |
| | | }] |
| | | }, |
| | | { |
| | | type: 'radio', |
| | | key: 'noValue', |
| | | label: '空值', |