Compare commits

..

No commits in common. "b73112e741f39861e7953068640ed98b14e7f728" and "e429b50ed5602428115be2ec59da238d8f3d40bb" have entirely different histories.

5 changed files with 24 additions and 71 deletions

View File

@ -1,16 +1,13 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<head> <meta charset="UTF-8">
<meta charset="UTF-8"> <link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.ico"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vite App</title>
<title>黑龙江东印科技有限公司</title> </head>
</head> <body>
<div id="app"></div>
<body> <script type="module" src="/src/main.ts"></script>
<div id="app"></div> </body>
<script type="module" src="/src/main.ts"></script> </html>
</body>
</html>

View File

@ -4,12 +4,7 @@
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import Index from "./pages/index.vue"; import Index from './pages/index.vue'
</script> </script>
<style scoped lang="less"> <style scoped></style>
.box {
width: 100%;
overflow-x: hidden;
}
</style>

View File

@ -1,37 +0,0 @@
<template>
<div class="app-container">
<div class="container">
<div class="logo-container">
<img
width="136"
class="logo"
src="http://dykj.co/logo.png"
alt="logo"
/>
</div>
<div></div>
</div>
<div>1</div>
</div>
</template>
<script setup lang="ts"></script>
<style scoped lang="less">
.app-container {
background: radial-gradient(circle, #2aae67, #fff);
width: 100%;
height: 70px;
display: flex;
justify-content: center;
.container {
width: 70%;
display: flex;
.logo-container {
img {
margin-top: -35px;
}
}
}
}
</style>

View File

@ -1,17 +1,15 @@
<template> <template>
<div> <t-space direction="vertical">
<t-layout> <div>
<t-header> <t-layout>
<hesder-top /> <t-header>Header</t-header>
</t-header> <t-content>Content</t-content>
<t-content>Content</t-content> <t-footer>Footer</t-footer>
<t-footer>Footer</t-footer> </t-layout>
</t-layout> </div>
</div> </t-space>
</template> </template>
<script setup lang="ts"> <script setup lang="ts"></script>
import hesderTop from "./header/index.vue";
</script>
<style scoped></style> <style scoped></style>

View File

@ -1,6 +1,6 @@
{ {
"extends": "@vue/tsconfig/tsconfig.dom.json", "extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue" ], "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"], "exclude": ["src/**/__tests__/*"],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,