mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-20 05:00:12 +08:00
41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<template>
|
||
<a-list-item-meta>
|
||
<template #avatar>
|
||
<a-typography-paragraph>
|
||
{{ $t('userCenter.securitySettings.updatePhone.label.phone') }}
|
||
</a-typography-paragraph>
|
||
</template>
|
||
<template #description>
|
||
<div class="content">
|
||
<a-typography-paragraph v-if="loginStore.phone">
|
||
{{
|
||
$t(
|
||
'userCenter.securitySettings.updatePhone.placeholder.success.phone'
|
||
)
|
||
}}:{{ loginStore.phone }}
|
||
</a-typography-paragraph>
|
||
<a-typography-paragraph v-else class="tip">
|
||
{{
|
||
$t(
|
||
'userCenter.securitySettings.updatePhone.placeholder.error.phone'
|
||
)
|
||
}}
|
||
</a-typography-paragraph>
|
||
</div>
|
||
<div class="operation">
|
||
<a-link :title="$t('userCenter.securitySettings.button.update')">
|
||
{{ $t('userCenter.securitySettings.button.update') }}
|
||
</a-link>
|
||
</div>
|
||
</template>
|
||
</a-list-item-meta>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { useLoginStore } from '@/store';
|
||
|
||
const loginStore = useLoginStore();
|
||
</script>
|
||
|
||
<style scoped lang="less"></style>
|