-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWechat.vue
64 lines (57 loc) · 1.54 KB
/
Wechat.vue
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
<template>
<div>
<group>
<cell title="接收新消息通知" value="已启用"></cell>
</group>
<tip>如果你要关闭或开启微信的新消息通知,请在iPhone的"设置"-"通知"功能中,找到应用程序"微信"更改。</tip>
<group>
<switch title="通知显示消息详情" :value="true"></switch>
</group>
<tip>关闭后,当收到微信消息时,通知提示将不再显示发信人和内容摘要。</tip>
<group>
<cell title="功能消息免打扰" is-link></cell>
</group>
<tip>设置系统功能消息提示声音和振动的时段。</tip>
<group>
<switch title="声音" :value="false"></switch>
<switch title="振动" :value="true"></switch>
</group>
<tip>当微信在运行时,你可以设置是否需要声音或者振动。</tip>
<group>
<switch title="朋友圈照片更新" :value="true"></switch>
</group>
<tip>关闭后,有朋友更新照片时,界面下面的"发现"切换按钮上不再出现红点提示。</tip>
</div>
</template>
<script>
import { DevTip, Number, Selector, Group, GroupTitle, Button as Btn, Tip, Switch, Radio, Checklist, Cell, Xinput } from './components-vux'
export default {
ready () {
},
components: {
Number,
Selector,
Group,
Btn,
Tip,
Switch,
GroupTitle,
Radio,
DevTip,
Checklist,
Cell,
Xinput
},
data () {
return {
}
},
methods: {
change (value) {
console.log('change:', value)
}
}
}
</script>
<style>
</style>