commit:升级到vue3,更新最近工作流技术栈,支持sa-token

This commit is contained in:
Jerry
2024-07-05 22:42:33 +08:00
parent bbcc608584
commit 565ecb6371
1751 changed files with 236790 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { SysCustomWidgetType, OnlineFormEventType } from '@/common/staticDict/index';
const card = {
span: {
name: '组件宽度',
widgetType: SysCustomWidgetType.Slider,
value: 12,
min: 1,
max: 24,
},
shadow: {
name: '阴影显示',
widgetType: SysCustomWidgetType.Select,
value: 'never',
dropdownList: [
{
id: 'never',
name: '不显示',
},
{
id: 'hover',
name: '悬浮显示',
},
{
id: 'always',
name: '一直显示',
},
],
},
padding: {
name: '内部边距',
widgetType: SysCustomWidgetType.NumberInput,
value: 20,
min: 0,
},
paddingBottom: {
name: '底部距离',
widgetType: SysCustomWidgetType.NumberInput,
value: 0,
min: 0,
},
};
const baseCardConfig = {
widgetType: SysCustomWidgetType.Card,
icon: 'online-icon icon-card3',
attribute: card,
allowEventList: [OnlineFormEventType.VISIBLE],
operationList: [],
supportBindTable: false,
supportBindColumn: false,
};
export default baseCardConfig;