冲突
@@ -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>
|
||||
@@ -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
|
||||
}
|
||||
@@ -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)
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 469 B |
|
Before Width: | Height: | Size: 469 B |
@@ -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')
|
||||
|
||||
@@ -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>
|
||||