- Implemented getNPCsCreationStatus method in AdminController to retrieve the status of NPC creation jobs. - Enhanced AdminService to manage NPC creation jobs, including job ID generation, progress updates, and error handling. - Updated frontend CreateNPCView to display progress of NPC creation, including estimated time remaining and job status. - Added localization strings for progress reporting in both German and English. - Improved overall user experience by providing real-time feedback during NPC creation processes.
26 lines
377 B
Vue
26 lines
377 B
Vue
<template>
|
|
<main class="contenthidden">
|
|
<div class="contentscroll">
|
|
<router-view></router-view>
|
|
</div>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppContent'
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
main {
|
|
padding: 0;
|
|
background-color: #ffffff;
|
|
flex: 1;
|
|
}
|
|
|
|
.contentscroll {
|
|
padding: 20px;
|
|
}
|
|
</style>
|
|
|