@focus-teach/ui 1.0.23 → 1.0.25
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 +13 -0
- package/lib/img/icon-ai.3f5232cf.png +0 -0
- package/lib/img/icon-circle.7d53e3b9.png +0 -0
- package/lib/img/icon-loading-done.b6be81b3.gif +0 -0
- package/lib/img/icon_warning.7873a5e6.gif +0 -0
- package/lib/ui.common.js +81927 -77839
- package/lib/ui.css +1 -1
- package/lib/ui.umd.js +81927 -77839
- package/lib/ui.umd.min.js +6 -4
- package/package.json +3 -3
- package/utils/common.js +15 -0
package/api/index.js
CHANGED
|
@@ -442,4 +442,17 @@ export function getExamStatistics (options, success, error) {
|
|
|
442
442
|
.catch(() => {
|
|
443
443
|
error();
|
|
444
444
|
});
|
|
445
|
+
}
|
|
446
|
+
//获取智能打标知识点集合
|
|
447
|
+
export function getAIKlList(options) {
|
|
448
|
+
return new Promise((resolve) => {
|
|
449
|
+
axios.post("/common/match-kl", options).then(
|
|
450
|
+
(res) => {
|
|
451
|
+
resolve([null, res])
|
|
452
|
+
},
|
|
453
|
+
(err) => {
|
|
454
|
+
resolve([err, null])
|
|
455
|
+
}
|
|
456
|
+
);
|
|
457
|
+
});
|
|
445
458
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|