cnhis-design-vue 3.1.13-beta.5 → 3.1.13-beta.6
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.
|
@@ -1080,7 +1080,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1080
1080
|
textColorSuccess: string;
|
|
1081
1081
|
textColorHoverSuccess: string;
|
|
1082
1082
|
textColorPressedSuccess: string;
|
|
1083
|
-
textColorFocusSuccess: string;
|
|
1083
|
+
textColorFocusSuccess: string; /**
|
|
1084
|
+
* 删除选中scan数据
|
|
1085
|
+
*/
|
|
1084
1086
|
textColorDisabledSuccess: string;
|
|
1085
1087
|
textColorTextSuccess: string;
|
|
1086
1088
|
textColorTextHoverSuccess: string;
|
|
@@ -1098,7 +1100,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1098
1100
|
borderFocusSuccess: string;
|
|
1099
1101
|
borderDisabledSuccess: string;
|
|
1100
1102
|
rippleColorSuccess: string;
|
|
1101
|
-
colorWarning: string;
|
|
1103
|
+
colorWarning: string; /**
|
|
1104
|
+
* 判断是否渲染EditForm
|
|
1105
|
+
* @param {*} row
|
|
1106
|
+
* @param {*} column
|
|
1107
|
+
* @returns
|
|
1108
|
+
*/
|
|
1102
1109
|
colorHoverWarning: string;
|
|
1103
1110
|
colorPressedWarning: string;
|
|
1104
1111
|
colorFocusWarning: string;
|
|
@@ -1180,10 +1187,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1180
1187
|
borderRadiusSmall: string;
|
|
1181
1188
|
borderRadiusMedium: string;
|
|
1182
1189
|
borderRadiusLarge: string;
|
|
1183
|
-
fontSizeTiny: string;
|
|
1184
|
-
* 单个form提交失败
|
|
1185
|
-
* @param {*} obj
|
|
1186
|
-
*/
|
|
1190
|
+
fontSizeTiny: string;
|
|
1187
1191
|
fontSizeSmall: string;
|
|
1188
1192
|
fontSizeMedium: string;
|
|
1189
1193
|
fontSizeLarge: string;
|
|
@@ -1195,6 +1199,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1195
1199
|
colorSecondaryHover: string;
|
|
1196
1200
|
colorSecondaryPressed: string;
|
|
1197
1201
|
colorTertiary: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* 避免每次点击都查询
|
|
1204
|
+
* 初始化查一次 行编辑 表单search用
|
|
1205
|
+
*/
|
|
1198
1206
|
colorTertiaryHover: string;
|
|
1199
1207
|
colorTertiaryPressed: string;
|
|
1200
1208
|
colorQuaternary: string;
|
|
@@ -1217,9 +1225,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1217
1225
|
textColorTextFocus: string;
|
|
1218
1226
|
textColorTextDisabled: string;
|
|
1219
1227
|
textColorGhost: string;
|
|
1220
|
-
/**
|
|
1221
|
-
* tsx渲染表格
|
|
1222
|
-
*/
|
|
1223
1228
|
textColorGhostHover: string;
|
|
1224
1229
|
textColorGhostPressed: string;
|
|
1225
1230
|
textColorGhostFocus: string;
|
|
@@ -1300,7 +1305,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1300
1305
|
textColorGhostSuccess: string;
|
|
1301
1306
|
textColorGhostHoverSuccess: string;
|
|
1302
1307
|
textColorGhostPressedSuccess: string;
|
|
1303
|
-
textColorGhostFocusSuccess: string;
|
|
1308
|
+
textColorGhostFocusSuccess: string; /** string */
|
|
1304
1309
|
textColorGhostDisabledSuccess: string;
|
|
1305
1310
|
borderSuccess: string;
|
|
1306
1311
|
borderHoverSuccess: string;
|
|
@@ -482,7 +482,10 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
482
482
|
editRender: isEdit ? {} : generateEditRender(item)
|
|
483
483
|
});
|
|
484
484
|
if (filterField && !props.isNestTable && !isScanMultiTable2) {
|
|
485
|
-
state.filterFields[item.columnName] = Object.assign({}, vexutils.clone(
|
|
485
|
+
state.filterFields[item.columnName] = Object.assign({}, vexutils.clone({
|
|
486
|
+
...item,
|
|
487
|
+
setting: item.settingObj
|
|
488
|
+
}, true), {
|
|
486
489
|
visible: false,
|
|
487
490
|
left: "initial",
|
|
488
491
|
right: "initial",
|