Compare commits

..

No commits in common. "92b120380e3dc3600704c3761f327e0b9e83265c" and "9b3c3784a710b0d8feeb49f56d3a86a71211231e" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ router.beforeEach(async (to, from, next) => {
// 不在白名单内需要查看是否携带token 没有token需要返回登录页进行登录
if (!userStore.getTokenInfo?.value) {
await message.warn('未找到token请重新登陆!')
return next('/login');
return next('/enterprise');
}
//放行
return next();

View File

@ -252,7 +252,7 @@ const enterprisesUnitIdList = ref<SelectNodeVo<string>[]>([])
const enterprisesUnitId = ref('')
const isRecruitSecurityHidden = ref<boolean>(false)
const idNumberDisabled = ref<boolean>(true)
const idNumberDisabled = ref<boolean>(false)
// options
const netType = computed(() => {
@ -329,7 +329,7 @@ const formItemOptions = ref<FormProMaxItemOptions<serviceProjectSaveOrUpdatePara
outsourceName:{
type: 'input',
label: '外包公司名称',
hidden:idNumberDisabled as any,
hidden:idNumberDisabled as any
},
isFiling:{
type: 'radioGroup',