File size: 1,781 Bytes
186b709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<script setup lang="ts">
import { NButton, NModal } from 'naive-ui'
const { show } = defineProps<{
  show: boolean
}>()

const emit = defineEmits<{
  (event: 'increase'): void
}>()
</script>

<template>
  <NModal :show="show">
    <div class="card">
      <div class="title">
        ❤️ ❤️️如果你觉得这个项目对你有帮助,并且情况允许的话,可以给我一点点支持,非常感谢支持~
      </div>
      <div class="pics">
        <div class="item">
          <img src="./qr-wx.png" alt="qr-img">
          <div class="color-green">
            微信
          </div>
        </div>
        <div class="item">
          <img src="./qr-zfb.png" alt="qr-img">
          <div class="color-blue">
            支付宝
          </div>
        </div>
      </div>
      <div class="foot">
        <NButton type="success" size="large" block style="font-size: 18px;" @click="emit('increase')">
          知道了🐶
        </NButton>
      </div>
    </div>
  </NModal>
</template>

<style scoped>
.card {
	border-radius: 6px;
	background-color: #fff;
	text-align: center;
	max-width: 660px;
	padding: 32px;
	max-height: 60vh;
	overflow: auto;
}

.title {
	font-size: 24px;
}

.pics {
	display: flex;
}

.item {
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	margin: 12px 24px;
	padding: 12px;
	padding-bottom: 8px;

	> img {
		width: 300px;
	}
}

.foot {
	max-width: 320px;
	margin: 0 auto;
	margin-top: 32px;
}

.color-green {
	color: rgb(82, 158, 70);
	font-size: 18px;
	font-weight: bold;
}

.color-blue {
	color: rgb(70, 157, 225);
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.pics {
		display: block;
	}
}
</style>