mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-24 19:50:19 +08:00
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
<template>
|
||
<div>
|
||
<div class="n-layout-page-header">
|
||
<n-card :bordered="false" title="@{.tableComment}详情"> <!-- CURD详情页--> </n-card>
|
||
</div>
|
||
<n-card :bordered="false" class="proCard mt-4" size="small" :segmented="{ content: true }">
|
||
<n-descriptions label-placement="left" class="py-2" column="4">
|
||
@{.item}
|
||
</n-descriptions>
|
||
</n-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { computed, onMounted, ref } from 'vue';
|
||
import { useRouter } from 'vue-router';
|
||
import { useMessage } from 'naive-ui';
|
||
import { View } from '@/api/@{.varName | LcFirst}';
|
||
import { newState, options } from './model';
|
||
import { getOptionLabel, getOptionTag } from '@/utils/hotgo';
|
||
import { getFileExt } from '@/utils/urlUtils';
|
||
|
||
const message = useMessage();
|
||
const router = useRouter();
|
||
const id = Number(router.currentRoute.value.params.id);
|
||
const formValue = ref(newState(null));
|
||
const fileAvatarCSS = computed(() => {
|
||
return {
|
||
'--n-merged-size': `var(--n-avatar-size-override, 80px)`,
|
||
'--n-font-size': `18px`,
|
||
};
|
||
});
|
||
|
||
//下载
|
||
function download(url: string) {
|
||
window.open(url);
|
||
}
|
||
|
||
onMounted(async () => {
|
||
if (id < 1) {
|
||
message.error('@{.pk.Dc}不正确,请检查!');
|
||
return;
|
||
}
|
||
formValue.value = await View({ @{.pk.TsName}: id });
|
||
});
|
||
</script>
|
||
|
||
<style lang="less" scoped></style>
|