index.js 886 Bytes
const toastEn = {
  toast: {
    userName: 'please input username',
    phone: 'pleace input correct phone format',
    email: 'pleace input correct email format',
    tip: 'Tip',
    tipMessage: 'After you unbind wechat, you will not be able to use wechat to log in quickly. Are you sure you want to unbind it',
    verification: 'please input verification code',
    unbindingSuccess: 'Finish!',
    resetSuccess: 'Reset Successful'
  }

}
const toastZn = {
  toast: {
    userName: '请输入用户名',
    phone: '请输入正确的手机格式',
    email: '请输入正确的邮箱格式',
    tip: '友情提示',
    tipMessage: '解除微信绑定后,将无法使用微信快速登录,你确定解除吗?',
    verification: '请输入验证码',
    unbindingSuccess: '解绑成功!',
    resetSuccess: '重置成功!'
  }
}
export default {
  toastEn,
  toastZn
};