style: 优化部分样式

This commit is contained in:
Xu Zhimeng 2023-05-19 09:18:48 +08:00
parent 14b539bbef
commit efe44ac59f
5 changed files with 13 additions and 7 deletions

View File

@ -101,6 +101,7 @@ export default {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
line-height: normal; line-height: normal;
user-select: none;
&-selected, &-selected,
&-active { &-active {
background-color: rgba(9, 255, 212, 0.3) !important; background-color: rgba(9, 255, 212, 0.3) !important;

View File

@ -666,7 +666,7 @@
border-top: 1px solid rgba(12, 235, 201, .3); border-top: 1px solid rgba(12, 235, 201, .3);
border-bottom: 1px solid rgba(12, 235, 201, .3); border-bottom: 1px solid rgba(12, 235, 201, .3);
margin-bottom: 16px; margin-bottom: 16px;
padding: 5px 10px; padding: 5px 10px 8px;
background-color: rgba(12, 235, 201, .05); background-color: rgba(12, 235, 201, .05);
overflow: auto; overflow: auto;
.ant-menu { .ant-menu {

View File

@ -174,6 +174,12 @@ body {
&-year-select-content { &-year-select-content {
color: #fff; color: #fff;
} }
&-month {
&:hover {
color: #fff !important;
background-color: @primary-color;
}
}
} }
} }

View File

@ -293,7 +293,7 @@ export default {
] ]
}, },
style: { style: {
width: '600px' width: '610px'
} }
} }
] ]

View File

@ -76,11 +76,11 @@
<img src="@/assets/images/global/edit.png" alt="" /> <img src="@/assets/images/global/edit.png" alt="" />
Edit Edit
</a-button> </a-button>
<a-button @click="onDel" type="primary"> <a-button type="primary">
<img src="@/assets/images/global/import.png" alt="" /> <img src="@/assets/images/global/import.png" alt="" />
Import Import
</a-button> </a-button>
<a-button @click="onDel" type="primary"> <a-button type="primary">
<img src="@/assets/images/global/export.png" alt="" /> <img src="@/assets/images/global/export.png" alt="" />
Export Export
</a-button> </a-button>
@ -419,11 +419,10 @@ export default {
toUserId, toUserId,
stationIds: [this.dragItem.stationId] stationIds: [this.dragItem.stationId]
}) })
if(success) { if (success) {
this.$message.success('Change Success') this.$message.success('Change Success')
this.getList() this.getList()
} } else {
else {
this.$message.error('Change Fail') this.$message.error('Change Fail')
} }
} catch (error) { } catch (error) {