|
|
@@ -23,32 +23,22 @@ export default {
|
|
|
this.$message.error(res.msg)
|
|
|
}
|
|
|
})
|
|
|
- // if(!this.formData.phone) {
|
|
|
- // this.$message.error('请输入手机号')
|
|
|
- // } else if(!this.formData.password) {
|
|
|
- // this.$message.error('请输入密码')
|
|
|
- // } else {
|
|
|
- // userLogin.then((res) => {
|
|
|
- // if(res.code === 1) {
|
|
|
- // console.log('成功')
|
|
|
- // }else {
|
|
|
- // this.$message.error(res.msg)
|
|
|
- // }
|
|
|
- // })
|
|
|
- // }
|
|
|
+ },
|
|
|
+ goToUrl() {
|
|
|
+ this.$router.push('/invite')
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
-<div class="flex-common-css p-24 box-sizing-border">
|
|
|
+<div class="flex-common-css p-24 box-sizing-border bgc-f">
|
|
|
<div class="fs-24 mb-30 fw-600">
|
|
|
嗨,欢迎登录
|
|
|
</div>
|
|
|
<el-image
|
|
|
class="img-box"
|
|
|
- :src="require('@/assets/img/logo/1.png')"
|
|
|
+ :src="require('@/assets/img/logo/logo.png')"
|
|
|
fit="cover"></el-image>
|
|
|
<div class="text-align-center fw-600 mb-32">
|
|
|
芭芭拉
|
|
|
@@ -71,7 +61,7 @@ export default {
|
|
|
登录
|
|
|
</div>
|
|
|
<div class="fs-16 fc-9 align-items-center flex-justify-center">
|
|
|
- 没有账号?<p class="fs-16 fc-16BB5D">立即注册</p>
|
|
|
+ 没有账号?<p class="fs-16 fc-16BB5D" @click="goToUrl">立即注册</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|