19 lines
467 B
Vue
Raw Normal View History

2025-07-06 20:45:20 +08:00
<!-- 用户字典 -->
<template>
<div class="main__container white-bg table">
<header class="dict-header">
<!-- 写一写查询条件 -->
</header>
<main class="dict-main">
<!-- 写一写操作按钮新增字典等 -->
<div class="dict-main__buttonList"></div>
<!-- 字典表格 -->
<n-table></n-table>
</main>
</div>
</template>
<script setup lang='ts'>
</script>
<style scoped lang='scss'>
</style>