首页样式问题优化
This commit is contained in:
parent
009462b26d
commit
00dcf192e5
|
|
@ -26,12 +26,9 @@ declare module 'vue' {
|
|||
ElImage: typeof import('element-plus/es')['ElImage']
|
||||
ElInput: typeof import('element-plus/es')['ElInput']
|
||||
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
||||
ElMenu: typeof import('element-plus/es')['ElMenu']
|
||||
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
|
||||
ElOption: typeof import('element-plus/es')['ElOption']
|
||||
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||
ElPopconfirm: typeof import('element-plus/es')['ElPopconfirm']
|
||||
ElProgress: typeof import('element-plus/es')['ElProgress']
|
||||
ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
|
||||
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
|
||||
ElRow: typeof import('element-plus/es')['ElRow']
|
||||
|
|
@ -39,7 +36,6 @@ declare module 'vue' {
|
|||
ElTable: typeof import('element-plus/es')['ElTable']
|
||||
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
||||
ElTag: typeof import('element-plus/es')['ElTag']
|
||||
ElUpload: typeof import('element-plus/es')['ElUpload']
|
||||
EquipCard: typeof import('./src/components/equipCard.vue')['default']
|
||||
EquipCardHall: typeof import('./src/components/equipCardHall/index.vue')['default']
|
||||
EquipCardNew: typeof import('./src/components/equipCardNew/index.vue')['default']
|
||||
|
|
|
|||
|
|
@ -163,32 +163,27 @@ const onSelectItem = (type: number) => {
|
|||
{{ child.name }}
|
||||
</span>
|
||||
|
||||
<span
|
||||
style="
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
"
|
||||
>
|
||||
<span style="display: flex; flex: 1; flex-wrap: wrap">
|
||||
<a
|
||||
v-for="son in child.children"
|
||||
:key="son.id"
|
||||
style="font-size: 14px; font-weight: normal"
|
||||
@click="onSharedHall(3, son.id)"
|
||||
>
|
||||
{{ son.name }}
|
||||
</a>
|
||||
</span>
|
||||
|
||||
<!-- <span style="display: flex; flex: 1">
|
||||
<span
|
||||
v-for="son in child.children"
|
||||
:key="son.id"
|
||||
style="
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
"
|
||||
style="font-size: 14px; font-weight: normal"
|
||||
@click="onSharedHall(3, son.id)"
|
||||
>
|
||||
<!-- {{ son.name }} -->
|
||||
{{ son.name }} -->
|
||||
|
||||
<span style="width: 30%">
|
||||
{{ son.name }}
|
||||
</span>
|
||||
|
||||
<span
|
||||
<!-- <span
|
||||
style="
|
||||
width: 70%;
|
||||
display: flex;
|
||||
|
|
@ -209,9 +204,9 @@ const onSelectItem = (type: number) => {
|
|||
>
|
||||
{{ son_1.name }}
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span> -->
|
||||
<!-- </span>
|
||||
</span> -->
|
||||
|
||||
<!-- <span>{{ child.name }}</span>
|
||||
<span>
|
||||
|
|
@ -445,11 +440,12 @@ const onSelectItem = (type: number) => {
|
|||
top: 0;
|
||||
left: 200px;
|
||||
width: 915px;
|
||||
min-height: 100%;
|
||||
max-height: 100%;
|
||||
background-color: #f5f4f4;
|
||||
background-color: #fff;
|
||||
z-index: 999;
|
||||
// opacity: 0.9;
|
||||
border: 1px solid #333;
|
||||
border: 1px solid #eee;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
|
||||
|
|
@ -468,6 +464,11 @@ const onSelectItem = (type: number) => {
|
|||
margin: 0 15px;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: #333;
|
||||
&:hover {
|
||||
color: #1abc9c;
|
||||
border-bottom: 1px solid #1abc9c !important;
|
||||
}
|
||||
}
|
||||
|
||||
.last-level {
|
||||
|
|
|
|||
Loading…
Reference in New Issue