1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view @click="close" class="mask">
- <view @click.stop="onClick" class="content">
- <text class="text">点击蒙层关闭</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- methods: {
- onClick(e) {
- uni.showToast({
- title: "点击蒙层关闭"
- })
- // #ifdef APP-NVUE
- e.stopPropagation()
- // #endif
- },
- close() {
- uni.navigateBack()
- }
- }
- }
- </script>
- <style>
- page {
- background: transparent;
- }
- .mask {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: center;
- align-items: center;
- background-color: rgba(0, 0, 0, 0.4);
- }
- .content {
- width: 200px;
- height: 200px;
- background-color: #007AFF;
- }
- .text {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- line-height: 200px;
- text-align: center;
- color: #FFFFFF;
- }
- </style>
|