@focus-teach/ui 1.2.7 → 1.2.9

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 CHANGED
@@ -2162,6 +2162,19 @@ export function checkItemSmartMarkingProgressApi(options) {
2162
2162
  );
2163
2163
  })
2164
2164
  }
2165
+ //获取考试列表
2166
+ export function getExamList(options) {
2167
+ return new Promise((resolve) => {
2168
+ axios.get("/paper-exam/user/like-name", { params: options }).then(
2169
+ (res) => {
2170
+ resolve([null, res])
2171
+ },
2172
+ (err) => {
2173
+ resolve([err, null])
2174
+ }
2175
+ );
2176
+ })
2177
+ }
2165
2178
  //保存AI分值
2166
2179
  export function saveAIScoreApi(options) {
2167
2180
  return new Promise((resolve) => {