吉安感知网项目-前端
罗广辉
2026-01-26 beb95fb5fc166804056abafd70fc01ac27de7621
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!--
 * @Author       : yuan
 * @Date         : 2025-10-13 15:10:00
 * @LastEditors  : yuan
 * @LastEditTime : 2025-10-13 15:23:32
 * @FilePath     : \src\layout\webViewWrapper\index.vue
 * @Description  :
 * Copyright 2025 OBKoro1, All Rights Reserved.
 * 2025-10-13 15:10:00
-->
<template>
    <div class="container">
        <router-view></router-view>
    </div>
</template>
 
<script setup>
</script>
 
<style lang="scss" scoped>
.container {
    width: 100%;
    height: 100%;
    background-image: url('@/appDataSource/appwork/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
</style>