《企业所得税弥补亏损明细表》(通常为 A106000表)是企业所得税年度纳税申报的附表之一,用于记录企业以前年度的亏损额、本年度弥补亏损情况以及尚未结转的亏损余额。其核心作用是:
在我国企业税务申报中,关于“账载金额”和“实际发生额”的填写规则,需结合会计处理和企业所得税法的规定。
以下是一些具体解释及填报建议:
按照如下三步操作即可:
1 | 2 | 3 |
---|---|---|
![]() | ![]() | ![]() |
代码如下:
html<script setup lang="ts">
const { image } = defineProps<{ image?: string }>();
const loading = ref(true);
onMounted(() => {
loading.value = false;
});
</script>
<template>
<div class="m-2 w-40 h-40 border border-[#f6467c] rounded-sm">
<div
class="relative image bg-[rgba(242,197,211,0.5)] p-2 rounded-sm cursor-pointer overflow-hidden"
>
<img
v-if="!loading"
:src="image"
alt="image card"
class="aspect-square w-full h-full object-contain rounded-sm"
/>
<div
v-if="loading"
class="absolute inset-0 w-full h-full flex justify-center items-center rounded-sm bg-gray-100"
>
<div
class="w-12 h-12 h-12 border-b-2 border-gray-300 border-opacity-50 rounded-full animate-spin"
></div>
</div>
</div>
</div>
</template>
<style scoped></style>
提示:本文翻译自官方文档!请以Civitai模型页面最新说明文档为准!
如果用户在使用 ComfyUI 时遇到问题,请尝试使用以下图像读取工作流程。此方法或可帮助解决问题。