flat: 国庆节暂存

This commit is contained in:
史典卓
2024-10-09 09:39:34 +08:00
parent c40af81ac4
commit 9d9d7972c9
24 changed files with 571 additions and 285 deletions

View File

@@ -278,7 +278,7 @@ import PushService from './Dialog/pushService2.vue'
import {getDeptMyTree} from "@/api/tenant/talents";
const page = {
pageSize: 10,
size: 10,
currentPage: 1,
total: 0,
}
@@ -893,7 +893,7 @@ export default {
this.loading = true;
let paramsed = {
current: page.currentPage,
pageSize: page.pageSize,
size: page.size,
id: this.tenantId,
...params
}
@@ -930,10 +930,12 @@ export default {
this.query = {}
this.onLoad(this.page, this.query);
},
infoSizeChange(pageSize) {
infoSizeChange(size) {
this.page.size = size;
this.onLoad(this.page, this.query);
},
infoCurrentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page, this.query);
},
// 匹配任务和岗位
@@ -971,7 +973,7 @@ export default {
serveId: this.selectInfo.id,
companyId: this.selectInfo.companyId,
current: this.logPage.currentPage,
size: this.logPage.pageSize
size: this.logPage.size
}).then(res => {
let _this = this;
const {records, current, size, total} = res.data.data
@@ -1039,8 +1041,8 @@ export default {
});
});
},
logSizeChange(pageSize) {
this.logPage.pageSize = pageSize;
logSizeChange(size) {
this.logPage.size = size;
this.serveLog(this.selectUserServeLog)
},
logCurrentChange(currentPage) {