-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (55 loc) · 1.65 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, miximum=1.0, user-scalable=no" />
<meta name="format-detection" content="telephone=no, email=no" />
<meta http-equiv="pragram" content="no-cache">
<meta name="screen-orientation" content="portrait">
<meta name="flexible" content="initial-dpr=1, maximum-dpr=1" />
<meta name="x5-orientation" content="portrait">
<meta name="author" content="邓文斌,dengwb1991">
<title>Dwb City</title>
<style type="text/css">
input {
height: 38px;
line-height: 38px;
font-size: 22px;
width: 200px;
margin-bottom: 40px;
}
button {
height: 28px;
line-height: 28px;
margin-left: 20px;
width: 60px;
background: orange;
border: none;
border-radius: 4px;
font-family: PingFangSC-Medium;
font-size: 12px;
color: #FFFFFF;
user-select: none;
outline: none;
}
</style>
</head>
<body>
<div id="app">
<input v-model="valA"/>
<button @click="openA">展示</button>
<br>
<input v-model="valB"/>
<button @click="openB">展示</button>
<p>结果:</p>
<div>{{result}}</div>
<dwb-city v-model="show"
:city="city"
ref="city"
@change="getData"/>
</div>
</body>
</html>