暂无描述

UI 24adde5b32 登陆页面优化,完成图片验证码功能和重置功能 2 年之前
mock 6d94ea901a 个人中心 2 年之前
picture 24adde5b32 登陆页面优化,完成图片验证码功能和重置功能 2 年之前
plop-templates 6d94ea901a 个人中心 2 年之前
public 6d94ea901a 个人中心 2 年之前
src 24adde5b32 登陆页面优化,完成图片验证码功能和重置功能 2 年之前
tests 6d94ea901a 个人中心 2 年之前
.editorconfig 6d94ea901a 个人中心 2 年之前
.env.development 6d94ea901a 个人中心 2 年之前
.env.production f56966696a 编写用户注册页面 2 年之前
.env.staging 6d94ea901a 个人中心 2 年之前
.eslintignore 6d94ea901a 个人中心 2 年之前
.eslintrc.js 6d94ea901a 个人中心 2 年之前
.gitignore 6d94ea901a 个人中心 2 年之前
.npmrc 6d94ea901a 个人中心 2 年之前
.travis.yml 6d94ea901a 个人中心 2 年之前
LICENSE 6d94ea901a 个人中心 2 年之前
babel.config.js 6d94ea901a 个人中心 2 年之前
jest.config.js 6d94ea901a 个人中心 2 年之前
jsconfig.json 6d94ea901a 个人中心 2 年之前
package.json 6d94ea901a 个人中心 2 年之前
plopfile.js 6d94ea901a 个人中心 2 年之前
postcss.config.js 6d94ea901a 个人中心 2 年之前
readme.md f56966696a 编写用户注册页面 2 年之前
vue.config.js 6d94ea901a 个人中心 2 年之前

readme.md

验证码及用户注册

已完成效果 预期

  • login页面添加“记住密码” && "注册" && "重置"
  • 添加前端验证码 ```js // api添加验证码接口 export function getCodeImg() { return request({ url: '/captchaImage', headers: { isToken: false }, method: 'get', timeout: 20000 }) }

// index.vue ```