2025-06-28 11:31:49 +08:00
|
|
|
<!--
|
|
|
|
|
* @Author: RenXiaoDong
|
|
|
|
|
* @Date: 2025-06-28 11:21:10
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
2025-06-28 15:28:54 +08:00
|
|
|
<div class="account-detail-wrap">
|
|
|
|
|
<div class="flex items-center mb-16px cursor-pointer" @click="handleBack">
|
|
|
|
|
<icon-left size="16" />
|
2025-09-22 14:38:44 +08:00
|
|
|
<spa class="cts title ml-8px">账号列表</spa>
|
2025-06-28 15:28:54 +08:00
|
|
|
</div>
|
|
|
|
|
<AccountInfo />
|
|
|
|
|
<NoteTable />
|
2025-06-28 11:31:49 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-06-28 15:28:54 +08:00
|
|
|
import AccountInfo from './components/account-info';
|
|
|
|
|
import NoteTable from './components/note-table';
|
|
|
|
|
import { useRouter } from 'vue-router';
|
2025-06-28 11:31:49 +08:00
|
|
|
|
2025-06-28 15:28:54 +08:00
|
|
|
const router = useRouter();
|
2025-06-28 11:31:49 +08:00
|
|
|
|
2025-06-28 15:28:54 +08:00
|
|
|
const handleBack = () => {
|
2025-07-14 17:30:59 +08:00
|
|
|
router.go(-1);
|
2025-06-28 11:31:49 +08:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
@import './style.scss';
|
|
|
|
|
</style>
|