日期遮挡
Showing
1 changed file
with
8 additions
and
3 deletions
| ... | @@ -205,11 +205,11 @@ | ... | @@ -205,11 +205,11 @@ |
| 205 | </view> | 205 | </view> |
| 206 | 206 | ||
| 207 | <!-- 底部按钮 --> | 207 | <!-- 底部按钮 --> |
| 208 | <view v-if="active == 0" class="fixedBottom"> | 208 | <view v-if="active == 0" class="fixedBottom fixedBottom-index"> |
| 209 | <button class="btn-red-kx" style="width: 40%;" @click="submitForm(0)">保存</button> | 209 | <button class="btn-red-kx" style="width: 40%;" @click="submitForm(0)">保存</button> |
| 210 | <button class="btn-red" style="width: 40%;" @click="submitForm(1)">下一步</button> | 210 | <button class="btn-red" style="width: 40%;" @click="submitForm(1)">下一步</button> |
| 211 | </view> | 211 | </view> |
| 212 | <view v-if="active == 1" class="fixedBottom"> | 212 | <view v-if="active == 1" class="fixedBottom fixedBottom-index2"> |
| 213 | <button class="btn-red-kx" style="width: 25%;" @click="prev">上一步</button> | 213 | <button class="btn-red-kx" style="width: 25%;" @click="prev">上一步</button> |
| 214 | <button class="btn-red-kx" style="width: 25%;" @click="submitForm2(0)">保存</button> | 214 | <button class="btn-red-kx" style="width: 25%;" @click="submitForm2(0)">保存</button> |
| 215 | <button class="btn-red" style="width: 30%;" @click="submitForm2(1)">提交审核</button> | 215 | <button class="btn-red" style="width: 30%;" @click="submitForm2(1)">提交审核</button> |
| ... | @@ -1411,6 +1411,12 @@ function handleDelete(row) { | ... | @@ -1411,6 +1411,12 @@ function handleDelete(row) { |
| 1411 | opacity: 0; | 1411 | opacity: 0; |
| 1412 | } | 1412 | } |
| 1413 | } | 1413 | } |
| 1414 | .fixedBottom-index { | ||
| 1415 | z-index:9; | ||
| 1416 | } | ||
| 1417 | .fixedBottom-index2 { | ||
| 1418 | z-index:999; | ||
| 1419 | } | ||
| 1414 | 1420 | ||
| 1415 | /* 底部按钮 */ | 1421 | /* 底部按钮 */ |
| 1416 | .fixedBottom { | 1422 | .fixedBottom { |
| ... | @@ -1425,7 +1431,6 @@ function handleDelete(row) { | ... | @@ -1425,7 +1431,6 @@ function handleDelete(row) { |
| 1425 | padding-bottom: calc(20rpx + env(safe-area-inset-bottom)); | 1431 | padding-bottom: calc(20rpx + env(safe-area-inset-bottom)); |
| 1426 | background: #fff; | 1432 | background: #fff; |
| 1427 | border-top: 1rpx solid #f0f0f0; | 1433 | border-top: 1rpx solid #f0f0f0; |
| 1428 | z-index:999; | ||
| 1429 | 1434 | ||
| 1430 | .btn-red { | 1435 | .btn-red { |
| 1431 | background: linear-gradient(135deg, #AD181F 0%, #c42a2a 100%); | 1436 | background: linear-gradient(135deg, #AD181F 0%, #c42a2a 100%); | ... | ... |
-
Please register or sign in to post a comment