Newer
Older
KaiFengPC / src / views / sponeScreen / chengguanweiScreen / mainIndex.vue
@zhangdeliang zhangdeliang 14 days ago 683 bytes update
<template>
  <!-- 3800*866 城管委-->
  <div class="cgwFivthScreen">
    3800*866 城管委
    <img src="@/assets/newImgs/HMScreen/main.png" alt="" title="跳转业务系统" class="mainYW" @click="goSystem" />
  </div>
</template>

<script setup>
const { proxy } = getCurrentInstance();

// 跳转业务系统
function goSystem() {
  router.push({ path: '/index' });
}

onMounted(() => {});
</script>

<style lang="scss" scoped>
.cgwFivthScreen {
  // prettier-ignore
  width:3800PX;
  height: 866px;
  background: #010e22;
  overflow: auto;
  position: relative;
  .mainYW {
    width: 50px;
    height: 44px;
    cursor: pointer;
    margin: 10px 10px 0px 30px;
  }
}
</style>