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

原来写法

html 复制代码
<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>
css 复制代码
.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

html 复制代码
<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>
css 复制代码
.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;
}
相关推荐
彭世瑜5 分钟前
ts: TypeScript跳过检查/忽略类型检查
前端·javascript·typescript
FØund4046 分钟前
antd form.setFieldsValue问题总结
前端·react.js·typescript·html
Backstroke fish6 分钟前
Token刷新机制
前端·javascript·vue.js·typescript·vue
小五Five7 分钟前
TypeScript项目中Axios的封装
开发语言·前端·javascript
小曲程序7 分钟前
vue3 封装request请求
java·前端·typescript·vue
临枫5418 分钟前
Nuxt3封装网络请求 useFetch & $fetch
前端·javascript·vue.js·typescript
前端每日三省9 分钟前
面试题-TS(八):什么是装饰器(decorators)?如何在 TypeScript 中使用它们?
开发语言·前端·javascript
小刺猬_98510 分钟前
(超详细)数组方法 ——— splice( )
前端·javascript·typescript
渊兮兮11 分钟前
Vue3 + TypeScript +动画,实现动态登陆页面
前端·javascript·css·typescript·动画
鑫宝Code11 分钟前
【TS】TypeScript中的接口(Interface):对象类型的强大工具
前端·javascript·typescript