<view style="position: fixed; top: 0; width: 100%;"> <view class="tab"> <view class="tab-item {{currentTab == 0 ? 'active' : ''}}" bindtap="switchTab" data-index="0" data-value="待领取">待领取 </view> <view class="tab-item {{currentTab == 1 ? 'active' : ''}}" bindtap="switchTab" data-index="1" data-value="进行中">进行中 </view> <view class="tab-item {{currentTab == 2 ? 'active' : ''}}" bindtap="switchTab" data-index="2" data-value="已完成">已完成 </view> <view class="tab-item {{currentTab == 3 ? 'active' : ''}}" bindtap="switchTab" data-index="3" data-value="已逾期">已逾期 </view> <view class="tab-item {{currentTab == 4 ? 'active' : ''}}" bindtap="switchTab" data-index="4" data-value="已驳回">已驳回 </view> </view> </view> <view style="margin-top: 100rpx;"> <view wx:for="{{underway}}" wx:key="code"> <view class="boxcard"> <view class="projectSampleId"> 问卷ID:{{item.projectSampleId}} <text class="labeltext">{{label}}</text> </view> <view class="border-bottom"></view> <view wx:for="{{item.newtags}}" wx:if="{{item.tags != null}}" class="tags" wx:key="index" wx:for-item="newitem"> {{newitem}} </view> <view class="content"> <view>开始时间:{{item.startDate}}</view> <view>结束时间:{{item.endDate}}</view> <view>所属项目:{{item.projectName}}</view> <view>任务ID:{{item.customerTaskId}}</view> </view> <view class="bottombutton"> <button size="mini" class="rectifyFeedback" wx:if="{{currentTab==1||currentTab==3}}" bindtap="rectifyFeedback" data-customer-task-id="{{ item.customerTaskId }}">整改反馈</button> <button size="mini" class="reviewFeedback" bindtap="reviewFeedback" data-customer-task-id="{{item.customerTaskId}}" wx:if="{{currentTab==2}}">查看反馈</button> <button size="mini" class="receiveTask" wx:if="{{currentTab==0}}" bindtap="receiveTask" data-customer-task-id="{{ item.customerTaskId }}"> 领取任务</button> <button size="mini" class="taskSamples" bindtap="taskSamples" data-project-Sample-Id="{{item.projectSampleId}}">任务样本 </button> <button size="mini" class="overruleTask" wx:if="{{currentTab==0||currentTab==1||currentTab==3}}" bindtap="overruleTask" data-customer-task-id="{{ item.customerTaskId }}">驳回任务</button> <button size="mini" class="overruleApplication" bindtap="overruleApplication" data-customer-task-id="{{item.customerTaskId}}" wx:if="{{currentTab==4}}">驳回详情</button> </view> </view> </view> </view> 这是我的wxml代码。请问我的按钮在上划时。会遮挡tab怎么解决
时间: 2023-07-02 07:07:48 浏览: 128
可以尝试在tab元素的样式中添加 `z-index: 1;`,使其在层级上高于按钮,避免被遮挡。例如:
```
.tab {
position: fixed;
top: 0;
width: 100%;
z-index: 1;
}
```
同时,你可以将按钮的样式中的 `position` 属性设置为 `relative`,然后调整其 `z-index` 属性,使其处于tab下方。例如:
```
.bottombutton button {
position: relative;
z-index: -1;
}
```
这样就可以避免按钮遮挡tab的问题了。
相关问题
<template> <div id="index_danghang"> <div class="top"> <mt-header class="top1" > <div slot="left"> <img src="/static/img/logo.jpg" alt=""> <span>前端学习</span> </div> <div slot="right"> <img src="/static/img/logo.jpg" alt=""> <span>前端学习</span> </div> </mt-header> </div> <!-- <div class="content"> --> <router-view /> <!-- </div> --> <!-- :selected.sync="selected" --> <mt-tabbar class="bottom1" fixed> <mt-tab-item id="首页"> <!-- <img slot="icon" src="../assets/100x100.png"> --> <font>首页</font> </mt-tab-item> <mt-tab-item id="订单"> <!-- <img slot="icon" src="../assets/100x100.png"> --> 留言 </mt-tab-item> <mt-tab-item id="发现"> <!-- <img slot="icon" src="../assets/100x100.png"> --> 课程 </mt-tab-item> <mt-tab-item id="我的"> <!-- <img slot="icon" src="../assets/100x100.png"> --> 我的 </mt-tab-item> </mt-tabbar> </div> </template> <script> export default { name: 'App' } </script> <style> *{ margin: 0; padding: 0; } </style> <style scoped="scoped"> /* #index_danghang { position: relative; } */ .top{ width: 100%; } .top1 { width: 100%; background-color: white; color: #000; border: 1px solid black; } .mint-header { width: 100%; } .mint-header .mint-header-button { flex-shrink: 0; } </style>
根据您提供的代码,您已经按照之前的建议进行了样式修改,但是仍然无法实现 Header 组件和浏览器一样宽,右侧内容还是会出现溢出。
经过查看代码,我发现可能是因为 Header 组件右侧的内容宽度过大,导致出现了溢出。解决这个问题可以通过修改右侧内容的宽度来实现。
您可以尝试将右侧内容的宽度设置为固定值,或者使用百分比来设置宽度,以适应不同的屏幕大小。
例如,将右侧内容的宽度设置为50%,代码如下:
```
<mt-header class="top1">
<div slot="left">
<img src="/static/img/logo.jpg" alt="">
<span>前端学习</span>
</div>
<div slot="right" style="width: 50%;">
<img src="/static/img/logo.jpg" alt="">
<span>前端学习</span>
</div>
</mt-header>
```
您可以根据实际情况,适当调整右侧内容的宽度,以达到您想要的效果。
<view class='title'> {{productInfo.name}} </view> <!-- 其他介绍 --> <view class='ping'>暂无评价</view> <!-- 商品详情 --> <view class='product_detail'> <view class='detail'>商品详情</view> <view class='wrapper'> <image src='{{productInfo.pic}}' class='img'></image> <view class='text'> {{productInfo.description}} <view>{{productInfo.details}}</view> </view> </view> </view> <!-- 底部购买 --> <view class='shop_bottom'> <view class='juli'> <image src='../../images/tab9.png' class='shop' bindtap='goShoping'></image> <text></text> </view> <view class='add_cart' bindtap='addShop'>加入购物车</view> <view class='buy_now' bindtap='buyNow'>立即购买</view> </view>帮我写一个wxss美化这个页面
请参考如下wxss代码:
```
/* 标题样式 */
.title {
font-size: 24rpx;
font-weight: bold;
text-align: center;
margin-top: 20rpx;
}
/* 商品图片样式 */
.img {
width: 100%;
height: 400rpx;
object-fit: cover;
}
/* 商品详情样式 */
.product_detail {
margin: 20rpx;
}
.detail {
font-size: 20rpx;
font-weight: bold;
margin-bottom: 10rpx;
}
.wrapper {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 20rpx;
}
.text {
margin-left: 20rpx;
font-size: 16rpx;
color: #999;
text-align: justify;
line-height: 1.5;
}
/* 底部购买样式 */
.shop_bottom {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 100rpx;
background-color: #fff;
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
padding: 0 20rpx;
}
.juli {
display: flex;
flex-direction: row;
align-items: center;
}
.shop {
width: 40rpx;
height: 40rpx;
}
.add_cart, .buy_now {
display: flex;
justify-content: center;
align-items: center;
width: 200rpx;
height: 60rpx;
border-radius: 30rpx;
font-size: 20rpx;
font-weight: bold;
color: #fff;
}
.add_cart {
background-color: #f60;
margin-right: 20rpx;
}
.buy_now {
background-color: #f00;
}
```
在页面对应的`wxml`文件中引用该样式即可。
建议根据实际需要调整样式参数,以达到更好的效果。
阅读全文