flame-plus 1.5.30 → 1.5.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flame-plus",
3
3
  "type": "module",
4
- "version": "1.5.30",
4
+ "version": "1.5.31",
5
5
  "description": "基于 element-plus 的组件库",
6
6
  "main": "./flameDist/flame-plus.es.js",
7
7
  "module": "./flameDist/flame-plus.es.js",
@@ -0,0 +1,43 @@
1
+ | controlType | fieldDbDataType计算逻辑 |
2
+ | -------------------------- | ------------------------------------------------------------ |
3
+ | FlmSysFlameUser | json |
4
+ | FlmSysFlameOrg | json |
5
+ | FlmSysFlameRole | json |
6
+ | FlmSysFlameMobileRole | json |
7
+ | FlmSysFlameBusinessStation | json |
8
+ | FlmSysFlameStation | json |
9
+ | FlmSysFlamePerson | json |
10
+ | FlmGenericDataSelect | json |
11
+ | FlmBizUpload | json |
12
+ | FlmSysFlameUser | bigint unsigned |
13
+ | FlmSysFlameOrg | bigint unsigned |
14
+ | FlmSysFlameRole | bigint unsigned |
15
+ | FlmSysFlameMobileRole | bigint unsigned |
16
+ | FlmSysFlameBusinessStation | bigint unsigned |
17
+ | FlmSysFlameStation | bigint unsigned |
18
+ | FlmGenericDataSelect | bigint unsigned |
19
+ | FlmSysFlamePerson | bigint unsigned |
20
+ | FlmCodeRuleInput | varchar(32) |
21
+ | flmColorPicker | varchar(8) |
22
+ | flmRate | int unsigned |
23
+ | flmSlider | 如果step:有没有小数就是int unsigned,如果没有小数就是decimal(M,N) N:要看step有多位小数比如step:1.22 那么N=2,step:0.2 N:1 M:要看max的值是多少位,比如:max=100,step:1.22 max是3位数 N=2,那么M:3+N=3+2=5 max=1235,step:0.2 max是4位数 N=1 那么M=4+1=5 |
24
+ | flmSwitch | varchar(32) |
25
+ | flmRadio | varchar(32) |
26
+ | flmAlert | text |
27
+ | flmRadio | varchar(128) |
28
+ | flmCheckboxGroup | json |
29
+ | flmTime | date |
30
+ | flmTime | time |
31
+ | flmTime | datetime |
32
+ | flmTime | time |
33
+ | flmTime | 取决于formart如果是YYYY-MM-DD 就是date,如果HH:mm:ss就是time 如查是YYYY-MM-dd HH:mm:ss 就是datetime |
34
+ | flmDatePicker | date |
35
+ | flmTimePicker | time |
36
+ | flmTimeSelect | varchar(8) |
37
+ | flmInput | varchar(M):M 就是等于maxlenth |
38
+ | flmInput | varchar(M):M 就是等于maxlenth |
39
+ | flmInput | varchar(M):M 就是等于maxlenth |
40
+ | flmInputNumber | int unsigned |
41
+ | flmInputNumber | decimal(M,N) N:要看step有多位小数比如step:1.22 那么N=2,step:0.2 N:1 M:要看max的值是多少位,比如:max=100,step:1.22 max是3位数 N=2,那么M:3+N=3+2=5 max=1235,step:0.2 max是4位数 N=1 那么M=4+1=5 |
42
+ | flmSelect | varchar(128) |
43
+ | flmSelect | json |