@focus-teach/ui 1.0.52 → 1.0.54
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/api/index.js +14 -0
- package/lib/ui.common.js +2892 -572
- package/lib/ui.css +1 -1
- package/lib/ui.umd.js +2892 -572
- package/lib/ui.umd.min.js +5 -5
- package/package.json +1 -1
package/api/index.js
CHANGED
|
@@ -490,6 +490,20 @@ export function getMistakeItems(options, success, error) {
|
|
|
490
490
|
);
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
+
//班级易错题>获取题目列表(新)
|
|
494
|
+
export function getMistakeNewItems(options, success, error) {
|
|
495
|
+
axios.get("/rpt/mistake/mistake/class_query_mistake_exam", {
|
|
496
|
+
params: options
|
|
497
|
+
}).then(
|
|
498
|
+
(res) => {
|
|
499
|
+
success && success(res);
|
|
500
|
+
},
|
|
501
|
+
(res) => {
|
|
502
|
+
error && error(res);
|
|
503
|
+
}
|
|
504
|
+
);
|
|
505
|
+
}
|
|
506
|
+
|
|
493
507
|
//获取错题题目内容
|
|
494
508
|
export function getWrongQuestion(options, success, error) {
|
|
495
509
|
return new Promise((resolve) => {
|