保安后台
This commit is contained in:
parent
009382291c
commit
577a7553fa
|
@ -32,7 +32,7 @@ router.beforeEach(async (to, from, next) => {
|
||||||
// 不在白名单内需要查看是否携带token 没有token需要返回登录页进行登录
|
// 不在白名单内需要查看是否携带token 没有token需要返回登录页进行登录
|
||||||
if (!userStore.getTokenInfo?.value) {
|
if (!userStore.getTokenInfo?.value) {
|
||||||
await message.warn('未找到token,请重新登陆!')
|
await message.warn('未找到token,请重新登陆!')
|
||||||
return next('/enterprise');
|
return next('/login');
|
||||||
}
|
}
|
||||||
//放行
|
//放行
|
||||||
return next();
|
return next();
|
||||||
|
|
|
@ -252,7 +252,7 @@ const enterprisesUnitIdList = ref<SelectNodeVo<string>[]>([])
|
||||||
const enterprisesUnitId = ref('')
|
const enterprisesUnitId = ref('')
|
||||||
|
|
||||||
const isRecruitSecurityHidden = ref<boolean>(false)
|
const isRecruitSecurityHidden = ref<boolean>(false)
|
||||||
const idNumberDisabled = ref<boolean>(false)
|
const idNumberDisabled = ref<boolean>(true)
|
||||||
|
|
||||||
// 切换options
|
// 切换options
|
||||||
const netType = computed(() => {
|
const netType = computed(() => {
|
||||||
|
@ -329,7 +329,7 @@ const formItemOptions = ref<FormProMaxItemOptions<serviceProjectSaveOrUpdatePara
|
||||||
outsourceName:{
|
outsourceName:{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '外包公司名称',
|
label: '外包公司名称',
|
||||||
hidden:idNumberDisabled as any
|
hidden:idNumberDisabled as any,
|
||||||
},
|
},
|
||||||
isFiling:{
|
isFiling:{
|
||||||
type: 'radioGroup',
|
type: 'radioGroup',
|
||||||
|
|
Loading…
Reference in New Issue