This commit is contained in:
zhaotiantian
2023-11-21 18:31:48 +08:00
35 changed files with 507 additions and 311 deletions
+3 -2
View File
@@ -5,6 +5,7 @@ import index from './views/index.vue'
<template>
<index/>
</template>
<style lang="less" scoped>
<style lang="less" src="./assets/less/index.less">
</style>
<style lang="less" scoped>
</style>
+21
View File
@@ -1,3 +1,4 @@
<<<<<<< HEAD
.type-time{
text-align: right;
padding-right: 4%;
@@ -25,4 +26,24 @@
.unSelect{
color: #A3A4A4;
}
=======
*::-webkit-scrollbar {
width: 12px;
height: 12px;
}
*::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
*::-webkit-scrollbar-corner {
background-color: transparent;
}
*::-webkit-scrollbar-thumb {
border: 4px solid rgba(0, 0, 0, 0);
height: 6px;
border-radius: 25px;
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.30);
>>>>>>> 330154ae420452f6810cf7e7b439383c13ab5114
}
+12
View File
@@ -0,0 +1,12 @@
import type {App} from 'vue';
import {
Form,
Input,
Button,
} from 'ant-design-vue';
export default function registerGlobComp(app: App) {
app.use(Button)
.use(Form)
.use(Input)
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 469 B

+5 -2
View File
@@ -1,4 +1,7 @@
import {createApp} from 'vue'
import App from './App.vue'
import App from './App.vue';
import './assets/less/index.less';
createApp(App).mount('#app')
import registerGlobComp from './assets/ts/antd.ts'
const app=createApp(App)
registerGlobComp(app);
app.mount('#app')
+4 -1
View File
@@ -59,7 +59,6 @@ import ChinaMap from '../components/chinaMap/chinaMap.vue'
text-align: center;
border-right: 1px solid red;
}
}
.body-d {
@@ -92,5 +91,9 @@ import ChinaMap from '../components/chinaMap/chinaMap.vue'
padding: 10px;
}
}
.body-d-middle{
display: flex;
flex-direction: column;
}
}
</style>