BookingService/frontend/src/views/help/Account.vue

70 lines
2.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<a-card class="markdown-body">
<h3>1. 用户列表</h3>
<p><img
src='./img/账户管理0.png'
alt='账户管理0' referrerPolicy='no-referrer'/></p>
<p>该页面显示所有的用户信息</p>
<ol start=''>
<li>按照角色筛选<img
src='./img/账户管理1.png'
alt='账户管理1' referrerPolicy='no-referrer'/></li>
<li>排序<img
src='./img/账户管理2.png'
alt='账户管理2' referrerPolicy='no-referrer'/></li>
<li>按照用户ID用户名邮箱模糊搜索</li>
</ol>
<h3>2. 新建用户</h3>
<p><img
src='./img/账户管理3.png'
alt='账户管理3' referrerPolicy='no-referrer'/></p>
<ol start=''>
<li><p>用户名</p>
<p>不能重复可以由数字特殊字符中文英文组成</p>
</li>
<li><p>密码</p>
<blockquote><p>密码要求</p>
<ol start=''>
<li>不能为纯数字密码</li>
<li>不能与用户名相似</li>
<li>不能小于8位</li>
<li>不能是常见密码</li>
</ol>
<p><a href='https://docs.djangoproject.com/en/2.1/topics/auth/passwords/#password-validation'>详情参考</a></p>
</blockquote>
</li>
<li><p>确认密码</p>
<p>与密码相同</p>
</li>
<li><p>角色</p>
<blockquote><p>管理员拥有全部权限</p>
<p>教师能够添加学生每次预约可以选择多个座位</p>
<p>学生普通权限每次只能选择一个时间段</p>
</blockquote>
</li>
<li><p>状态</p>
<p>有效无效标识该用户能不能登录无论是本系统还是微信小程序等</p>
</li>
<li><p>邮箱</p>
<p>用户邮箱</p>
</li>
<li><p>积分</p>
<p>用户的初始积分大于0的正整数</p>
</li>
</ol>
<h3>3. 用户编辑</h3>
<p><img
src='./img/账户管理4.png'
alt='账户管理4' referrerPolicy='no-referrer'/></p>
</a-card>
</template>
<script>
export default {
name: 'Account'
}
</script>
<style scoped>
@import "css/markdown.css";
</style>