Skip to content

Commit 9dbe7cf

Browse files
webaddkevinjiangchunfu
authored andcommitted
小功能优化8 (didi#371)
* refactor: 去除重复元素 * feat: edit 布局优化 * style: 题目大纲滚动时固定tab-header --------- Co-authored-by: jiangchunfu <[email protected]>
1 parent 15d93ab commit 9dbe7cf

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

web/src/management/pages/analysis/AnalysisPage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { analysisType } from '@/management/config/analysisConfig'
4141
.right {
4242
width: 100%;
4343
height: 100%;
44-
min-width: 1160px;
44+
min-width: 1300px;
4545
display: flex;
4646
flex-direction: column;
4747
overflow: hidden;

web/src/management/pages/edit/index.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ onMounted(async () => {
6060
}
6161
6262
.right {
63-
min-width: 1160px;
63+
min-width: 1300px;
6464
height: 100%;
6565
padding-left: 80px;
6666
overflow: hidden;

web/src/management/pages/edit/modules/questionModule/CatalogPanel.vue

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,19 @@ const tabSelected = ref<string>('0')
1818
</script>
1919
<style lang="scss" scoped>
2020
.tab-box {
21-
width: 300px;
21+
width: 360px;
2222
height: 100%;
2323
box-shadow: none;
2424
border: none;
25-
overflow-y: auto;
25+
display: flex;
26+
flex-direction: column;
2627
:deep(.el-tabs__nav) {
2728
width: 100%;
2829
}
30+
:deep(.el-tabs__content) {
31+
flex: 1;
32+
overflow-y: auto;
33+
}
2934
:deep(.el-tabs__item) {
3035
text-align: center;
3136
}

web/src/management/pages/edit/modules/resultModule/CatalogPanel.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const handleChangePreview = (data: any) => {
4545
</script>
4646
<style lang="scss" scoped>
4747
.tab-box {
48-
width: 300px;
48+
width: 360px;
4949
height: 100%;
5050
box-shadow: none;
5151
border: none;

web/src/management/pages/edit/modules/skinModule/CatalogPanel.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const changePreset = (banner: any) => {
8787
</script>
8888
<style lang="scss" scoped>
8989
.tab-box {
90-
width: 300px;
90+
width: 360px;
9191
height: 100%;
9292
box-shadow: none;
9393
border: none;

web/src/management/pages/edit/pages/edit/index.vue

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ watch(
5555
.navbar-tab {
5656
position: absolute;
5757
top: 10px;
58+
left: 50%;
59+
transform: translate(-50%);
5860
cursor: pointer;
5961
:deep(.el-radio-button__original-radio + .el-radio-button__inner) {
6062
font-size: 12px;

0 commit comments

Comments
 (0)