1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <div id="header-1">
- <el-row>
- <el-col :span="24" class="main">
- <el-col :span="8" class="one">
- <span>{{ siteInfo.zhTitle }}</span>
- </el-col>
- <el-col :span="16" class="two">
- <el-button
- size="small"
- plain
- v-for="(item, index) in moduleList"
- :key="index"
- @click="modulePath(item)"
- :class="[active == item.active ? 'active' : '']"
- >{{ item.name }}</el-button
- >
- <el-dropdown @command="toDrop">
- <el-button type="danger" plain>
- {{ user && user._id ? user.name || user.unit_name || user.nick_name : '暂无昵称' }}
- <i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu>
- <el-dropdown-item icon="el-icon-user" command="center">个人中心</el-dropdown-item>
- <el-dropdown-item icon="el-icon-switch-button" command="logout">退出登录</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup lang="ts">
- import { ref } from 'vue';
- import type { Ref } from 'vue';
- import { studio_style_Info } from '../../../layout/site';
- // import { studio_style_Info } from '@common/src/layout/site';
- let siteInfo = studio_style_Info.webInfo;
- let active: 3;
- let moduleList: Ref<any[]> = ref([]);
- let user: Ref<{ _id: string; name: string; unit_name: string; nick_name: string }> = ref({ _id: '', name: '', unit_name: '', nick_name: '' });
- const toDrop = () => {};
- const modulePath = (value: any) => {
- console.log(value);
- };
- </script>
- <style lang="scss" scoped>
- .main {
- display: flex;
- flex-direction: row;
- .one {
- span {
- display: inline-block;
- background-color: #ffc000;
- padding: 8px 10px;
- border: 1px solid #ffffff;
- }
- }
- .two {
- text-align: right;
- button {
- margin: 0 0 0 10px;
- }
- .el-button {
- margin: 0 0 0 10px;
- }
- .active {
- color: #07c4a8;
- }
- }
- }
- </style>
|