mirror of https://github.com/halo-dev/halo-admin
Fix installation bug
parent
fe38230c97
commit
54e9372d79
|
@ -275,7 +275,7 @@ export default {
|
|||
}
|
||||
|
||||
// Handle migration
|
||||
if (this.migrationFile) {
|
||||
if (this.migrationData) {
|
||||
recoveryApi.migrate(this.migrationData).then(response => {
|
||||
this.$log.debug('Migrated successfullly')
|
||||
this.$message.success('数据迁移成功')
|
||||
|
|
|
@ -9,7 +9,13 @@
|
|||
class="animated fadeInUp"
|
||||
:style="{'animation-delay': '0.1s'}"
|
||||
>
|
||||
<a-input placeholder="用户名/邮箱"></a-input>
|
||||
<a-input placeholder="用户名/邮箱">
|
||||
<a-icon
|
||||
slot="prefix"
|
||||
type="user"
|
||||
style="color: rgba(0,0,0,.25)"
|
||||
/>
|
||||
</a-input>
|
||||
</a-form-item>
|
||||
<a-form-item
|
||||
class="animated fadeInUp"
|
||||
|
@ -18,7 +24,13 @@
|
|||
<a-input
|
||||
type="password"
|
||||
placeholder="密码"
|
||||
></a-input>
|
||||
>
|
||||
<a-icon
|
||||
slot="prefix"
|
||||
type="lock"
|
||||
style="color: rgba(0,0,0,.25)"
|
||||
/>
|
||||
</a-input>
|
||||
</a-form-item>
|
||||
<a-form-item
|
||||
class="animated fadeInUp"
|
||||
|
|
Loading…
Reference in New Issue