fix 传参

This commit is contained in:
2025-12-12 10:50:45 +08:00
parent cb1052346e
commit 30764cec57
4 changed files with 15 additions and 5 deletions

View File

@@ -285,7 +285,12 @@ function getCompanyIsAJobs(...args) {
if (dataType.value === 2) {
// 第三方数据获取公司职位数量
const [gsID, gsmc, zphID] = args;
$api.createRequest(`/app/internal/jobThirdPart?gsID=${gsID}&gsmc=${gsmc}&zphID=${zphID}`).then((resData) => {
const params={
gsID,
gsmc,
zphID
}
$api.createRequest(`/app/internal/jobThirdPart`,params).then((resData) => {
companyCount.value = resData.total;
});
} else {