33 lines
555 B
Vue
33 lines
555 B
Vue
<!--
|
|
* @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>
|