-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrust_info1.html
81 lines (80 loc) · 2.58 KB
/
entrust_info1.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1, user-scalable=no">
<title>委托-基本信息</title>
<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">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- header -->
<header class="per-head">
<a class="per-fh fh2" href=""></a>
<h1>委托房源</h1>
</header>
<!-- /header -->
<!-- ent-menu -->
<section class="ent-menu bgf tc">
<span class="active"><i></i>基本信息</span>
<em></em>
<span><i></i>出售价格</span>
<em></em>
<span><i></i>完成</span>
</section>
<!-- /ent-menu -->
<!-- ent-info -->
<section class="ent-info">
<dl class="clearfix"><dt>小区</dt><dd><input type="text" placeholder="请输入小区名称">
<ul class="search-tips">
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
</ul>
</dd></dl>
<dl class="clearfix"><dt>楼栋</dt><dd><input type="text" placeholder="请输入所在楼栋">
<ul class="search-tips">
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
</ul>
</dd></dl>
<dl class="clearfix"><dt>单元</dt><dd><input type="text" placeholder="选填">
<ul class="search-tips">
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
<li>万达文化旅游城</li>
</ul>
</dd></dl>
<dl class="clearfix"><dt>楼层</dt><dd><input type="text" placeholder="请输入楼层"></dd></dl>
<dl class="clearfix"><dt>房号</dt><dd><input type="text" placeholder="如1001"></dd></dl>
</section>
<!-- ent-info -->
<!-- ent-btn -->
<section class="ent-btn">
<p>准确的房源信息,将获得更精准的定价参考,以及最适合的经纪人为您服务</p>
<a href="">下一步</a>
</section>
<!-- ent-btn -->
<script src="js/zepto/zepto.min.js"></script>
<script>
$(function() {
//输入提示
$(".ent-info input").keyup(function () {
$(this).next().show();
});
$(".ent-info input").blur(function () {
$(this).next().hide();
});
});
</script>
</body>
</html>