【原生小程序小程序开发中,块内容使用position绝对定位之后 不显示】

原来写法

<view class="map_bg" id="weixinMap" bindtap="event" style="display: none;">
        <map subkey="{{subKey}}" style="width:100%;height:100%;z-index: -10;"  latitude="23.099994" longitude="113.324520" scale="18" enable-zoom="{{false}}" enable-scroll="{{false}}">
        </map>
        <view class="map_company flex_start">
          <image class="map_site" src="../../public/images/companyshow/tc_icon.png"></image>
          <view class="company">
            <view class="companyname omit">{{base_info.companyname}}</view>
            <view class="district omit">{{base_info.district_text}}</view>
          </view>
          <view class="arrow_right"></view>
        </view>
      </view>
      <view class="address address_distance">
        <image class="map_site" src="../../public/images/jobshow/address.png"></image>
        {{distance||'计算中'}}
      </view>
.company_item .map_company{
padding: 10rpx;
width: 550rpx;
 height: 80rpx;
 border-radius: 8rpx;
 background: #fff;
 position:absolute;
 top:-50%;
 left:-50%;
 transform:translate(-50%,-50%);
 color: #000;
 }

解决:在map外面包一层以及整体在外面包一层+定位修改为static+z-index

<view>
        <view class="map_bg" id="weixinMap" bindtap="event">
            <map subkey="{{subKey}}" style="width:100%;height:100%;z-index: -10;" latitude="23.099994" longitude="113.324520" scale="18" enable-zoom="{{false}}" enable-scroll="{{false}}">
            </map>
        </view>
        <view class="map_company flex_start">
          <image class="map_site" src="../../public/images/companyshow/tc_icon.png"></image>
          <view class="company">
            <view class="companyname omit">{{base_info.companyname}}</view>
            <view class="district omit">{{base_info.district_text}}</view>
          </view>
          <view class="arrow_right"></view>
        </view>
      </view>
      <view class="address address_distance">
        <image class="map_site" src="../../public/images/jobshow/address.png"></image>
        {{distance||'计算中'}}
      </view>
.company_item .map_company {
  padding: 10rpx;
  width: 550rpx;
  height: 80rpx;
  border-radius: 8rpx;
  background: #fff;
  position:static;
  margin: -23% auto 0;
  z-index: 1000;
  color: #000;
}

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-10 13:28:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-10 13:28:02       101 阅读
  3. 在Django里面运行非项目文件

    2024-03-10 13:28:02       82 阅读
  4. Python语言-面向对象

    2024-03-10 13:28:02       91 阅读

热门阅读

  1. 【软件工程】介绍

    2024-03-10 13:28:02       32 阅读
  2. ffmpeg 转码过程中参数含义

    2024-03-10 13:28:02       45 阅读
  3. or-tools cp-sat CpModel.AddAbsEquality

    2024-03-10 13:28:02       42 阅读
  4. 了解MVCC的实现吗 ?(隐式字段,ReadView,undo log)

    2024-03-10 13:28:02       41 阅读
  5. Windows系统Starting the Docker Engine 一直转圈解决方法

    2024-03-10 13:28:02       54 阅读
  6. Android 开发过程中常见的内存泄漏场景分析

    2024-03-10 13:28:02       44 阅读
  7. 微信小程序 - 组件wxml中slot

    2024-03-10 13:28:02       38 阅读
  8. 新概念英语第二册(74)

    2024-03-10 13:28:02       35 阅读
  9. Node.js 简介以及安装

    2024-03-10 13:28:02       46 阅读
  10. Matlab

    Matlab

    2024-03-10 13:28:02      38 阅读
  11. go - 学习笔记 -2

    2024-03-10 13:28:02       34 阅读
  12. excel数据导入到数据库的方法

    2024-03-10 13:28:02       39 阅读