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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<template>
<view class="">
<u-navbar title="关注服务号" :bgColor="bgColor" :title-bold="true" :safeAreaInsetTop="true" :placeholder="true">
<view class="u-nav-slot" slot="left" @click="left">
<u-icon name="arrow-left" color="#000000" size="16" :bold="true"></u-icon>
</view>
</u-navbar>
<view class="top">
关注服务号及时接收消息通知
</view>
<view class="toptext">
<view class="toptexts">
欧SSS服务号
</view>
<view class="toptextsss">
2022-12-1 11:23
</view>
</view>
<view class="toptext" style="margin-top: 70rpx;">
<view class="dian">
</view>
<view class="toptextss">
有人喜欢了你的通知
</view>
</view>
<view class="toptext">
<view class="dian">
</view>
<view class="toptextss">
有人给你发了聊天消息通知
</view>
</view>
<image :src="img+'img/ewm.png'" show-menu-by-longpress mode="aspectFill" class="img"></image>
<view class="toptextssing" style="margin-top: 70rpx;">
长按扫码二维码关注《欧SSS》
</view>
<view class="toptextssing" style="margin-top: 30rpx;">
即可接收消息通知
</view>
</view>
</template>
<script>
export default {
data() {
return {
img: this.$BASE_URL,
bgColor: "#FFF"
}
},
onLoad() {
},
onUnload() {
console.log(1)
},
methods: {
left() {
uni.switchTab({
url: "/pages/tab/index"
})
},
}
}
</script>
<style>
.img {
width: 576rpx;
height: 576rpx;
margin: 0 auto;
display: block;
margin-top: 70rpx;
}
.toptextssing {
width: 100%;
text-align: center;
font-size: 28rpx;
font-family: 'PingFang SC-Bold, PingFang SC';
color: #333333;
line-height: 28rpx;
}
.toptextss {
font-size: 28rpx;
font-family: 'PingFang SC-Bold, PingFang SC';
color: #333333;
line-height: 28rpx;
margin-left: 24rpx;
}
.dian {
width: 12rpx;
height: 12rpx;
border-radius: 50%;
background: #434343;
margin-left: 24rpx;
opacity: 1;
}
.toptextsss {
font-size: 28rpx;
font-family: 'Arial-Regular, Arial';
font-weight: 400;
color: #B7B7B7;
line-height: 28rpx;
margin-left: 24rpx;
}
.toptexts {
font-size: 28rpx;
font-family: 'PingFang SC-Regular, PingFang SC';
font-weight: 400;
color: #415C9E;
line-height: 28rpx;
}
.toptext {
margin-left: 24rpx;
display: flex;
align-items: center;
margin-top: 30rpx;
}
.top {
font-size: 48rpx;
font-family: 'PingFang SC-Heavy, PingFang SC';
font-weight: 400;
color: #333333;
line-height: 48rpx;
margin-left: 24rpx;
margin-top: 30rpx;
}
</style>