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

@@ -184,10 +184,13 @@ function getThirdPartyJobsList(type = 'add') {
let params = {
current: pageState.current,
pageSize: pageState.pageSize,
gsID:companyId,
gsmc:companyName,
zphID:zphId
};
$api.createRequest(
`/app/internal/jobThirdPart?gsID=${companyId}&gsmc=${companyName}&zphID=${zphId}`,
`/app/internal/jobThirdPart`,
params,
'GET',
true

View File

@@ -153,9 +153,11 @@ function getCompanyList(type = 'add') {
let params = {
current: pageState.current,
pageSize: pageState.pageSize,
zphID:jobFairId,
zphmc:jobFairName
};
$api.createRequest(
`/app/internal/companyThirdPart/?zphID=${jobFairId}&zphmc=${jobFairName}`,
`/app/internal/companyThirdPart`,
params,
'GET',
true

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 {

View File

@@ -110,9 +110,9 @@
</tabcontrolVue>
<SelectJobs ref="selectJobsModel"></SelectJobs>
<!-- 后门 -->
<!-- <view class="backdoor" @click="loginbackdoor">
<view class="backdoor" @click="loginbackdoor">
<uni-icons type="gift-filled" size="30"></uni-icons>
</view> -->
</view>
</AppLayout>
</template>