原料库和成品库

This commit is contained in:
lq
2025-09-20 17:17:55 +08:00
parent c03142b85f
commit 1693cd477b

View File

@ -129,6 +129,7 @@
</div> </div>
</div> </div>
</div> </div>
<div v-show="isActive == 'ai'">
<a-drawer <a-drawer
title="原料库" title="原料库"
cancel-text="取消" cancel-text="取消"
@ -203,6 +204,8 @@
</div> </div>
</template> </template>
</a-drawer> </a-drawer>
</div>
<div v-show="isActive == 'chose'">
<a-drawer <a-drawer
title="成品库" title="成品库"
cancel-text="取消" cancel-text="取消"
@ -244,9 +247,11 @@
height="16" height="16"
class="mr-4px" class="mr-4px"
/> />
<span class="cts" :class="record.type === EnumManuscriptType.Image ? '!color-#25C883' : '!color-#6D4CFE'">{{ <span
record.type === EnumManuscriptType.Image ? '图文' : '视频' class="cts"
}}</span> :class="record.type === EnumManuscriptType.Image ? '!color-#25C883' : '!color-#6D4CFE'"
>{{ record.type === EnumManuscriptType.Image ? '图文' : '视频' }}</span
>
</div> </div>
</template> </template>
<template #uploader="{ record }"> <template #uploader="{ record }">
@ -265,7 +270,6 @@
</div> </div>
</template> </template>
</Table> </Table>
<!-- 分页控件 -->
<div v-if="pageInfo.total > 0" class="pagination-box"> <div v-if="pageInfo.total > 0" class="pagination-box">
<a-pagination <a-pagination
:total="pageInfo.total" :total="pageInfo.total"
@ -295,6 +299,7 @@
</div> </div>
</template> </template>
</a-drawer> </a-drawer>
</div>
</a-drawer> </a-drawer>
</template> </template>
@ -546,10 +551,6 @@ watch(showDriwer, (newVal) => {
} }
}); });
const handleTabSelect = (value) => {
isActive.value = value;
};
const handleDateChange = (date) => {}; const handleDateChange = (date) => {};
// 暴露方法给父组件 // 暴露方法给父组件
const showDrawer = (accountInfo = null) => { const showDrawer = (accountInfo = null) => {