![]()
@@ -30,28 +34,14 @@ import A6 from '@/static/img/caseshow/specialequip.png'
import A7 from '@/static/img/caseshow/healthcare.png'
import A8 from '@/static/img/caseshow/smarthome.png'
import A9 from '@/static/img/caseshow/electronics.png'
-import { useRoute, useRouter } from 'vue-router'
-const router = useRouter()
-const route = useRoute()
-import { watch } from 'vue'
const props = defineProps({
activeTab: {
type: Number,
},
})
-watch(
- () => route.query.t,
- () => {
- router.go(0)
- },
-)
const toClassifyPage = id => {
- router.push({
- path: '/case-show',
- query: {
- t: id,
- },
- })
+ window.location.href = `/#/case-show?t=${id}`
+ window.location.reload()
}
const getImg = id => {
if (id == 1) {
diff --git a/src/components/HeadLine.vue b/src/components/HeadLine.vue
index c1339d0..0e966b3 100644
--- a/src/components/HeadLine.vue
+++ b/src/components/HeadLine.vue
@@ -70,8 +70,8 @@ const props = defineProps({
}
.scale {
font-size: 14px;
- transform: scale(0.5);
- width: 200%;
+ transform: scale(0.6);
+ width: 170%;
.line1 {
font-family: Source Han Sans CN;
font-weight: 300;
diff --git a/src/components/Top.vue b/src/components/Top.vue
index 99e1598..c31d956 100644
--- a/src/components/Top.vue
+++ b/src/components/Top.vue
@@ -177,6 +177,7 @@ const scrollToTop = () => {
}
.container_bg {
background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(30px);
transition-property: all;
transition-duration: 0.7s;
animation-fill-mode: forwards;
diff --git a/src/components/detail/Img.vue b/src/components/detail/Img.vue
index 7b175ec..463e396 100644
--- a/src/components/detail/Img.vue
+++ b/src/components/detail/Img.vue
@@ -18,14 +18,16 @@ const props = defineProps({
diff --git a/src/static/img/recruit/Thumbs.db b/src/static/img/recruit/Thumbs.db
new file mode 100644
index 0000000..e2a9c07
Binary files /dev/null and b/src/static/img/recruit/Thumbs.db differ
diff --git a/src/style.scss b/src/style.scss
index b947599..cf458a5 100644
--- a/src/style.scss
+++ b/src/style.scss
@@ -59,3 +59,9 @@
* {
-webkit-text-size-adjust: none;
}
+
+html {
+ touch-action: none;
+
+ touch-action: pan-y;
+}