Newer
Older
KaiFengPC / src / views / sponeScreen / chengguanweiScreen / mainIndex.vue
@zhangdeliang zhangdeliang on 13 Dec 683 bytes update
  1. <template>
  2. <!-- 3800*866 城管委-->
  3. <div class="cgwFivthScreen">
  4. 3800*866 城管委
  5. <img src="@/assets/newImgs/HMScreen/main.png" alt="" title="跳转业务系统" class="mainYW" @click="goSystem" />
  6. </div>
  7. </template>
  8.  
  9. <script setup>
  10. const { proxy } = getCurrentInstance();
  11.  
  12. // 跳转业务系统
  13. function goSystem() {
  14. router.push({ path: '/index' });
  15. }
  16.  
  17. onMounted(() => {});
  18. </script>
  19.  
  20. <style lang="scss" scoped>
  21. .cgwFivthScreen {
  22. // prettier-ignore
  23. width:3800PX;
  24. height: 866px;
  25. background: #010e22;
  26. overflow: auto;
  27. position: relative;
  28. .mainYW {
  29. width: 50px;
  30. height: 44px;
  31. cursor: pointer;
  32. margin: 10px 10px 0px 30px;
  33. }
  34. }
  35. </style>