forked from gooking/uni-app-mall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotagree.vue
More file actions
56 lines (49 loc) · 866 Bytes
/
notagree.vue
File metadata and controls
56 lines (49 loc) · 866 Bytes
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
<template>
<view class="notagree">
<view class="title">Oops!</view>
<view class="profile">
很遗憾,若您不同意《用户协议》和《隐私协议》,将无法继续使用我们的服务。
</view>
<image class="img" width="100%" mode="widthFix" src="https://7.s2m.cc/2021/11/30/efd832a3-5184-4c22-af64-728999a90add.png"></image>
</view>
</template>
<script>
export default {
data() {
return {
}
},
created() {
},
mounted() {
},
onReady() {
},
onLoad(e) {
uni.setNavigationBarTitle({
title: '很抱歉~'
})
},
onShow() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
.notagree {
padding: 64rpx;
.title {
font-size: 100rpx;
font-weight: bold;
}
.profile {
margin-top: 64rpx;
color: #666;
line-height: 48rpx;
}
.img {
margin-top: 64rpx;
}
}
</style>