shaogen1995 8 months ago
parent
commit
f17fe42fee

+ 0 - 1
Code/public/myData/hot.js

@@ -3548,7 +3548,6 @@ const myHotInfo = {
       }
     },
     {
-      pageType: '收获',
       name: '汉代农作物', // 热点名字
       tubiao: '普通', //普通 | 文物(热点图标不同)
       zIndex: 1, //定位层级(默认填1)

+ 1 - 1
Code/src/pages/A2visit2/index.tsx

@@ -160,7 +160,7 @@ function A2visit2() {
         gameFu={
           panoShow
             ? () => {
-                history.push('/unend/game3')
+                history.push('/unend/game3?v=v2')
               }
             : undefined
         }

+ 1 - 0
Code/src/pages/A6plow/index.module.scss

@@ -118,6 +118,7 @@
 
       // 底部文字
       .A6txt {
+        display: none !important;
         position: absolute;
         z-index: 11;
         top: 0;

+ 11 - 9
Code/src/pages/A6plow/index.tsx

@@ -73,15 +73,18 @@ function A6plow() {
 
   // 根据 庄稼 tab不同来变化
   const tabHotAcName = useMemo(() => {
-    let obj = {
-      0: '汉代耕地工具',
-      1: '播种农具',
-      2: '中耕农具',
-      3: '收割工具'
-    }
+    if (staCut === '蔬菜') return '汉代农作物'
+    else {
+      let obj = {
+        0: '汉代耕地工具',
+        1: '播种农具',
+        2: '中耕农具',
+        3: '收割工具'
+      }
 
-    return Reflect.get(obj, leftAc) as string
-  }, [leftAc])
+      return Reflect.get(obj, leftAc) as string
+    }
+  }, [leftAc, staCut])
 
   return (
     <div className={styles.A6plow}>
@@ -188,7 +191,6 @@ function A6plow() {
 
                 {/* 热点 */}
                 <div
-                  hidden={staCut === '蔬菜'}
                   onClick={() => setAcName(tabHotAcName)}
                   className='A6leftBtn'
                   style={{ backgroundImage: `url(${baseURL}chef/chuBtn.png)` }}

+ 4 - 2
Code/src/pages/A6xian/index.module.scss

@@ -134,8 +134,10 @@
     @media screen and (max-width: 1200px) {
       .A6XimgBox {
         .A6XimgBoxSon {
-          overflow-y: auto;
-          overflow-x: auto;
+          .A6videoBox {
+            overflow-y: auto;
+            overflow-x: auto;
+          }
         }
       }
     }