sun-biz 0.0.4-beta.50 → 0.0.4-beta.52

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.
@@ -74,6 +74,7 @@ export interface UserItem {
74
74
  }
75
75
  export interface SettingParams {
76
76
  columns: ColumnProps[];
77
+ defaultColumns: ColumnProps[];
77
78
  componentNo: string;
78
79
  columnsSetting?: {
79
80
  draggable?: boolean;
@@ -6,41 +6,45 @@
6
6
 
7
7
 
8
8
 
9
- [data-v-0aa25cee] .el-menu-item {
9
+ [data-v-a526e56a] .el-menu-item {
10
10
  height: 48px;
11
11
  line-height: 48px;
12
12
  }
13
- [data-v-0aa25cee] .el-sub-menu__title {
13
+ [data-v-a526e56a] .el-sub-menu__title {
14
14
  height: 48px;
15
15
  line-height: 48px;
16
16
  }
17
- [data-v-0aa25cee] .el-menu-item.is-active {
17
+ [data-v-a526e56a] .el-menu-item.is-active {
18
18
  color: inherit !important;
19
19
  background-color: #0000 !important;
20
20
  }
21
21
 
22
- .input[data-v-34ffe8bb] .el-input__inner {
22
+ .input[data-v-bf6cf296] .el-input__inner {
23
23
  cursor: pointer !important;
24
24
  }
25
- .table-select-popover[data-v-34ffe8bb] {
25
+ .table-select-popover[data-v-bf6cf296] {
26
26
  height: 350px;
27
27
  width: auto !important;
28
28
  }
29
- .table-select-popover-simple .header[data-v-34ffe8bb] {
29
+ .table-select-popover-simple .header[data-v-bf6cf296] {
30
30
  width: 100%;
31
31
  }
32
- .table-select-popover-simple .header > span[data-v-34ffe8bb] {
32
+ .table-select-popover-simple .header > span[data-v-bf6cf296] {
33
33
  flex: var(--simple-column-flex);
34
34
  }
35
- .table-select-popover-simple .cell[data-v-34ffe8bb] {
35
+ .table-select-popover-simple .cell[data-v-bf6cf296] {
36
36
  width: 100%;
37
37
  }
38
- .table-select-popover-simple .cell > span[data-v-34ffe8bb] {
38
+ .table-select-popover-simple .cell > span[data-v-bf6cf296] {
39
39
  flex: var(--simple-column-flex);
40
40
  }
41
41
 
42
42
 
43
43
 
44
+ .disabled-user-tooltip, .disabled-user-tooltip .el-tooltip__trigger {
45
+ color: #f56c6c !important;
46
+ }
47
+
44
48
  .hospital-charge-select[data-v-ffb2d000] {
45
49
  width: 100%;
46
50
  }
@@ -48,7 +48,13 @@ export interface TableSelectProps<T extends Record<PropertyKey, any>> {
48
48
  columns?: ISelectSimpleHeadOption<T>[] | ColumnProps[];
49
49
  /** 占位符 */
50
50
  placeholder?: string;
51
- /** 是否加载中 */
51
+ /**
52
+ * 是否禁用
53
+ */
54
+ disabled?: boolean;
55
+ /**
56
+ * 是否加载中
57
+ */
52
58
  loading?: boolean;
53
59
  /** 是否滚动加载中 */
54
60
  scrollLoading?: boolean;