提交 f7e355fd 编写于 作者: E Evan

Update: 更新 README.md

上级 501f5cd2
......@@ -10,13 +10,17 @@
# 一、整体效果
## 1.首页
## 1.登录页面
![登录页面](https://i.loli.net/2019/04/14/5cb2fd5b78ae7.png)
## 2.首页
作为展示页面,包括开发这个项目的主要参考资料、近期更新和 Slogan
![首页](https://img-blog.csdnimg.cn/20190403215932913.png)
## 2.图书馆
## 3.图书馆
作为核心功能页面之一,提供图书信息展示、图书信息管理两大功能
......@@ -55,7 +59,7 @@
---|---
阅读标注 | 未完成
## 3.笔记本
## 4.笔记本
该页面尚未成型
......@@ -119,6 +123,10 @@ npm run build
3.[前后端结合测试(登录页面开发)](https://blog.csdn.net/Neuf_Soleil/article/details/88955387)
4.[数据库的引入](https://blog.csdn.net/Neuf_Soleil/article/details/89294300)
5.[使用 Element 辅助前端开发](https://blog.csdn.net/Neuf_Soleil/article/details/89298717)
(持续更新中)
# 近期更新
......
<template>
<body id="paper">
<el-form :rules="rules" class="login-container" label-position="left"
label-width="0px" v-loading="loading">
<h3 class="login_title">系统登录</h3>
<el-form-item prop="account">
<el-input type="text" v-model="loginForm.username"
auto-complete="off" placeholder="账号"></el-input>
</el-form-item>
<el-form-item prop="checkPass">
<el-input type="password" v-model="loginForm.password"
auto-complete="off" placeholder="密码"></el-input>
</el-form-item>
<el-checkbox class="login_remember" v-model="checked"
label-position="left"><span style="color: #505458">记住密码</span></el-checkbox>
<el-form-item style="width: 100%">
<el-button type="primary" style="width: 100%;background: #505458;border: none" v-on:click="login">登录</el-button>
</el-form-item>
</el-form>
<el-form :rules="rules" class="login-container" label-position="left"
label-width="0px" v-loading="loading">
<h3 class="login_title">系统登录</h3>
<el-form-item prop="account">
<el-input type="text" v-model="loginForm.username"
auto-complete="off" placeholder="账号"></el-input>
</el-form-item>
<el-form-item prop="checkPass">
<el-input type="password" v-model="loginForm.password"
auto-complete="off" placeholder="密码"></el-input>
</el-form-item>
<el-checkbox class="login_remember" v-model="checked"
label-position="left"><span style="color: #505458">记住密码</span></el-checkbox>
<el-form-item style="width: 100%">
<el-button type="primary" style="width: 100%;background: #505458;border: none" v-on:click="login">登录</el-button>
</el-form-item>
</el-form>
</body>
</template>
<script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册