mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
<template>
|
|
<div>
|
|
<n-drawer v-model:show="showModal" :width="dialogWidth">
|
|
<n-drawer-content title="@{.tableComment}详情" closable>
|
|
<n-spin :show="loading" description="请稍候...">
|
|
<n-descriptions label-placement="left" class="py-2" column="1">
|
|
@{.item}
|
|
</n-descriptions>
|
|
</n-spin>
|
|
</n-drawer-content>
|
|
</n-drawer>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue';
|
|
import { useMessage } from 'naive-ui';
|
|
import { View } from '@{.importWebApi}';
|
|
import { State, newState, options } from './model';
|
|
import { adaModalWidth, getOptionLabel, getOptionTag } from '@/utils/hotgo';
|
|
import { getFileExt } from '@/utils/urlUtils';
|
|
|
|
const message = useMessage();
|
|
const loading = ref(false);
|
|
const showModal = ref(false);
|
|
const formValue = ref(newState(null));
|
|
const dialogWidth = computed(() => {
|
|
return adaModalWidth(580);
|
|
});
|
|
const fileAvatarCSS = computed(() => {
|
|
return {
|
|
'--n-merged-size': `var(--n-avatar-size-override, 80px)`,
|
|
'--n-font-size': `18px`,
|
|
};
|
|
});
|
|
|
|
//下载
|
|
function download(url: string) {
|
|
window.open(url);
|
|
}
|
|
|
|
function openModal(state: State) {
|
|
showModal.value = true;
|
|
loading.value = true;
|
|
View({ @{.pk.TsName}: state.@{.pk.TsName} })
|
|
.then((res) => {
|
|
formValue.value = res;
|
|
})
|
|
.finally(() => {
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
defineExpose({
|
|
openModal,
|
|
});
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|
|
|