liujq 2 anni fa
parent
commit
998f2fcbdd
2 ha cambiato i file con 72 aggiunte e 1 eliminazioni
  1. 21 1
      src/pagesOther/map/aftermetro.jsx
  2. 51 0
      src/pagesOther/map/aftermetro.scss

+ 21 - 1
src/pagesOther/map/aftermetro.jsx

@@ -238,7 +238,7 @@ class Index extends Component {
         </View>
         <View className="sb-content">
           <View className="tips">
-            <View className="l">放大地图查看地铁周边楼盘|规划仅供参考</View>
+            <View className="l">该线路图及站点位置纯属巴老师YY,不作为任何房产购置参考依据</View>
           </View>
           <View className="more">
             <View onClick={this.moreHandle.bind(this)} className={'op'}>更多敬请期待,欢迎给我们提建议</View>
@@ -279,6 +279,24 @@ class Index extends Component {
     )
   }
 
+  renderSign () {
+    const img = require('@img/sigin_sy.png')
+    return (
+      <View className="scoped-sign">
+        <View className="bg"></View>
+        <Image className="img" src={img} />
+      </View>
+    )
+  }
+  renderSign2 () {
+    const img = require('@img/sigin_sy.png')
+    return (
+      <View className="scoped-sign2">
+        <Image className="img" src={img} />
+      </View>
+    )
+  }
+
 
   render () {
     let { estateArr } = this.state
@@ -318,6 +336,8 @@ class Index extends Component {
           className="scoped-map"/>
         {this.renderFooter()}
         {this.renderShare()}
+        {this.renderSign()}
+        {this.renderSign2()}
       </View>
     )
   }

+ 51 - 0
src/pagesOther/map/aftermetro.scss

@@ -101,3 +101,54 @@
     }
   }
 }
+
+
+
+
+.scoped-sign2 {
+  position: fixed;
+  top: 360px;
+  left: 0;
+  width: 198px;
+  height: 46px;
+  z-index: 99999;
+  .img {
+    position: absolute;
+    top: 8px;
+    left: 8px;
+    width: 182px;
+    height: 30px;
+    z-index: 2;
+  }
+}
+
+
+.scoped-sign {
+  position: fixed;
+  top: 760px;
+  right: 0;
+  width: 198px;
+  height: 46px;
+  z-index: 99999;
+  border-radius: 10px 0 0 10px;
+  overflow: hidden;
+  .bg {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 198px;
+    height: 46px;
+    z-index: 1;
+    background: #000;
+    opacity: .3;
+  }
+  .img {
+    position: absolute;
+    top: 8px;
+    left: 8px;
+    width: 182px;
+    height: 30px;
+    z-index: 2;
+    opacity: .8;
+  }
+}