分包商
This commit is contained in:
@ -193,7 +193,7 @@
|
||||
// 获取 URL 中的 userId 参数
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.userId = urlParams.get("userId");
|
||||
// console.log("userId", this.userId);
|
||||
console.log("userId", this.userId);
|
||||
|
||||
this.getRecruitList();
|
||||
},
|
||||
@ -227,7 +227,7 @@
|
||||
this.loading = true;
|
||||
try {
|
||||
const response = await this.ajaxRequest({
|
||||
url: `/ruoyi/app/bgt/apply/htmlList?recruitId=${val}&isUpload=${this.isFilter}`,
|
||||
url: `/ruoyi/app/bgt/apply/htmlList?recruitId=${val}&isNotUpload=${this.isFilter}`,
|
||||
method: "GET",
|
||||
});
|
||||
this.currentList = response.data;
|
||||
@ -247,7 +247,7 @@
|
||||
this.loading = true;
|
||||
try {
|
||||
const response = await this.ajaxRequest({
|
||||
url: `/ruoyi/app/bgt/apply/htmlList?recruitId=${this.selectedTheme}&isUpload=${this.isFilter}`,
|
||||
url: `/ruoyi/app/bgt/apply/htmlList?recruitId=${this.selectedTheme}&isNotUpload=${this.isFilter}`,
|
||||
method: "GET",
|
||||
});
|
||||
this.currentList = response.data;
|
||||
@ -369,7 +369,6 @@
|
||||
userIds(newVal) {
|
||||
const total = this.currentList.length;
|
||||
this.checkAll = newVal.length === total && total > 0;
|
||||
this.isFilter = newVal.length === total && total > 0;
|
||||
this.isIndeterminate = newVal.length > 0 && newVal.length < total;
|
||||
},
|
||||
currentList(newVal) {
|
||||
|
Reference in New Issue
Block a user