Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 65dea06316 | |||
| 30b5caf87b | |||
| d42128be8b | |||
| d15765973a | |||
| 2e40eec875 | |||
| 9a09edf54c | |||
| 8578c96931 | |||
| 4faaedcbbd |
@@ -3,7 +3,21 @@
|
|||||||
* @LastEditors: shirlwang
|
* @LastEditors: shirlwang
|
||||||
* @LastEditTime: 2025-12-16 16:35:06
|
* @LastEditTime: 2025-12-16 16:35:06
|
||||||
*/
|
*/
|
||||||
import { createRequest } from '../../utils/request';
|
import request from '@/utilsRc/request'
|
||||||
|
import { createRequest } from '@/utils/request';
|
||||||
|
|
||||||
|
// 获取职业图谱token
|
||||||
|
export function appToken(token) {
|
||||||
|
return request({
|
||||||
|
url: '/loginByToken',
|
||||||
|
method: 'post',
|
||||||
|
data: {
|
||||||
|
token,
|
||||||
|
loginWay: '2'
|
||||||
|
},
|
||||||
|
baseUrlType: 'zytp'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 获取用户信息(职业规划推荐用)
|
// 获取用户信息(职业规划推荐用)
|
||||||
export function appUserInfo() {
|
export function appUserInfo() {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--suppress HtmlUnknownTag, NpmUsedModulesInstalled, JSFileReferences -->
|
<!--suppress HtmlUnknownTag, NpmUsedModulesInstalled, JSFileReferences -->
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, inject, nextTick, onMounted } from 'vue';
|
import { inject, nextTick, onMounted, ref } from 'vue';
|
||||||
import { onLoad, onShow } from '@dcloudio/uni-app';
|
import { onShow } from '@dcloudio/uni-app';
|
||||||
import { appUserInfo } from '@/apiRc/user/user.js';
|
import { appUserInfo } from '@/apiRc/user/user.js';
|
||||||
import RemindPopup from './components/RemindPopup.vue';
|
import RemindPopup from './components/RemindPopup.vue';
|
||||||
import PageHeader from './components/PageHeader.vue';
|
import PageHeader from './components/PageHeader.vue';
|
||||||
@@ -10,6 +10,9 @@ import CareerRecommend from './components/CareerRecommend.vue';
|
|||||||
import CareerPath from './components/CareerPath.vue';
|
import CareerPath from './components/CareerPath.vue';
|
||||||
import SkillDevelopment from './components/SkillDevelopment.vue';
|
import SkillDevelopment from './components/SkillDevelopment.vue';
|
||||||
import CustomTabBar from '@/components/CustomTabBar/CustomTabBar.vue';
|
import CustomTabBar from '@/components/CustomTabBar/CustomTabBar.vue';
|
||||||
|
import { appToken } from '@/apiRc/user/user';
|
||||||
|
import { setToken } from '@/utilsRc/auth';
|
||||||
|
|
||||||
|
|
||||||
const { navBack, navTo } = inject('globalFunction');
|
const { navBack, navTo } = inject('globalFunction');
|
||||||
|
|
||||||
@@ -29,7 +32,6 @@ const selectedJobImprovementSkills = ref([]);
|
|||||||
const currentJobId = ref(null);
|
const currentJobId = ref(null);
|
||||||
const currentJobName = ref('');
|
const currentJobName = ref('');
|
||||||
|
|
||||||
|
|
||||||
const pathSkillsData = ref({
|
const pathSkillsData = ref({
|
||||||
pathData: {
|
pathData: {
|
||||||
start: { title: '', skills: [] },
|
start: { title: '', skills: [] },
|
||||||
@@ -87,6 +89,14 @@ async function getRemindInfo() {
|
|||||||
|
|
||||||
hasCheckedRemindInfo = true;
|
hasCheckedRemindInfo = true;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const t = uni.getStorageSync('token');
|
||||||
|
const { token } = await appToken(t);
|
||||||
|
setToken(token);
|
||||||
|
} catch (e) {
|
||||||
|
console.warn(e);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await appUserInfo();
|
const response = await appUserInfo();
|
||||||
const userInfo = response?.data || {};
|
const userInfo = response?.data || {};
|
||||||
@@ -141,11 +151,11 @@ async function getRemindInfo() {
|
|||||||
if (!hasSkills) {
|
if (!hasSkills) {
|
||||||
missingItems.push('技能标签');
|
missingItems.push('技能标签');
|
||||||
}
|
}
|
||||||
remindList.value = [`请完善${missingItems.join('、')}`];
|
remindList.value = [ `请完善${ missingItems.join('、') }` ];
|
||||||
} else {
|
} else {
|
||||||
// 信息完整,设置职位信息
|
// 信息完整,设置职位信息
|
||||||
if (hasJobTitle) {
|
if (hasJobTitle) {
|
||||||
currentJobName.value = jobTitles[0];
|
currentJobName.value = jobTitles[ 0 ];
|
||||||
} else {
|
} else {
|
||||||
currentJobName.value = jobName;
|
currentJobName.value = jobName;
|
||||||
currentJobId.value = userInfo?.jobId ??
|
currentJobId.value = userInfo?.jobId ??
|
||||||
@@ -209,11 +219,11 @@ async function getRemindInfo() {
|
|||||||
if (!hasSkills) {
|
if (!hasSkills) {
|
||||||
missingItems.push('技能标签');
|
missingItems.push('技能标签');
|
||||||
}
|
}
|
||||||
remindList.value = [`请完善${missingItems.join('、')}`];
|
remindList.value = [ `请完善${ missingItems.join('、') }` ];
|
||||||
} else {
|
} else {
|
||||||
// 信息完整,设置职位信息
|
// 信息完整,设置职位信息
|
||||||
if (hasJobTitle) {
|
if (hasJobTitle) {
|
||||||
currentJobName.value = cachedJobTitles[0];
|
currentJobName.value = cachedJobTitles[ 0 ];
|
||||||
} else {
|
} else {
|
||||||
currentJobName.value = jobName;
|
currentJobName.value = jobName;
|
||||||
currentJobId.value = cachedUserInfo?.jobId ??
|
currentJobId.value = cachedUserInfo?.jobId ??
|
||||||
@@ -276,7 +286,7 @@ function switchTab(index) {
|
|||||||
let newJobName = '';
|
let newJobName = '';
|
||||||
|
|
||||||
if (cachedJobTitles.length > 0) {
|
if (cachedJobTitles.length > 0) {
|
||||||
newJobName = cachedJobTitles[0];
|
newJobName = cachedJobTitles[ 0 ];
|
||||||
} else {
|
} else {
|
||||||
// 如果缓存中没有 jobTitles,从其他字段获取
|
// 如果缓存中没有 jobTitles,从其他字段获取
|
||||||
newJobName = currentJobName.value ||
|
newJobName = currentJobName.value ||
|
||||||
@@ -325,10 +335,6 @@ function handlePathDataUpdated(data) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
onLoad(() => {
|
|
||||||
getRemindInfo();
|
|
||||||
});
|
|
||||||
|
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
// 返回本页后,如果之前因为信息缺失未展示内容,则重新检查
|
// 返回本页后,如果之前因为信息缺失未展示内容,则重新检查
|
||||||
if (!showContent.value) {
|
if (!showContent.value) {
|
||||||
@@ -349,52 +355,36 @@ onMounted(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="career-planning-page">
|
<div class="career-planning-page">
|
||||||
<!-- 提醒弹窗 -->
|
<!-- 提醒弹窗 -->
|
||||||
<RemindPopup
|
<RemindPopup ref="remindPopup" :remind-list="remindList" @cancel="handleCancel" @confirm="handleConfirm" />
|
||||||
ref="remindPopup"
|
|
||||||
:remind-list="remindList"
|
|
||||||
@cancel="handleCancel"
|
|
||||||
@confirm="handleConfirm"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 技能详情弹出层 -->
|
<!-- 技能详情弹出层 -->
|
||||||
<SkillDetailPopup
|
<SkillDetailPopup ref="skillDetailPopup" :improvement-skills="selectedJobImprovementSkills" :job-title="selectedJobTitle" :possessed-skills="selectedJobPossessedSkills" />
|
||||||
ref="skillDetailPopup"
|
|
||||||
:job-title="selectedJobTitle"
|
|
||||||
:possessed-skills="selectedJobPossessedSkills"
|
|
||||||
:improvement-skills="selectedJobImprovementSkills"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 页面内容 -->
|
<!-- 页面内容 -->
|
||||||
<div class="page-content" v-if="showContent">
|
<div v-if="showContent" class="page-content">
|
||||||
<!-- #ifdef MP-WEIXIN -->
|
<!-- #ifdef MP-WEIXIN -->
|
||||||
<!-- 小程序背景图片 -->
|
<!-- 小程序背景图片 -->
|
||||||
<image class="mp-background" src="/static/icon/background2.png" mode="aspectFill"></image>
|
<image class="mp-background" mode="aspectFill" src="/static/icon/background2.png"></image>
|
||||||
<!-- #endif -->
|
<!-- #endif -->
|
||||||
|
|
||||||
<!-- 头部区域 -->
|
<!-- 头部区域 -->
|
||||||
<PageHeader
|
<PageHeader :active-tab="activeTab" @tab-change="switchTab" @search-click="handleSearchClick" @menu-click="handleMenuClick" @more-click="handleMoreClick" />
|
||||||
:active-tab="activeTab"
|
|
||||||
@tab-change="switchTab"
|
|
||||||
@search-click="handleSearchClick"
|
|
||||||
@menu-click="handleMenuClick"
|
|
||||||
@more-click="handleMoreClick"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 内容区域 -->
|
<!-- 内容区域 -->
|
||||||
<scroll-view scroll-y class="content-scroll">
|
<scroll-view class="content-scroll" scroll-y>
|
||||||
<CareerRecommend v-if="activeTab === 0"/>
|
<CareerRecommend v-if="activeTab === 0" />
|
||||||
<CareerPath v-else-if="activeTab === 1" />
|
<CareerPath v-else-if="activeTab === 1" />
|
||||||
<SkillDevelopment v-else />
|
<SkillDevelopment v-else />
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 底部导航栏 -->
|
|
||||||
<div class="tabbar-wrapper" v-if="showContent">
|
|
||||||
<CustomTabBar :currentPage="0" />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 底部导航栏 -->
|
||||||
|
<div v-if="showContent" class="tabbar-wrapper">
|
||||||
|
<CustomTabBar :currentPage="0" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@@ -484,6 +474,7 @@ onMounted(() => {
|
|||||||
height: 728rpx;
|
height: 728rpx;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* #endif */
|
/* #endif */
|
||||||
|
|
||||||
.page-content {
|
.page-content {
|
||||||
@@ -495,7 +486,6 @@ onMounted(() => {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.content-scroll {
|
.content-scroll {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ export const useCareerPathStore = defineStore('career-path', () => {
|
|||||||
const fetchData = async () => {
|
const fetchData = async () => {
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getCurrentPosition();
|
const { code, msg, data } = await getCurrentPosition();
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -104,7 +104,7 @@ export const useCareerPathStore = defineStore('career-path', () => {
|
|||||||
const fetchDataPath = async () => {
|
const fetchDataPath = async () => {
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getPath();
|
const { code, msg, data } = await getPath();
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -137,7 +137,7 @@ export const useCareerPathStore = defineStore('career-path', () => {
|
|||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getPathDetail(params);
|
const { code, msg, data } = await getPathDetail(params);
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ export const useCareerRecommendationStore = defineStore('career-recommendation',
|
|||||||
const fetchData = async () => {
|
const fetchData = async () => {
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getProfessions();
|
const { code, msg, data } = await getProfessions();
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -105,7 +105,7 @@ export const useCareerRecommendationStore = defineStore('career-recommendation',
|
|||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getSkillTags(params);
|
const { code, msg, data } = await getSkillTags(params);
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -126,7 +126,7 @@ export const useCareerRecommendationStore = defineStore('career-recommendation',
|
|||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getRecommend(params);
|
const { code, msg, data } = await getRecommend(params);
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ export const useSkillDevelopmentStore = defineStore('skill-development', () => {
|
|||||||
const fetchData = async () => {
|
const fetchData = async () => {
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getCurrentPosition();
|
const { code, msg, data } = await getCurrentPosition();
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -116,7 +116,7 @@ export const useSkillDevelopmentStore = defineStore('skill-development', () => {
|
|||||||
const fetchDataPath = async () => {
|
const fetchDataPath = async () => {
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getPath();
|
const { code, msg, data } = await getPath();
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -149,7 +149,7 @@ export const useSkillDevelopmentStore = defineStore('skill-development', () => {
|
|||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getCareerPath(params);
|
const { code, msg, data } = await getCareerPath(params);
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -195,7 +195,7 @@ export const useSkillDevelopmentStore = defineStore('skill-development', () => {
|
|||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const { code, msg, data } = await getSkillResult(params);
|
const { code, msg, data } = await getSkillResult(params);
|
||||||
if (code !== 0) {
|
if (code !== 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: msg,
|
title: msg,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ let exports = {
|
|||||||
// baseUrl: 'http://cffe7966.natappfree.cc', // 正式环境在济南人才上部署(不要轻易连接)
|
// baseUrl: 'http://cffe7966.natappfree.cc', // 正式环境在济南人才上部署(不要轻易连接)
|
||||||
// baseUrl: 'http://10.160.0.5:8907', // 开发环境
|
// baseUrl: 'http://10.160.0.5:8907', // 开发环境
|
||||||
// baseUrl: 'http://172.20.1.48:8903', // 开发环境
|
// baseUrl: 'http://172.20.1.48:8903', // 开发环境
|
||||||
|
|
||||||
// 方式2:引用根目录config.js的baseUrl(CareerMap分支可选方式,如需使用请注释掉方式1,取消注释此方式)
|
// 方式2:引用根目录config.js的baseUrl(CareerMap分支可选方式,如需使用请注释掉方式1,取消注释此方式)
|
||||||
// baseUrl: config.baseUrl, // 引用根目录config.js的baseUrl,避免重复配置
|
// baseUrl: config.baseUrl, // 引用根目录config.js的baseUrl,避免重复配置
|
||||||
|
|
||||||
// ========== 其他baseUrl配置(备用) ==========
|
// ========== 其他baseUrl配置(备用) ==========
|
||||||
// baseUrl: 'http://172.20.0.177:8903', // 正式环境在济南人才上部署(不要轻易连接)
|
// baseUrl: 'http://172.20.0.177:8903', // 正式环境在济南人才上部署(不要轻易连接)
|
||||||
// baseUrl: 'http://127.0.0.1:8903', // 本地开发
|
// baseUrl: 'http://127.0.0.1:8903', // 本地开发
|
||||||
@@ -27,13 +27,14 @@ let exports = {
|
|||||||
// baseUrl: 'http://10.160.0.5:8903', // 演示环境外网
|
// baseUrl: 'http://10.160.0.5:8903', // 演示环境外网
|
||||||
// baseUrl: 'http://111.34.80.140:8081/prod-api', // 正式环境(不要轻易连接)
|
// baseUrl: 'http://111.34.80.140:8081/prod-api', // 正式环境(不要轻易连接)
|
||||||
// baseUrl: 'http://ks.zhaopinzao8dian.com/api/ks', // 已从根目录config.js引用,不再重复配置
|
// baseUrl: 'http://ks.zhaopinzao8dian.com/api/ks', // 已从根目录config.js引用,不再重复配置
|
||||||
|
|
||||||
// ========== 职业图谱专用baseUrl ==========
|
// ========== 职业图谱专用baseUrl ==========
|
||||||
zytpBaseUrl: 'https://www.xjksly.cn/career-map/api/ks_zytp/admin-api/zytp',
|
zytpBaseUrl: 'https://www.xjksly.cn/career-map/api/ks_zytp/zytp',
|
||||||
|
// zytpBaseUrl: 'http://ks.zhaopinzao8dian.com/api/ks_zytp/zytp',
|
||||||
|
|
||||||
// ========== 用户接口专用baseUrl(其他用户接口使用) ==========
|
// ========== 用户接口专用baseUrl(其他用户接口使用) ==========
|
||||||
userBaseUrl: 'http://ks.zhaopinzao8dian.com/api/ks', // 用户相关接口使用根目录config.js的baseUrl
|
userBaseUrl: 'http://ks.zhaopinzao8dian.com/api/ks', // 用户相关接口使用根目录config.js的baseUrl
|
||||||
|
|
||||||
// ========== appUserInfo接口专用baseUrl ==========
|
// ========== appUserInfo接口专用baseUrl ==========
|
||||||
appUserInfoBaseUrl: 'https://www.xjksly.cn/api/ks', // appUserInfo接口专用,与其他接口路径不一致
|
appUserInfoBaseUrl: 'https://www.xjksly.cn/api/ks', // appUserInfo接口专用,与其他接口路径不一致
|
||||||
|
|
||||||
@@ -50,4 +51,4 @@ let exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default exports
|
export default exports
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ const request = config => {
|
|||||||
const isZytpApi = baseType === 'zytp'
|
const isZytpApi = baseType === 'zytp'
|
||||||
// 从存储中获取微信登录的 token
|
// 从存储中获取微信登录的 token
|
||||||
const token = getToken()
|
const token = getToken()
|
||||||
if (token && !isToken && !isZytpApi) {
|
if (token && !isToken) {
|
||||||
// config.header['Authorization'] = 'Bearer ' + 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJhb0Y4RmJPQWJ6ZVA3NlpzaENyM0tPSEZTbU85U0ZhViIsInVzZXJJZCI6MX0.kPEDm7D8eVvFlwAiUiE57evWaCX5EcSEOq-LEYGTm9Q'
|
// config.header['Authorization'] = 'Bearer ' + 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiJzeXNfdXNlcjoxIiwicm5TdHIiOiJhb0Y4RmJPQWJ6ZVA3NlpzaENyM0tPSEZTbU85U0ZhViIsInVzZXJJZCI6MX0.kPEDm7D8eVvFlwAiUiE57evWaCX5EcSEOq-LEYGTm9Q'
|
||||||
config.header['Authorization'] = 'Bearer ' + token
|
config.header['Authorization'] = 'Bearer ' + token
|
||||||
}
|
}
|
||||||
@@ -47,7 +47,7 @@ const request = config => {
|
|||||||
requestUrl += (requestUrl.includes('?') ? '&' : '?') + url
|
requestUrl += (requestUrl.includes('?') ? '&' : '?') + url
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 如果是 getJobPathById 接口,打印完整 URL(调试用,生产环境可注释)
|
// 如果是 getJobPathById 接口,打印完整 URL(调试用,生产环境可注释)
|
||||||
// if (config.url && config.url.includes('getJobPathById')) {
|
// if (config.url && config.url.includes('getJobPathById')) {
|
||||||
// console.log('[请求URL] getJobPathById 完整请求URL:', requestUrl);
|
// console.log('[请求URL] getJobPathById 完整请求URL:', requestUrl);
|
||||||
@@ -55,7 +55,7 @@ const request = config => {
|
|||||||
// console.log('[请求URL] 接口路径:', config.url);
|
// console.log('[请求URL] 接口路径:', config.url);
|
||||||
// console.log('[请求URL] 请求参数:', config.params);
|
// console.log('[请求URL] 请求参数:', config.params);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// 如果是 recommendJob 接口,打印详细信息(调试用,生产环境可注释)
|
// 如果是 recommendJob 接口,打印详细信息(调试用,生产环境可注释)
|
||||||
// if (config.url && config.url.includes('recommendJob')) {
|
// if (config.url && config.url.includes('recommendJob')) {
|
||||||
// console.log('[请求URL] recommendJob 完整请求URL:', requestUrl);
|
// console.log('[请求URL] recommendJob 完整请求URL:', requestUrl);
|
||||||
@@ -66,7 +66,7 @@ const request = config => {
|
|||||||
// console.log('[请求URL] 请求数据 (data):', config.data);
|
// console.log('[请求URL] 请求数据 (data):', config.data);
|
||||||
// console.log('[请求URL] Content-Type:', config.header?.['content-type']);
|
// console.log('[请求URL] Content-Type:', config.header?.['content-type']);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
uni.request({
|
uni.request({
|
||||||
method: config.method || 'get',
|
method: config.method || 'get',
|
||||||
|
|||||||
Reference in New Issue
Block a user