feat: 账号数据看板/ 统一table、checkbox组件样式

This commit is contained in:
rd
2025-06-28 11:31:49 +08:00
parent 80c6b30701
commit 3b1f85c47d
16 changed files with 542 additions and 113 deletions

View File

@ -0,0 +1,32 @@
<!--
* @Author: RenXiaoDong
* @Date: 2025-06-28 11:21:10
-->
<template>
<div>
<h1>账号详情</h1>
</div>
</template>
<script setup>
import { getAccountBoardDetail } from '@/api/all/propertyMarketing';
const route = useRoute();
const id = route.params.id;
const detailData = ref({});
const getDetail = async () => {
const { code, data } = await getAccountBoardDetail(id);
if (code === 200) {
detailData.value = data;
}
};
onMounted(() => {
getDetail();
});
</script>
<style scoped lang="scss">
@import './style.scss';
</style>