Files
lingji-work-fe/src/views/property-marketing/media-account/account-detail/index.vue

31 lines
676 B
Vue
Raw Normal View History

<!--
* @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" />
2025-07-05 14:27:07 +08:00
<spa class="cts title ml-8px">账号详情</spa>
</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.push('/media-account/dashboard');
};
</script>
<style scoped lang="scss">
@import './style.scss';
</style>