diff --git a/public/image/mainImg/img1.png b/public/image/mainImg/img1.png deleted file mode 100644 index c3ab7ee8..00000000 Binary files a/public/image/mainImg/img1.png and /dev/null differ diff --git a/public/image/mainImg/img10.png b/public/image/mainImg/img10.png deleted file mode 100644 index ee511ac7..00000000 Binary files a/public/image/mainImg/img10.png and /dev/null differ diff --git a/public/image/mainImg/img2.png b/public/image/mainImg/img2.png deleted file mode 100644 index 4bb34288..00000000 Binary files a/public/image/mainImg/img2.png and /dev/null differ diff --git a/public/image/mainImg/img3.png b/public/image/mainImg/img3.png deleted file mode 100644 index 2d340f00..00000000 Binary files a/public/image/mainImg/img3.png and /dev/null differ diff --git a/public/image/mainImg/img4.png b/public/image/mainImg/img4.png deleted file mode 100644 index 00645bf7..00000000 Binary files a/public/image/mainImg/img4.png and /dev/null differ diff --git a/public/image/mainImg/img5.png b/public/image/mainImg/img5.png deleted file mode 100644 index 626f3bb4..00000000 Binary files a/public/image/mainImg/img5.png and /dev/null differ diff --git a/public/image/mainImg/img6.png b/public/image/mainImg/img6.png deleted file mode 100644 index fe3f039c..00000000 Binary files a/public/image/mainImg/img6.png and /dev/null differ diff --git a/public/image/mainImg/img7.png b/public/image/mainImg/img7.png deleted file mode 100644 index ab2a4085..00000000 Binary files a/public/image/mainImg/img7.png and /dev/null differ diff --git a/public/image/mainImg/img8.png b/public/image/mainImg/img8.png deleted file mode 100644 index 0551c12c..00000000 Binary files a/public/image/mainImg/img8.png and /dev/null differ diff --git a/src/assets/style/style.css b/src/assets/style/style.css index 2d619abf..c0dbc2e1 100644 --- a/src/assets/style/style.css +++ b/src/assets/style/style.css @@ -1323,13 +1323,34 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .admin_page .admin_search_item:last-child { margin: 0; } +.admin_page .awayOrUnfold { + bottom: 0; + transition: all 0.3s; + background: #fff; + text-align: center; +} +.admin_page .awayOrUnfold.active span { + transform: translateY(50%) rotate(0deg); +} +.admin_page .awayOrUnfold span { + display: inline-block; + transform: translateY(50%) rotate(180deg); + cursor: pointer; + border: 2px solid; + border-radius: 50%; + width: 3rem; + height: 3rem; + background-color: #fff; +} .admin_page .admin_table_search { flex-wrap: wrap; + overflow: hidden; margin-top: 2rem; - padding: 2rem 3.5rem 5rem 2.8rem; + padding: 2rem 3.5rem 2rem 2.8rem; background: #fff; display: flex; justify-content: space-between; + position: relative; } .admin_page .admin_table_search .admin_search { width: 20%; @@ -1360,6 +1381,8 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte position: relative; cursor: pointer; width: 80%; + display: flex; + flex-wrap: wrap; } .admin_page .admin_table_search .admin_state .admin_current { background: #fff; @@ -1392,17 +1415,40 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .admin_table_content { margin-top: 2.6rem; width: 100%; + flex: 1; height: calc(100% - 13.7rem); padding-bottom: 3rem; background: #fff; border-radius: 2rem; overflow: hidden; } +.admin_table_content .ant-table-wrapper, +.admin_table_content .ant-spin-nested-loading, +.admin_table_content .ant-spin-container { + height: 100%; +} +.admin_table_content .ant-spin-container { + display: flex; + overflow: hidden; + flex-direction: column; +} .admin_table_content .ant-table { background: transparent; + flex: 1; + overflow: hidden; +} +.admin_table_content .ant-table .ant-table-container { + height: 100%; + display: flex; + flex-direction: column; +} +.admin_table_content .ant-table .ant-table-container .ant-table-content { + height: 100%; } .admin_table_content .ant-table-body { + flex: 1; overflow-y: auto !important; + max-height: inherit !important; -ms-overflow-style: none; overflow: -moz-scrollbars-none; } diff --git a/src/assets/style/style.less b/src/assets/style/style.less index b1cf0997..29b531e7 100644 --- a/src/assets/style/style.less +++ b/src/assets/style/style.less @@ -1084,7 +1084,9 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte background: #fff; border-radius: 2rem; overflow: hidden; - .ant-table-wrapper,.ant-spin-nested-loading,.ant-spin-container{ + .ant-table-wrapper, + .ant-spin-nested-loading, + .ant-spin-container{ height: 100%; } .ant-spin-container{ @@ -1441,7 +1443,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte cursor: pointer; margin: 0 2rem 2rem 0; background-color: #000; - &:hover{ color: #000; border: 2px solid #000; @@ -1451,14 +1452,42 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .admin_search_item:last-child{ margin: 0; } + .awayOrUnfold{ + bottom: 0; + transition: all .3s; + background: #fff; + text-align: center; + &.active{ + span{ + transform: translateY(50%) rotate(0deg); + } + } + span{ + display: inline-block; + transform: translateY(50%) rotate(180deg); + cursor: pointer; + border: 2px solid; + border-radius: 50%; + width: 3rem; + height: 3rem; + background-color: #fff; + } + + } .admin_table_search { display: flex; flex-wrap: wrap; + overflow: hidden; margin-top: 2rem; - padding: 2rem 3.5rem 5rem 2.8rem; + padding: 2rem 3.5rem 2rem 2.8rem; background: #fff; display: flex; justify-content: space-between; + position: relative; + &.active{ + + } + .admin_search{ width: 20%; @@ -1489,7 +1518,8 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte position: relative; cursor: pointer; width: 80%; - + display: flex; + flex-wrap: wrap; .admin_current{ background: #fff; @@ -1525,17 +1555,40 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .admin_table_content { margin-top: 2.6rem; width: 100%; + flex: 1; height: calc(100% - 13.7rem); padding-bottom: 3rem; background: #fff; border-radius: 2rem; overflow: hidden; + .ant-table-wrapper, + .ant-spin-nested-loading, + .ant-spin-container{ + height: 100%; + } + .ant-spin-container{ + display: flex; + overflow: hidden; + flex-direction: column; + } .ant-table { background: transparent; + flex: 1; + overflow: hidden; + .ant-table-container{ + height: 100%; + display: flex; + flex-direction: column; + .ant-table-content{ + height: 100%; + } + } } .ant-table-body { + flex: 1; overflow-y: auto !important; + max-height: inherit !important; -ms-overflow-style: none; overflow: -moz-scrollbars-none; &::-webkit-scrollbar { diff --git a/src/component/Account/account.vue b/src/component/Account/account.vue index c001f260..64adc87f 100644 --- a/src/component/Account/account.vue +++ b/src/component/Account/account.vue @@ -267,7 +267,7 @@ export default defineComponent({ height: 100%; // overflow-y: auto; padding: 0 30rem; - padding-top: 10rem; + padding-top: 7rem; display: flex; overflow: hidden; .account_page_titleImg{ diff --git a/src/component/Account/accountFollowFans.vue b/src/component/Account/accountFollowFans.vue index 25b63584..2757e059 100644 --- a/src/component/Account/accountFollowFans.vue +++ b/src/component/Account/accountFollowFans.vue @@ -119,6 +119,7 @@ export default defineComponent({ \ No newline at end of file diff --git a/src/component/Account/frontPage.vue b/src/component/Account/frontPage.vue index 8e4f2d3c..98bc3ba8 100644 --- a/src/component/Account/frontPage.vue +++ b/src/component/Account/frontPage.vue @@ -141,6 +141,7 @@ export default defineComponent({ } :deep(.ant-tabs-nav){ padding: 0rem 5rem; + margin-bottom: 6rem; &::before{ display: none; } diff --git a/src/component/Account/frontPage/mylnformation.vue b/src/component/Account/frontPage/mylnformation.vue index 5d0ac454..c0436ea0 100644 --- a/src/component/Account/frontPage/mylnformation.vue +++ b/src/component/Account/frontPage/mylnformation.vue @@ -1,11 +1,10 @@