zhytech-ui 1.1.34 → 1.1.36
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/README.md
CHANGED
|
@@ -70,6 +70,17 @@ setTheme("dark");
|
|
|
70
70
|
|
|
71
71
|
> #### 版本更新清单:
|
|
72
72
|
|
|
73
|
+
**V 1.1.36**
|
|
74
|
+
```html
|
|
75
|
+
1.调整优化答题卡判断是否答对逻辑
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**V 1.1.35**
|
|
79
|
+
```html
|
|
80
|
+
1.修复横板下的zhy-dynamic-designer、zhy-dynamic-renderer显示样式
|
|
81
|
+
2.修复tabs组件高度显示异常
|
|
82
|
+
```
|
|
83
|
+
|
|
73
84
|
**V 1.1.34**
|
|
74
85
|
```html
|
|
75
86
|
1.zhy-dynamic-renderer新增是否显示答题卡开关属性
|
|
@@ -315,9 +315,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
315
315
|
};
|
|
316
316
|
realTimeDisplayAnswerMode: {
|
|
317
317
|
type: BooleanConstructor;
|
|
318
|
-
/**
|
|
319
|
-
* @description: 清空组件
|
|
320
|
-
*/
|
|
321
318
|
default: boolean;
|
|
322
319
|
};
|
|
323
320
|
everyItemDisplayAnalysisSwitch: {
|
|
@@ -416,9 +413,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
416
413
|
};
|
|
417
414
|
realTimeDisplayAnswerMode: {
|
|
418
415
|
type: BooleanConstructor;
|
|
419
|
-
/**
|
|
420
|
-
* @description: 清空组件
|
|
421
|
-
*/
|
|
422
416
|
default: boolean;
|
|
423
417
|
};
|
|
424
418
|
everyItemDisplayAnalysisSwitch: {
|
|
@@ -11,6 +11,64 @@ export declare enum formTypeEnum {
|
|
|
11
11
|
*/
|
|
12
12
|
Examination = "2"
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* 组件类型
|
|
16
|
+
*/
|
|
17
|
+
export declare enum componentTypeEnum {
|
|
18
|
+
/**
|
|
19
|
+
* 标签
|
|
20
|
+
*/
|
|
21
|
+
LABEL = "label",
|
|
22
|
+
/**
|
|
23
|
+
* 输入框
|
|
24
|
+
*/
|
|
25
|
+
INPUT = "input",
|
|
26
|
+
/**
|
|
27
|
+
* 复选框
|
|
28
|
+
*/
|
|
29
|
+
CHECKBOX = "checkbox",
|
|
30
|
+
/**
|
|
31
|
+
* 单选框
|
|
32
|
+
*/
|
|
33
|
+
RADIO = "radio",
|
|
34
|
+
/**
|
|
35
|
+
* 数字输入框
|
|
36
|
+
*/
|
|
37
|
+
INPUT_NUMBER = "inputNumber",
|
|
38
|
+
/**
|
|
39
|
+
* 日期选择器
|
|
40
|
+
*/
|
|
41
|
+
DATE = "date",
|
|
42
|
+
/**
|
|
43
|
+
* 时间选择器
|
|
44
|
+
*/
|
|
45
|
+
TIME = "time",
|
|
46
|
+
/**
|
|
47
|
+
* 上传组件
|
|
48
|
+
*/
|
|
49
|
+
UPLOAD = "upload",
|
|
50
|
+
/**
|
|
51
|
+
* 图片上传组件
|
|
52
|
+
*/
|
|
53
|
+
UPLOAD_IMAGE = "uploadImage",
|
|
54
|
+
/**
|
|
55
|
+
* 评分组件
|
|
56
|
+
*/
|
|
57
|
+
GRADE = "grade",
|
|
58
|
+
/**
|
|
59
|
+
* 人员组件
|
|
60
|
+
*/
|
|
61
|
+
EMPLOYEE = "employee",
|
|
62
|
+
/**
|
|
63
|
+
* 岗位组件
|
|
64
|
+
*/
|
|
65
|
+
POST = "post",
|
|
66
|
+
GROUP_LAYOUT = "groupLayout",
|
|
67
|
+
/**
|
|
68
|
+
* 页签
|
|
69
|
+
*/
|
|
70
|
+
TABS = "tabs"
|
|
71
|
+
}
|
|
14
72
|
/**
|
|
15
73
|
* 试卷答案状态
|
|
16
74
|
*/
|
|
@@ -26,7 +84,11 @@ export declare enum examinationStatusEnum {
|
|
|
26
84
|
/**
|
|
27
85
|
* 错误
|
|
28
86
|
*/
|
|
29
|
-
Error = 3
|
|
87
|
+
Error = 3,
|
|
88
|
+
/**
|
|
89
|
+
* 已作答
|
|
90
|
+
*/
|
|
91
|
+
Answered = 4
|
|
30
92
|
}
|
|
31
93
|
/**
|
|
32
94
|
* @description: 异常值检核类型
|