|
@@ -467,10 +467,10 @@ export default {
|
|
|
this.$message.warning("请选择学员");
|
|
|
return;
|
|
|
}
|
|
|
- const indexs = this.examList.findIndex((item) => {
|
|
|
+ const indexs = this.examLists.findIndex((item) => {
|
|
|
return item.applyId == data.applyId;
|
|
|
});
|
|
|
- data.applyName = this.examList[indexs].applyName;
|
|
|
+ data.applyName = this.examLists[indexs].applyName;
|
|
|
this.$api.inquiresystemsubscribeexportRegister(data).then((res) => {
|
|
|
let url = baseUrls.baseURL + "common/download?fileName=" + res.msg;
|
|
|
let link = document.createElement("a");
|