Blame view

pages/extUI/drawer/drawer.vue 3.09 KB
4b045f7c   刘淇   江阴初始化项目
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
  <template>
  	<view>
  		<uni-card is-full :is-shadow="false">
  			<text class="uni-h6">这是抽屉式导航组件使用示例,可以指定菜单左侧或者右侧弹出(仅初始化生效),组件内部可以放置任何内容。点击页面按钮即可显示导航菜单。</text>
  		</uni-card>
  
  		<uni-section title="左侧滑出" type="line">
  			<view class="example-body">
  				<button type="primary" @click="showDrawer('showLeft')"><text class="word-btn-white">显示Drawer</text>
  				</button>
  				<uni-drawer ref="showLeft" mode="left" :width="320" @change="change($event,'showLeft')">
  					<view class="close">
  						<button @click="closeDrawer('showLeft')"><text class="word-btn-white">关闭Drawer</text></button>
  					</view>
  				</uni-drawer>
  			</view>
  		</uni-section>
  
  		<uni-section title="右侧滑出" type="line">
  			<view class="example-body">
  				<button type="primary" @click="showDrawer('showRight')"><text class="word-btn-white">显示Drawer</text>
  				</button>
  				<uni-drawer ref="showRight" mode="right" :mask-click="false" @change="change($event,'showRight')">
  					<view class="scroll-view">
  						<scroll-view class="scroll-view-box" scroll-y="true">
  							<view class="info">
  								<text class="info-text">右侧遮罩只能通过按钮关闭,不能通过点击遮罩关闭</text>
  							</view>
  							<view class="close">
  								<button @click="closeDrawer('showRight')"><text
  										class="word-btn-white">关闭Drawer</text></button>
  							</view>
  							<view class="info-content" v-for="item in 100" :key="item">
  								<text>可滚动内容 {{item}}</text>
  							</view>
  							<view class="close">
  								<button @click="closeDrawer('showRight')"><text
  										class="word-btn-white">关闭Drawer</text></button>
  							</view>
  						</scroll-view>
  					</view>
  				</uni-drawer>
  			</view>
  		</uni-section>
  	</view>
  </template>
  <script>
  	export default {
  		data() {
  			return {
  				showRight: false,
  				showLeft: false
  			}
  		},
  		methods: {
  			confirm() {},
  			// 打开窗口
  			showDrawer(e) {
  				this.$refs[e].open()
  			},
  			// 关闭窗口
  			closeDrawer(e) {
  				this.$refs[e].close()
  			},
  			// 抽屉状态发生变化触发
  			change(e, type) {
  				console.log((type === 'showLeft' ? '左窗口' : '右窗口') + (e ? '打开' : '关闭'));
  				this[type] = e
  			}
  		},
  		onNavigationBarButtonTap(e) {
  			if (this.showLeft) {
  				this.$refs.showLeft.close()
  			} else {
  				this.$refs.showLeft.open()
  			}
  		},
  		// app端拦截返回事件 ,仅app端生效
  		onBackPress() {
  			if (this.showRight || this.showLeft) {
  				this.$refs.showLeft.close()
  				this.$refs.showRight.close()
  				return true
  			}
  		}
  	}
  </script>
  
  <style lang="scss">
  	.example-body {
  		padding: 10px;
  	}
  
  	.scroll-view {
  		/* #ifndef APP-NVUE */
  		width: 100%;
  		height: 100%;
  		/* #endif */
  		flex: 1
  	}
  
  	// 处理抽屉内容滚动
  	.scroll-view-box {
  		flex: 1;
  		position: absolute;
  		top: 0;
  		right: 0;
  		bottom: 0;
  		left: 0;
  	}
  
  	.info {
  		padding: 15px;
  		color: #666;
  	}
  
  	.info-text {
  		font-size: 14px;
  		color: #666;
  	}
  
  	.info-content {
  		padding: 5px 15px;
  	}
  
  	.close {
  		padding: 10px;
  	}
  </style>