This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 903
/
index.vue
154 lines (137 loc) · 4.61 KB
/
index.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
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
146
147
148
149
150
151
152
153
154
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!-- Created by Tw93 on 16/10/28. -->
<template>
<div class="wxc-demo">
<scroller class="scroller">
<div class="wrapper">
<title title="wxc-searchbar"></title>
<category title="使用案例"></category>
</div>
<text class="value-text"
@click="setValue">点我可设置输入框内容</text>
<div class="demo">
<wxc-searchbar ref="wxc-searchbar"
@wxcSearchbarCancelClicked="wxcSearchbarCancelClicked"
@wxcSearchbarInputReturned="wxcSearchbarInputReturned"
@wxcSearchbarInputOnInput="wxcSearchbarInputOnInput"
@wxcSearchbarCloseClicked="wxcSearchbarCloseClicked"
@wxcSearchbarInputOnFocus="wxcSearchbarInputOnFocus"
@wxcSearchbarInputOnBlur="wxcSearchbarInputOnBlur"></wxc-searchbar>
<text class="value-text">{{value}}</text>
</div>
<text class="hint">禁用输入框</text>
<div class="demo demo1">
<wxc-searchbar :disabled="isDisabled"
placeholder="无法输入"
@wxcSearchbarInputDisabledClicked="wxcSearchbarInputDisabledClicked"></wxc-searchbar>
</div>
<text class="hint">一直显示取消按钮,同时theme="yellow"</text>
<div class="demo demo1">
<wxc-searchbar :always-show-cancel="showCancel"
theme="yellow"
@searchbarCancelClick="searchbarCancelClick"></wxc-searchbar>
</div>
<text class="hint">带有目的地模式的输入框、theme="yellow"</text>
<div class="demo demo1">
<wxc-searchbar class="searchbar"
placeholder="搜索目的地"
theme="yellow"
mod="hasDep"
dep-name="杭州出发"
@wxcSearchbarDepChooseClicked="wxcSearchbarDepChooseClicked"
@wxcSearchbarInputDisabledClicked="wxcSearchbarInputDisabledClicked"></wxc-searchbar>
</div>
</scroller>
</div>
</template>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #F6F9F8;
}
.scroller {
flex: 1;
}
.wrapper {
background-color: #FFFFFF;
}
.demo {
height: 160px;
}
.demo1 {
margin-top: 20px;
}
.value-text {
margin: 24px;
font-size: 30px;
color: #333333;
}
.hint {
margin-left: 24px;
font-size: 30px;
color: #333333;
}
</style>
<script>
const modal = weex.requireModule('modal');
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import { WxcSearchbar } from '../../index'
import { setTitle } from '../_mods/set-nav';
export default {
components: { Title, Category, WxcSearchbar },
data: () => ({
value: '',
showCancel: true,
isDisabled: true
}),
created () {
setTitle('Searchbar');
},
methods: {
setValue () {
this.$refs['wxc-searchbar'].setValue('点击了手动设置输入框内容的开关');
},
wxcSearchbarInputOnFocus () {
modal.toast({ 'message': 'onfocus', 'duration': 1 });
},
wxcSearchbarInputOnBlur () {
modal.toast({ 'message': 'onbulr', 'duration': 1 });
},
wxcSearchbarCloseClicked () {
modal.toast({ 'message': 'close.click', 'duration': 1 });
},
wxcSearchbarInputOnInput (e) {
this.value = e.value;
},
wxcSearchbarCancelClicked () {
modal.toast({ 'message': 'cancel.click', 'duration': 1 });
},
wxcSearchbarInputDisabledClicked () {
modal.toast({ 'message': 'input.onclick', 'duration': 1 });
},
wxcSearchbarDepChooseClicked () {
modal.toast({ 'message': 'dep.choose.click', 'duration': 1 });
}
}
};
</script>