123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- export default {
- sysRightItem: {
- filter: {
- icon: 'filter', // font-icon
- text: '筛选',
- },
- about: {
- icon: 'navigate',
- text: ''
- },
- batch: {
- icon: 'settings',
- text: '批量'
- },
- plus: {
- icon: 'paperplane',
- text: '发送'
- },
- settings: {
- icon: 'gear',
- text: '设置'
- },
- history: {
- icon: 'outline',
- text: '历史'
- },
- add: {
- icon: 'plusempty',
- text: '新建'
- },
- refresh: {
- icon: 'reload',
- text: '刷新'
- },
- download: {
- icon: 'download',
- text: '下载'
- },
- edit: {
- icon: 'compose',
- text: '编辑'
- }
- },
- sysSwipeAction: {
- delete: {
- text: '删除',
- style: {
- backgroundColor: 'var(--error-color)'
- }
- },
- modify: {
- text: '编辑',
- style: {
- backgroundColor: 'var(--primary-color)'
- }
- },
- reply: {
- text: '回复',
- style: {
- backgroundColor: 'var(--primary-color)'
- }
- }
- },
- sexOptions: [{
- text: '男',
- value: '0'
- }, {
- text: '女',
- value: '1'
- }],
- yesOrNoOptions: [{
- text: '是',
- value: 1
- }, {
- text: '否',
- value: 0
- }]
- }
|