| | |
| | | * Copyright (c) 2024 by shuishen, All Rights Reserved. |
| | | --> |
| | | <script setup> |
| | | import { getAssetsFile } from 'utils/utils' |
| | | const loginOutBg = getAssetsFile('back.png', '/images') |
| | | |
| | | import { useRouter, useRoute } from 'vue-router' |
| | | let router = useRouter() |
| | | import { useRouterStore } from 'store/router' |
| | |
| | | |
| | | <template> |
| | | <div class="title">{{ data.companyInfo.name }}</div> |
| | | <div class="menu-box"> |
| | | <!-- <div class="menu-box"> |
| | | <div :class="{ on: buttonIndex == 1 }" class="sub-menu" @click="handleClick(1)"> 基本信息 </div> |
| | | <div :class="{ on: buttonIndex == 2 }" class="sub-menu" @click="handleClick(2)"> 应急物质 </div> |
| | | <div :class="{ on: buttonIndex == 3 }" class="sub-menu" @click="handleClick(3)"> 救援队伍 </div> |
| | | </div> |
| | | </div> --> |
| | | <div class="back-hoem"> |
| | | <div class="center-info cursor-p" @click="goHome()">返回首页 </div> |
| | | <!-- <div class="center-info cursor-p" @click="goHome()">返回</div> --> |
| | | <div class="center-info cursor-p" @click="goHome()"> |
| | | <img :src="loginOutBg" class="img" /> |
| | | <span>返回</span> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | right: 30px; |
| | | |
| | | .center-info { |
| | | width: 120px; |
| | | height: 40px; |
| | | line-height: 40px; |
| | | border: none; |
| | | border-radius: 20px; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | color: #fff; |
| | | background-color: transparent; |
| | | font-size: 20px; |
| | | text-align: center; |
| | | background-image: url(/images/mode-tab.png); |
| | | font-size: 13px; |
| | | } |
| | | |
| | | .center-info span { |
| | | margin-right: 10px; |
| | | } |
| | | |
| | | .img { |
| | | width: 36px; |
| | | height: 36px; |
| | | // margin-right: 5px; |
| | | } |
| | | |
| | | .center-info:hover { |
| | | background-color: #3c5e8f; |
| | | border-radius: 20px; |
| | | } |
| | | } |
| | | </style> |