refactor(系统设置): 优化扫码登录页面
This commit is contained in:
parent
d083774987
commit
6690a55194
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<a-radio-group v-model:active-key="activeName" type="button" class="tabPlatform" @change="handleClick">
|
<a-radio-group v-if="activeName != ''" v-model="activeName" type="button" class="tabPlatform" @change="handleClick">
|
||||||
<a-radio
|
<a-radio
|
||||||
v-for="item of orgOptions"
|
v-for="item of orgOptions"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
|
@ -62,20 +62,22 @@
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
tabName: string;
|
tabName: string;
|
||||||
}>();
|
}>();
|
||||||
const initActive = () => {
|
|
||||||
for (let i = 0; i < orgOptions.value.length; i++) {
|
|
||||||
const key = orgOptions.value[i].value;
|
|
||||||
if (props.tabName === key) {
|
|
||||||
activeName.value = key;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
function handleClick(val: string | number | boolean) {
|
function handleClick(val: string | number | boolean) {
|
||||||
if (typeof val === 'string') {
|
if (typeof val === 'string') {
|
||||||
activeName.value = val;
|
activeName.value = val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const initActive = () => {
|
||||||
|
for (let i = 0; i < orgOptions.value.length; i++) {
|
||||||
|
const key = orgOptions.value[i].value;
|
||||||
|
if (props.tabName === key) {
|
||||||
|
nextTick(() => {
|
||||||
|
handleClick(key);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
async function initPlatformInfo() {
|
async function initPlatformInfo() {
|
||||||
try {
|
try {
|
||||||
const res = await getPlatformParamUrl();
|
const res = await getPlatformParamUrl();
|
||||||
|
@ -83,6 +85,7 @@
|
||||||
label: e.name,
|
label: e.name,
|
||||||
value: e.id,
|
value: e.id,
|
||||||
}));
|
}));
|
||||||
|
initActive();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
console.log(error);
|
console.log(error);
|
||||||
|
@ -90,7 +93,6 @@
|
||||||
}
|
}
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
initPlatformInfo();
|
initPlatformInfo();
|
||||||
initActive();
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue