-
Notifications
You must be signed in to change notification settings - Fork 98
/
index.html
95 lines (93 loc) · 4.42 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
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
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="renderer" content="webkit">
<meta name="format-detection" content="telephone=no, email=no" />
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css.css">
<script src="https://dl.ifanr.cn/hydrogen/sdk/sdk-web-latest.js"></script>
<script src="https://cdn.bootcss.com/vue/2.5.22/vue.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<title>我的书架</title>
</head>
<body>
<div id="root" class="container">
<h1 class="title">
我的书架
</h1>
<ul class="list-group" style="margin-bottom: 20px;">
<li v-for="book in bookList" class="list-group-item">
<input v-model="book.bookName" :disabled="book.disabled" type="text" class="form-control" placeholder="我的床头书">
<button @click="editBook(book)" class="btn btn-primary">{{book.disabled ? "编辑" : "保存"}}</button>
<button @click="deleteBook(book)" class="btn btn-danger">删除</button>
</li>
</ul>
<div>
<div class="form-group">
<input v-model="creatingBookName" type="text" class="form-control" placeholder="我的床头书">
</div>
<button @click="createBook" class="btn form-control btn-primary">添加</button>
</div>
<!-- Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">登录</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-group">
<input v-model="loginForm.email" type="email" class="form-control" aria-describedby="emailHelp" placeholder="请输入邮箱">
</div>
<div class="form-group">
<input v-model="loginForm.password" type="password" class="form-control" placeholder="请输入密码">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" @click="openRegisterModal" data-dismiss="modal">去注册</button>
<button type="button" class="btn btn-primary" @click="handleLogin">登录</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="registerModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">注册</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-group">
<input v-model="registerForm.email" type="email" class="form-control" aria-describedby="emailHelp" placeholder="请输入邮箱">
</div>
<div class="form-group">
<input v-model="registerForm.password" type="password" class="form-control" placeholder="请输入密码">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" @click="openLoginModal" data-dismiss="modal">去登录</button>
<button type="button" class="btn btn-primary" @click="handleRegister">注册</button>
</div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>