把pc端的图标从图片换成了字体图标
This commit is contained in:
parent
e9de33ef21
commit
fe9e62a43d
|
@ -52,7 +52,7 @@
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<template v-slot:prepend>
|
<template v-slot:prepend>
|
||||||
<q-icon name="img:login/network.png" />
|
<q-icon name="public" class="background" />
|
||||||
</template>
|
</template>
|
||||||
<template v-if="data.ip_address" v-slot:append>
|
<template v-if="data.ip_address" v-slot:append>
|
||||||
<q-icon
|
<q-icon
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<template v-slot:prepend >
|
<template v-slot:prepend >
|
||||||
<q-icon name="img:login/user.png" />
|
<q-icon name="account_circle" class="background" />
|
||||||
</template>
|
</template>
|
||||||
<template v-if="data.user_name" v-slot:append>
|
<template v-if="data.user_name" v-slot:append>
|
||||||
<q-icon
|
<q-icon
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<template v-slot:prepend >
|
<template v-slot:prepend >
|
||||||
<q-icon name="img:login/password.png" />
|
<q-icon name="key" class="background" />
|
||||||
</template>
|
</template>
|
||||||
<template v-if="data.password" v-slot:append>
|
<template v-if="data.password" v-slot:append>
|
||||||
<q-icon
|
<q-icon
|
||||||
|
@ -190,6 +190,12 @@
|
||||||
</q-layout>
|
</q-layout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.background{
|
||||||
|
color: #3f69fd;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, onMounted, reactive, ref, Ref, computed } from "vue";
|
import { defineComponent, onMounted, reactive, ref, Ref, computed } from "vue";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue