feat: 统一后端分页查询与前端服务层适配
后端新增通用分页模块,为报销单、员工、预算、agent 资产等 端点统一接入分页参数和游标查询,优化 repository 层分页实 现,前端服务层适配分页响应结构,完善预算图表和全局样式, 优化侧边栏和企业选择器组件,引入 Element Plus 插件注册。
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
<template>
|
||||
<div class="app-desktop-shell" :style="desktopScaleStyle">
|
||||
<div class="app-desktop-stage">
|
||||
<RouterView />
|
||||
<ToastNotification :toast-text="toastText" />
|
||||
<ElConfigProvider :locale="zhCn">
|
||||
<RouterView />
|
||||
<ToastNotification :toast-text="toastText" />
|
||||
</ElConfigProvider>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -10,6 +12,8 @@
|
||||
<script setup>
|
||||
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue'
|
||||
import { RouterView } from 'vue-router'
|
||||
import { ElConfigProvider } from 'element-plus/es/components/config-provider/index.mjs'
|
||||
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
||||
|
||||
import './assets/styles/global.css'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user