yangyin
2024-11-08 c2c7d3c66be938892edaa77d96d8af7f98a66c6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
    <div class="h-[50px] bg-white mx-7 mt-4 rounded-2xl px-2 flex-items-center justify-between">
        <div class="bg-[#f7f8fc] rounded-2xl text-blue-600 font-bold flex-items-center space-x-1 py-[8px] px-[8px]">
            <img src="/static/images/logo/logoWithNoName.png" class="size-[28px]" /> <span>WI水务智能</span>
        </div>
        <div class="bg-blue-600 hover:bg-blue-500 cursor-pointer text-white py-[8px] px-[16px] rounded-2xl" @click="gotoMainSite">
            前往WI水务
        </div>
    </div>
</template>
 
<script setup lang="ts">
const gotoMainSite = () => {
    window.location.href = 'https://wi.beng35.com/#/home';
};
</script>
<style scoped lang="scss"></style>