- 新增 `node-detail` 作品详情页面 - 优化 `account-detail` 页面的标题和字段 - 更新 `common-select` 组件,添加 `dropdownVisible
31 lines
652 B
Vue
31 lines
652 B
Vue
<!--
|
|
* @Author: RenXiaoDong
|
|
* @Date: 2025-06-28 11:21:10
|
|
-->
|
|
<template>
|
|
<div class="account-detail-wrap">
|
|
<div class="flex items-center mb-16px cursor-pointer" @click="handleBack">
|
|
<icon-left size="16" />
|
|
<span class="cts title ml-8px">账号列表</span>
|
|
</div>
|
|
<AccountInfo />
|
|
<NoteTable />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import AccountInfo from './components/account-info';
|
|
import NoteTable from './components/note-table';
|
|
import { useRouter } from 'vue-router';
|
|
|
|
const router = useRouter();
|
|
|
|
const handleBack = () => {
|
|
router.go(-1);
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import './style.scss';
|
|
</style>
|