19 lines
467 B
Vue
19 lines
467 B
Vue
![]() |
<!-- 用户字典 -->
|
|||
|
<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>
|