Browse Source

Merge branch 'master' of https://gitlab.com/halo_dev/halo-admin

pull/9/head
ruibaby 6 years ago
parent
commit
cca8e17e91
  1. 2
      src/views/system/Installation.vue
  2. 16
      src/views/user/Login.vue

2
src/views/system/Installation.vue

@ -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('数据迁移成功')

16
src/views/user/Login.vue

@ -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…
Cancel
Save