| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <view class="policy-dialog" v-if="visible" @click="onMaskClick">
- <view class="dialog-content" @click.stop>
- <view class="dialog-header">
- <text class="dialog-title">{{ title }}</text>
- <view class="close-btn" @click="onClose">
- <uni-icons type="closeempty" size="20" color="#999"></uni-icons>
- </view>
- </view>
- <scroll-view scroll-y class="dialog-body">
- <view class="policy-content">
- <text class="policy-text">{{ content }}</text>
- </view>
- </scroll-view>
- <view class="dialog-footer">
- <button class="confirm-btn" @click="onClose">我知道了</button>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref, watch } from 'vue'
- const props = defineProps({
- visible: {
- type: Boolean,
- default: false
- },
- title: {
- type: String,
- default: ''
- },
- content: {
- type: String,
- default: ''
- },
- maskClosable: {
- type: Boolean,
- default: true
- }
- })
- const emit = defineEmits(['update:visible', 'close'])
- const onClose = () => {
- emit('update:visible', false)
- emit('close')
- }
- const onMaskClick = () => {
- if (props.maskClosable) {
- onClose()
- }
- }
- </script>
- <style lang="scss" scoped>
- .policy-dialog {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 9999;
- padding: 40rpx;
- }
- .dialog-content {
- width: 100%;
- max-height: 80vh;
- background: #fff;
- border-radius: 32rpx;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .dialog-header {
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- padding: 32rpx;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .dialog-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- .close-btn {
- position: absolute;
- right: 32rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- .dialog-body {
- flex: 1;
- padding: 32rpx;
- overflow-y: auto;
- }
- .policy-content {
- line-height: 1.8;
- }
- .policy-text {
- font-size: 28rpx;
- color: #666;
- white-space: pre-wrap;
- }
- .dialog-footer {
- padding: 24rpx 32rpx;
- border-top: 1rpx solid #f5f5f5;
- }
- .confirm-btn {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(90deg, #ffd53f, #ff9500);
- color: #333;
- border: none;
- border-radius: 44rpx;
- font-size: 30rpx;
- font-weight: bold;
- }
- </style>
|