Merge remote-tracking branch 'origin/master'

This commit is contained in:
XaoLi717 2024-08-21 09:14:00 +08:00
commit fa4344d967
4 changed files with 87 additions and 4 deletions

View File

@ -140,10 +140,10 @@
<img src="/logo.gif" class="app-loading-logo" alt="Logo" /> <img src="/logo.gif" class="app-loading-logo" alt="Logo" />
<div class="app-loading-title">%VITE_APP_TITLE%</div> <div class="app-loading-title">%VITE_APP_TITLE%</div>
</div> </div>
<div class="app-loading-item"> <!-- <div class="app-loading-item">-->
<div class="app-loading-outter"></div> <!-- <div class="app-loading-outter"></div>-->
<div class="app-loading-inner"></div> <!-- <div class="app-loading-inner"></div>-->
</div> <!-- </div>-->
</div> </div>
</div> </div>
</div> </div>

View File

@ -0,0 +1,29 @@
<template>
<div>
<!-- <h1>嵌入的外部页面</h1>-->
<iframe
:src="url"
width="100%"
height="600px"
frameborder="0"
allowfullscreen
></iframe>
</div>
</template>
<script>
export default {
data() {
return {
url: 'http://192.168.75.101:3210/chat?agent' // URL
};
}
};
</script>
<style scoped>
/* 你可以根据需要自定义样式 */
iframe {
border: none;
}
</style>

View File

@ -0,0 +1,27 @@
<template>
<div class="container">
<h1>没有在本版本中布置该功能</h1>
</div>
</template>
<script>
export default {
name: 'UnderDevelopment',
};
</script>
<style scoped>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background-color: #f0f0f0;
}
h1 {
font-size: 2rem;
color: #333;
}
</style>

View File

@ -0,0 +1,27 @@
<template>
<div class="container">
<h1>没有在本版本中布置该功能</h1>
</div>
</template>
<script>
export default {
name: 'UnderDevelopment',
};
</script>
<style scoped>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background-color: #f0f0f0;
}
h1 {
font-size: 2rem;
color: #333;
}
</style>