説明なし

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 ```