| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <ConfigProvider :locale="getAntdLocale">
- <AppProvider>
- <RouterView />
- </AppProvider>
- </ConfigProvider>
- </template>
- <script lang="ts" setup>
- import { ConfigProvider } from 'ant-design-vue';
- import { AppProvider } from '/@/components/Application';
- import { useTitle } from '/@/hooks/web/useTitle';
- import { useLocale } from '/@/locales/useLocale';
- // support Multi-language
- const { getAntdLocale } = useLocale();
- // Listening to page changes and dynamically changing site titles
- useTitle();
- </script>
- <style lang="less">
- .desc-wrap-BasicTable {
- background-color: #f0f2f5;
- .vben-basic-table-form-container {
- padding: 0;
- }
- }
- .ant-input-textarea-clear-icon {
- margin: 8px 2px 0 0 !important;
- }
- // .ant-table-row-cell-break-word:empty:after {
- // content: '-';
- // }
- // .ant-table-cell:empty:after {
- // content: '-';
- // }
- // .ant-table-cell span:empty:after {
- // content: '-';
- // }
- .ant-table-row-indent {
- &:after {
- content: '' !important;
- }
- }
- .ant-badge span:empty:after {
- content: '' !important;
- }
- </style>
|