feat:按钮优化

This commit is contained in:
weifashi 2023-08-17 17:02:46 +08:00
parent 28234f64ec
commit 666767539d
2 changed files with 15 additions and 4 deletions

View File

@ -637,7 +637,7 @@ export default {
if (this.routeName === 'manage-project' && !/^\d+$/.test(this.$route.params.projectId)) { if (this.routeName === 'manage-project' && !/^\d+$/.test(this.$route.params.projectId)) {
return true; return true;
} }
return ['manage-dashboard', 'manage-calendar', 'manage-messenger', 'manage-file', 'manage-application'].includes(this.routeName) return ['manage-dashboard','manage-messenger', 'manage-application'].includes(this.routeName)
}, },
}, },

View File

@ -229,6 +229,14 @@
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px; gap: 8px;
.ivu-btn{
min-width: 120px;
height: 38px;
line-height: 36px;
@media (max-width: 500px) {
width: 50%;
}
}
} }
} }
@ -237,7 +245,10 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
margin: 0 -30px;
.ivu-tabs-bar{
padding: 0 10px;
}
.ivu-tabs-content { .ivu-tabs-content {
height: 100%; height: 100%;
flex: 1; flex: 1;
@ -321,10 +332,10 @@
.aibot-warp { .aibot-warp {
position: relative; position: relative;
height: 100%; height: 100%;
.ivu-form { .ivu-form {
padding: 0;
overflow: hidden; overflow: hidden;
padding: 0;
margin: 0 30px;
} }
} }