Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
hager
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-12-11 17:46:43 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a1bf0b61d5a01643ff4fd62a5124964d1ff09ad5
a1bf0b61
1 parent
7796e839
fix ie浏览器显示优化
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
12 deletions
src/components/common/hagerHeader.vue
src/views/solution/detail.vue
src/views/user/info.vue
src/views/user/register.vue
src/components/common/hagerHeader.vue
View file @
a1bf0b6
<!--
* @Date: 2024-09-26 13:42:11
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-11 1
4:54:52
* @LastEditTime: 2024-12-11 1
7:11:01
* @FilePath: /hager/src/components/common/hagerHeader.vue
* @Description: 文件描述
-->
...
...
@@ -363,11 +363,11 @@ export default {
this.show = false;
},
goTo (path) { // 跳转页面
//
if (this.$route.path !== path) { // 不能重复点击当前页面
//
this.$router.push({
//
path,
//
});
//
}
if (this.$route.path !== path) { // 不能重复点击当前页面
this.$router.push({
path,
});
}
if (path.indexOf('/solution') === -1) { // 不统计解决方案页面
// TAG: 统计埋点
this.maEvent(`h5_${path.slice(1)}`);
...
...
src/views/solution/detail.vue
View file @
a1bf0b6
<!--
* @Date: 2024-09-29 15:49:27
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-
09 16:36:59
* @LastEditTime: 2024-12-
11 17:21:35
* @FilePath: /hager/src/views/solution/detail.vue
* @Description: 文件描述
-->
...
...
@@ -377,7 +377,7 @@ export default {
display: flex;
flex-wrap: wrap;
// justify-content: space-between; /* 确保子元素之间的空间被均匀分配 */
gap: 1vw;
//
gap: 1vw;
&.xs {
display: block;
}
...
...
@@ -391,6 +391,11 @@ export default {
background-color: #fff;
transition: transform 0.3s ease-in-out;
position: relative;
margin-right: 0.75rem;
margin-bottom: 0.75rem;
&:nth-child(3n) {
margin-right: 0;
}
&:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
...
...
src/views/user/info.vue
View file @
a1bf0b6
<!--
* @Date: 2024-10-18 18:00:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-11 1
4:16:50
* @LastEditTime: 2024-12-11 1
7:36:43
* @FilePath: /hager/src/views/user/info.vue
* @Description: 文件描述
-->
...
...
@@ -27,7 +27,7 @@
</div>
</div>
<el-dialog :title="privacyInfo.post_title" :visible.sync="dialogVisible" top="10vh" width="60%">
<privacy :content="privacyInfo.post_content" style="overflow
: overlay
; max-height: 70vh;"></privacy>
<privacy :content="privacyInfo.post_content" style="overflow
-y: scroll
; max-height: 70vh;"></privacy>
</el-dialog>
<el-drawer
...
...
src/views/user/register.vue
View file @
a1bf0b6
<!--
* @Date: 2024-10-18 18:00:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-11 1
4:15:2
0
* @LastEditTime: 2024-12-11 1
7:36:1
0
* @FilePath: /hager/src/views/user/register.vue
* @Description: 文件描述
-->
...
...
@@ -24,7 +24,7 @@
</div>
</div>
<el-dialog :title="privacyInfo.post_title" :visible.sync="dialogVisible" top="10vh" width="60%">
<privacy :content="privacyInfo.post_content" style="overflow
: overlay; max-
height: 70vh;"></privacy>
<privacy :content="privacyInfo.post_content" style="overflow
-y: scroll;
height: 70vh;"></privacy>
</el-dialog>
<el-drawer
...
...
Please
register
or
login
to post a comment