金融产品设计及数字化营销沙盘
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.9 KiB

2 years ago
<template>
2 years ago
<div class="flex justify-between items-center w-full py-6 px-5 overflow-hidden bg-transparent">
2 years ago
<logo :collapse="collapse" />
2 years ago
<div>
<el-button @click="switchRole(41)">切换产品经理</el-button>
<el-button @click="switchRole(42)">切换风控经理</el-button>
<el-button @click="switchRole(43)">切换专家委员会</el-button>
2 years ago
</div>
2 years ago
<div class="inline-flex items-center">
<img class="mr-3 cursor-pointer"
src="@/assets/images/2.png"
alt="" />
<img class="mr-3 cursor-pointer"
src="@/assets/images/3.png"
alt="" />
<img class="cursor-pointer"
src="@/assets/images/4.png"
alt="" />
</div>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted, computed } from 'vue';
2 years ago
import { useRouter } from 'vue-router';
2 years ago
import { setCookieLocale, getSessionSiteId, setSessionSiteId } from '@/utils/common';
import { toTree, flatTree } from '@/utils/tree';
// import { querySiteList } from '@/api/bank';
2 years ago
import { currentUser, perm, logout } from '@/store/useCurrentUser';
import { appState, toggleSidebar } from '@/store/useAppState';
import Logo from './Logo.vue';
2 years ago
const router = useRouter();
2 years ago
const siteId = ref<number | null>(getSessionSiteId());
const siteList = ref<any[]>([]);
const site = computed(() => siteList.value.find((item) => item.id === siteId.value));
const fetchSiteList = async () => {
// siteList.value = flatTree(toTree(await querySiteList()));
// if (siteId.value == null) {
// siteId.value = siteList.value[0]?.id;
// }
2 years ago
};
2 years ago
const switchRole = (type: number) => {
router.push(`/product?type=0&i=1&role=${type}`);
2 years ago
};
onMounted(() => {
// fetchSiteList();
2 years ago
});
const handleLogout = () => {
logout();
// router.push(`/login?redirect=${route.fullPath}`);
window.location.reload();
};
const passwordFormVisible = ref<boolean>(false);
</script>
<style lang="scss" scoped></style>