diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e006ed6..dd736f8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,6 @@ - 更新 `vue` 版本至 `3.4.7` - 更新 `naive-ui` 版本至 `2.37.3` - 更新最新版本 `vue` 后,更新 `createDiscreteApi` 方法注册上下文,改为函数包裹,避免 `slot default invoked outside of render` 警告 -- 使用 [`NFlex`](https://www.naiveui.com/zh-CN/dark/components/flex) 组件替换 `NSpace` 组件,根据官方建议,尽量使用该组件 - `menu store` 相关 - 优化 `setupAppMenu` 方法,初始化时会拼接完整的 `fullPath`,避免 `url`, `menu value` 更新路由时重复处理 `path`,提高性能 - 优化 `updateMenuKeyWhenRouteUpdate` 方法,减少 `path` 处理操作 diff --git a/src/app-components/app/AppAvatar/index.tsx b/src/app-components/app/AppAvatar/index.tsx index b977b47f..73696d0c 100644 --- a/src/app-components/app/AppAvatar/index.tsx +++ b/src/app-components/app/AppAvatar/index.tsx @@ -19,9 +19,9 @@ import './index.scss' -import { NAvatar, NFlex } from 'naive-ui' +import { NAvatar, NSpace } from 'naive-ui' -import { avatarProps, flexProps } from 'naive-ui' +import { avatarProps, spaceProps } from 'naive-ui' import { APP_CATCH_KEY } from '@/app-config' import { getStorage } from '@/utils' @@ -33,7 +33,7 @@ const AppAvatar = defineComponent({ name: 'AppAvatar', props: { ...avatarProps, - ...flexProps, + ...spaceProps, cursor: { type: String, default: 'auto', @@ -64,11 +64,12 @@ const AppAvatar = defineComponent({ }, render() { return ( -
{this.signing?.name}
-
+ ) }, }) diff --git a/src/app-components/app/AppLockScreen/components/UnlockScreen/index.tsx b/src/app-components/app/AppLockScreen/components/UnlockScreen/index.tsx index 67a739ab..d2c31e2d 100644 --- a/src/app-components/app/AppLockScreen/components/UnlockScreen/index.tsx +++ b/src/app-components/app/AppLockScreen/components/UnlockScreen/index.tsx @@ -11,7 +11,7 @@ /** 解锁界面 */ -import { NInput, NForm, NFormItem, NButton, NFlex } from 'naive-ui' +import { NInput, NForm, NFormItem, NButton, NSpace } from 'naive-ui' import AppAvatar from '@/app-components/app/AppAvatar' import dayjs from 'dayjs' @@ -137,14 +137,14 @@ export default defineComponent({ }} /> - + 返回登陆 进入系统 - +
diff --git a/src/app-components/app/RayLink/index.tsx b/src/app-components/app/RayLink/index.tsx index 908e38ec..5ca52f8c 100644 --- a/src/app-components/app/RayLink/index.tsx +++ b/src/app-components/app/RayLink/index.tsx @@ -3,7 +3,7 @@ * 友情链接组件,无实际项目意义 */ -import { NAvatar, NTooltip, NFlex } from 'naive-ui' +import { NAvatar, NTooltip, NSpace } from 'naive-ui' interface AvatarOptions { key: string @@ -65,7 +65,7 @@ export default defineComponent({ }, render() { return ( - + {this.avatarOptions.map((curr) => ( {{ @@ -85,7 +85,7 @@ export default defineComponent({ }} ))} - + ) }, }) diff --git a/src/components/RCollapseGrid/src/index.tsx b/src/components/RCollapseGrid/src/index.tsx index 6b3f4244..9c4babe1 100644 --- a/src/components/RCollapseGrid/src/index.tsx +++ b/src/components/RCollapseGrid/src/index.tsx @@ -21,7 +21,7 @@ import './index.scss' -import { NCard, NGrid, NGridItem, NFlex } from 'naive-ui' +import { NCard, NGrid, NGridItem, NSpace } from 'naive-ui' import { RIcon } from '@/components' import { call } from '@/utils' @@ -85,10 +85,10 @@ export default defineComponent({ > {this.$slots.default?.()} - + {this.$slots.action?.()} {this.CollapseIcon()} - + ), diff --git a/src/components/RTable/src/Table.tsx b/src/components/RTable/src/Table.tsx index 6f947985..aaad7d3c 100644 --- a/src/components/RTable/src/Table.tsx +++ b/src/components/RTable/src/Table.tsx @@ -11,7 +11,7 @@ import './index.scss' -import { NCard, NDataTable, NDropdown, NFlex } from 'naive-ui' +import { NCard, NDataTable, NDropdown, NSpace } from 'naive-ui' import Size from './components/Size' import Fullscreen from './components/Fullscreen' import C from './components/C' @@ -238,10 +238,10 @@ export default defineComponent({ defaultElement:
, }), 'header-extra': () => ( - + {/* eslint-disable @typescript-eslint/no-explicit-any */} {tool(this.$props as any)} - + ), footer: () => this.$slots.tableFooter?.(), action: () => this.$slots.tableAction?.(), diff --git a/src/components/RTable/src/components/C.tsx b/src/components/RTable/src/components/C.tsx index a2962afe..636fabea 100644 --- a/src/components/RTable/src/components/C.tsx +++ b/src/components/RTable/src/components/C.tsx @@ -18,7 +18,7 @@ * 2. 大量数据的时候,可能会出现性能问题 */ -import { NPopover, NFlex, NTree } from 'naive-ui' +import { NPopover, NSpace, NTree } from 'naive-ui' import { RIcon } from '@/components' import config from '../config' @@ -129,7 +129,7 @@ export default defineComponent({ return { ...attr, suffix: () => ( - + - + ), } }) as C[] diff --git a/src/directives/README_DIR.md b/src/directives/README_DIR.md index 8e76c48e..382f1a0b 100644 --- a/src/directives/README_DIR.md +++ b/src/directives/README_DIR.md @@ -8,7 +8,7 @@ #### 示例 ```tsx -import { NFlex, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' +import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' const Demo = defineComponent({ name: 'Demo', @@ -46,7 +46,7 @@ const Demo = defineComponent({ #### 示例 ```tsx -import { NFlex, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' +import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' const Demo = defineComponent({ name: 'Demo', @@ -64,7 +64,7 @@ const Demo = defineComponent({ }, render() { return ( - +

我执行了{this.demoValue}次

该方法将延迟 1s 执行

-
+ ) }, }) @@ -99,7 +99,7 @@ const Demo = defineComponent({ #### 示例 ```tsx -import { NFlex, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' +import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' const Demo = defineComponent({ name: 'Demo', @@ -117,7 +117,7 @@ const Demo = defineComponent({ }, render() { return ( - +

我执行了{this.demoValue}次

该方法 1s 内仅会执行一次

-
+ ) }, }) @@ -149,7 +149,7 @@ const Demo = defineComponent({ ```tsx import { - NFlex, + NSpace, NCard, NInput, NInputGroup, @@ -170,7 +170,7 @@ const Demo = defineComponent({ }, render() { return ( - + {{ checked: () => '取消', @@ -182,22 +182,22 @@ const Demo = defineComponent({ 组件提供了完整的 disabled 属性,所以在组件库有禁用需求时,直接调用组件库 disabled 属性即可

- + - +
-
+
- +

我是可以被禁用的文本内容

-
+
- + 按钮 @@ -205,10 +205,10 @@ const Demo = defineComponent({ - + -
- + + ) }, }) diff --git a/src/layout/components/MenuTag/index.tsx b/src/layout/components/MenuTag/index.tsx index 65165439..b239480a 100644 --- a/src/layout/components/MenuTag/index.tsx +++ b/src/layout/components/MenuTag/index.tsx @@ -33,7 +33,7 @@ import './index.scss' import { NScrollbar, - NFlex, + NSpace, NLayoutHeader, NDropdown, NButton, @@ -456,12 +456,13 @@ export default defineComponent({ this.actionState.actionDropdownShow = false }} /> - - ))} - + - - - + +
) diff --git a/src/layout/components/SiderBar/components/GlobalSearch/index.tsx b/src/layout/components/SiderBar/components/GlobalSearch/index.tsx index 4e4ac4c3..7dfc5c8f 100644 --- a/src/layout/components/SiderBar/components/GlobalSearch/index.tsx +++ b/src/layout/components/SiderBar/components/GlobalSearch/index.tsx @@ -20,7 +20,7 @@ import './index.scss' -import { NInput, NModal, NResult, NScrollbar, NFlex } from 'naive-ui' +import { NInput, NModal, NResult, NScrollbar, NSpace } from 'naive-ui' import { RIcon } from '@/components' import { queryElements, addClass, removeClass } from '@/utils' @@ -255,7 +255,7 @@ export default defineComponent({ } const SearchItem = ({ menuOption }: { menuOption: AppMenuOption }) => ( -
{RenderPreIcon(menuOption.meta)}
{menuOption.breadcrumbLabel}
-
+ ) watchEffect(() => { @@ -320,30 +320,30 @@ export default defineComponent({ {searchOptions.length ? ( - + {searchOptions.map((curr) => ( ))} - + ) : ( {{ icon: () => null, default: () => ( - 暂无搜索结果 - + ), }} )} ))} - + diff --git a/src/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index.tsx b/src/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index.tsx index de578ba0..959e7e88 100644 --- a/src/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index.tsx +++ b/src/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NSwitch, NTooltip } from 'naive-ui' +import { NSpace, NSwitch, NTooltip } from 'naive-ui' import { RIcon } from '@/components' import { useSettingGetters } from '@/store' @@ -44,7 +44,7 @@ export default defineComponent({ const { $t, changeDarkTheme, changeLightTheme, railStyle } = this return ( - + {{ trigger: () => ( @@ -69,7 +69,7 @@ export default defineComponent({ : $t('headerSettingOptions.ThemeOptions.Light'), }} - + ) }, }) diff --git a/src/layout/components/SiderBar/components/SettingDrawer/index.tsx b/src/layout/components/SiderBar/components/SettingDrawer/index.tsx index 8ee0058d..77fa9ab6 100644 --- a/src/layout/components/SiderBar/components/SettingDrawer/index.tsx +++ b/src/layout/components/SiderBar/components/SettingDrawer/index.tsx @@ -14,7 +14,7 @@ import { NDrawer, NDrawerContent, NDivider, - NFlex, + NSpace, NSwitch, NColorPicker, NDescriptions, @@ -111,7 +111,7 @@ const SettingDrawer = defineComponent({ width={this.width} > - + {$t('headerSettingOptions.ThemeOptions.Title')} @@ -171,7 +171,7 @@ const SettingDrawer = defineComponent({ /> - + ) diff --git a/src/layout/components/SiderBar/index.tsx b/src/layout/components/SiderBar/index.tsx index b8406934..c756b543 100644 --- a/src/layout/components/SiderBar/index.tsx +++ b/src/layout/components/SiderBar/index.tsx @@ -19,7 +19,7 @@ import './index.scss' -import { NLayoutHeader, NFlex, NDropdown } from 'naive-ui' +import { NLayoutHeader, NSpace, NDropdown } from 'naive-ui' import { RIcon } from '@/components' import TooltipIcon from '@/layout/components/SiderBar/components/TooltipIcon' import SettingDrawer from './components/SettingDrawer' @@ -128,12 +128,12 @@ export default defineComponent({ return ( - - + {this.leftIconOptions.map((curr) => ( ))} {this.getBreadcrumbSwitch ? : null} - - + + {this.rightTooltipIconOptions.map((curr) => ( - - + + + - + ) }, }) diff --git a/src/views/dashboard/index.tsx b/src/views/dashboard/index.tsx index 6fc1a4ee..7bb95331 100644 --- a/src/views/dashboard/index.tsx +++ b/src/views/dashboard/index.tsx @@ -6,7 +6,7 @@ import { NDescriptions, NDescriptionsItem, NTag, - NFlex, + NSpace, NP, NH6, } from 'naive-ui' @@ -20,34 +20,34 @@ const Dashboard = defineComponent({ { label: '掌握搬砖框架', des: () => ( - + Vue3.x React - + ), }, { label: '从事搬砖时长', des: () => ( - + 练习时长两年半的小白前端搬砖师 - + ), }, { label: '个人', des: () => ( - + 努力搬砖、努力摸鱼, 建设美丽家园 - + ), span: 2, }, { label: '补充说明', des: () => ( - + 如果有希望补充的功能可以在 提一个 Issues - + ), span: 2, }, @@ -110,13 +110,13 @@ const Dashboard = defineComponent({ 技术栈 - + {this.technologyTagOptions.map((curr) => ( {curr.label} ))} - + 项目介绍 diff --git a/src/views/demo/axios/index.tsx b/src/views/demo/axios/index.tsx index ae06a4f5..34d6f017 100644 --- a/src/views/demo/axios/index.tsx +++ b/src/views/demo/axios/index.tsx @@ -1,6 +1,6 @@ import './index.scss' -import { NCard, NLayout, NFlex, NInput, NButton } from 'naive-ui' +import { NCard, NLayout, NSpace, NInput, NButton } from 'naive-ui' import { getWeather, getTypicode } from '@/api/demo/test' import { useRequest, useHookPlusRequest } from '@/axios' @@ -77,7 +77,7 @@ const Axios = defineComponent({ render() { return ( - +

请求

useRequest

@@ -100,17 +100,17 @@ const Axios = defineComponent({

3.详情请查看文档

- + 获取数据

结果:  {this.demoLoading ? '获取中...' : this.demoData?.title}

-
+

使用 useHookPlusRequest 获取

- + { @@ -122,10 +122,10 @@ const Axios = defineComponent({ 当前状态:  {this.throttleDemoLoading ? '获取中...' : '获取成功!!!'} - + - + { @@ -137,10 +137,10 @@ const Axios = defineComponent({ 当前状态:  {this.debounceDemoLoading ? '获取中...' : '获取成功!!!'} - + - + { @@ -152,9 +152,9 @@ const Axios = defineComponent({ 当前状态:  {this.weatherDemoLoading ? '获取中...' : '获取成功!!!'} - + - + ) }, diff --git a/src/views/demo/context-menu/index.tsx b/src/views/demo/context-menu/index.tsx index 3712b0d0..12033afc 100644 --- a/src/views/demo/context-menu/index.tsx +++ b/src/views/demo/context-menu/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NCard, NDropdown } from 'naive-ui' +import { NSpace, NCard, NDropdown } from 'naive-ui' import { useContextmenuCoordinate } from '@/hooks' @@ -52,9 +52,9 @@ export default defineComponent({ const { x, y, show } = this return ( - + - +

默认点击元素外部会关闭菜单。

右击
-
+
-
+ ) }, }) diff --git a/src/views/demo/directive/index.tsx b/src/views/demo/directive/index.tsx index ca5b71b6..de0a5ec1 100644 --- a/src/views/demo/directive/index.tsx +++ b/src/views/demo/directive/index.tsx @@ -10,7 +10,7 @@ */ import { - NFlex, + NSpace, NCard, NInput, NInputGroup, @@ -50,7 +50,7 @@ const RDirective = defineComponent({ }, render() { return ( - + 该页面展示如何使用已封装好的指令 @@ -65,7 +65,7 @@ const RDirective = defineComponent({ - +

我执行了{this.throttleBtnClickCount}次

该方法 1s 内仅会执行一次

-
+
- +

我执行了{this.debounceBtnClickCount}次

该方法将延迟 1s 执行

-
+
- + {{ checked: () => '取消', @@ -120,12 +120,12 @@ const RDirective = defineComponent({ - +

我是可以被禁用的文本内容

-
+
- + @@ -133,11 +133,11 @@ const RDirective = defineComponent({ 按钮 - + -
+ - + ) }, }) diff --git a/src/views/demo/echart/index.tsx b/src/views/demo/echart/index.tsx index ab274742..2fe1170c 100644 --- a/src/views/demo/echart/index.tsx +++ b/src/views/demo/echart/index.tsx @@ -1,6 +1,6 @@ import './index.scss' -import { NCard, NSwitch, NFlex, NH2, NButton } from 'naive-ui' +import { NCard, NSwitch, NSpace, NH2, NButton } from 'naive-ui' import { RChart } from '@/components' import type { RChartType } from '@/components' @@ -239,13 +239,13 @@ const Echart = defineComponent({ 强制渲染过渡动画(animation),预设 card 风格图表 - + 渲染 卸载 更新配置项 - +
+ - + ) }, }) diff --git a/src/views/demo/mock-demo/index.tsx b/src/views/demo/mock-demo/index.tsx index 50308925..9fe56d9e 100644 --- a/src/views/demo/mock-demo/index.tsx +++ b/src/views/demo/mock-demo/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NCard, NButton, NFormItemGi, NInput, NForm } from 'naive-ui' +import { NSpace, NCard, NButton, NFormItemGi, NInput, NForm } from 'naive-ui' import { RCollapseGrid, RTable } from '@/components' import { useHookPlusRequest } from '@/axios' @@ -78,7 +78,7 @@ const MockDemo = defineComponent({ key: 'action', render: (row: Person) => { return ( - + 删除 - + ) }, }, @@ -147,7 +147,7 @@ const MockDemo = defineComponent({ }, render() { return ( - +

mock @@ -187,7 +187,7 @@ const MockDemo = defineComponent({ pagination={this.paginationRef} remote /> - + ) }, }) diff --git a/src/views/demo/modal-demo/index.tsx b/src/views/demo/modal-demo/index.tsx index a5476adc..3b873bed 100644 --- a/src/views/demo/modal-demo/index.tsx +++ b/src/views/demo/modal-demo/index.tsx @@ -10,7 +10,7 @@ */ import { RModal } from '@/components' -import { NButton, NCard, NFlex } from 'naive-ui' +import { NButton, NCard, NSpace } from 'naive-ui' export default defineComponent({ name: 'ModalDemo', @@ -27,16 +27,16 @@ export default defineComponent({ }, render() { return ( - + - +

memoryPosition: 是否记住上一次被拖拽的位置,如果设置为 true,那么下一次打开的时候会自动定位到上一次的位置。

fullscreen: 全屏模态框。

dad: 启用拖拽,当配置为 false 时,会禁用拖拽效果。

-
+
(this.modal3 = true)}>对话框模态框 - +

全屏模态框需要同时设置:fullscreen 为 true,并且 preset 为 card 时才会生效。

(this.modal1 = true)}>打开 -
+

@@ -91,7 +91,7 @@ export default defineComponent({ 所有的宽度配置属性都会注入一个对应的 `css variable`,有时候会用上。

-
+ ) }, }) diff --git a/src/views/demo/precision/index.tsx b/src/views/demo/precision/index.tsx index 2bb440d8..ea228eb5 100644 --- a/src/views/demo/precision/index.tsx +++ b/src/views/demo/precision/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NLayout, NCard, NDynamicTags, NFlex, NInputNumber } from 'naive-ui' +import { NLayout, NCard, NDynamicTags, NSpace, NInputNumber } from 'naive-ui' import { add, subtract, multiply, divide, distribute, format } from '@/utils' @@ -67,7 +67,7 @@ const CalculatePrecision = defineComponent({ https://currency.js.org/#subtract

- + {{ default: () => ( @@ -131,7 +131,7 @@ const CalculatePrecision = defineComponent({ {{ default: () => ( - + { @@ -144,14 +144,14 @@ const CalculatePrecision = defineComponent({ this.updateDistributeValue() }} /> - + ), footer: () => { return '结果: ' + this.distributeOutputValue.join(', ') }, }}
-
+ ) }, diff --git a/src/views/demo/qrcode/index.tsx b/src/views/demo/qrcode/index.tsx index 979223ac..e7a990c5 100644 --- a/src/views/demo/qrcode/index.tsx +++ b/src/views/demo/qrcode/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NCard, NButton } from 'naive-ui' +import { NSpace, NCard, NButton } from 'naive-ui' import { RQRCode } from '@/components' import LOGO from '@/assets/images/ray.svg' @@ -31,7 +31,7 @@ export default defineComponent({ }, render() { return ( - +

基于 awesome-qr 进行封装,支持 LOGO、gif、backgroundImage 等属性。 @@ -40,7 +40,7 @@ export default defineComponent({

具体使用请参考 props 配置项

- + - +
- + - + - - + + { this.qrcodeStatus = 'loading' @@ -90,8 +90,8 @@ export default defineComponent({ > 下载二维码 - - + + 当前二维码内容:{this.qrcodeText} - - + + -
+ ) }, }) diff --git a/src/views/demo/router-demo/router-demo-detail/index.tsx b/src/views/demo/router-demo/router-demo-detail/index.tsx index a36b05da..93d956ca 100644 --- a/src/views/demo/router-demo/router-demo-detail/index.tsx +++ b/src/views/demo/router-demo/router-demo-detail/index.tsx @@ -9,13 +9,13 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NCard, NFlex } from 'naive-ui' +import { NCard, NSpace } from 'naive-ui' const RouterDemoDetail = defineComponent({ name: 'RouterDemoDetail', render() { return ( - + 你好 {this.$route.query.name} @@ -27,7 +27,7 @@ const RouterDemoDetail = defineComponent({ 中,将所需页面配置为 sameLevel 即可。 - + ) }, }) diff --git a/src/views/demo/router-demo/router-demo-home/index.tsx b/src/views/demo/router-demo/router-demo-home/index.tsx index be1872c0..08c919da 100644 --- a/src/views/demo/router-demo/router-demo-home/index.tsx +++ b/src/views/demo/router-demo/router-demo-home/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NButton } from 'naive-ui' +import { NSpace, NButton } from 'naive-ui' import { RTable } from '@/components' import type { DataTableColumns } from 'naive-ui' @@ -44,7 +44,7 @@ const RouterDemoHome = defineComponent({ key: '', render: (row) => { return ( - + 详情 - + ) }, }, @@ -83,9 +83,9 @@ const RouterDemoHome = defineComponent({ }, render() { return ( - + - + ) }, }) diff --git a/src/views/demo/svg-icons/index.tsx b/src/views/demo/svg-icons/index.tsx index 0380b503..9eaa8c5f 100644 --- a/src/views/demo/svg-icons/index.tsx +++ b/src/views/demo/svg-icons/index.tsx @@ -11,7 +11,7 @@ import './index.scss' -import { NFlex, NCard, NPopover } from 'naive-ui' +import { NSpace, NCard, NPopover } from 'naive-ui' import { RIcon } from '@/components' const PreviewSVGIcons = defineComponent({ @@ -38,7 +38,7 @@ const PreviewSVGIcons = defineComponent({ {{ 'header-extra': () => '点击图标复制代码', default: () => ( - + {this.icons.map((curr) => (
))} -
+ ), }} diff --git a/src/views/demo/table/index.tsx b/src/views/demo/table/index.tsx index e3d86d49..ac5d2404 100644 --- a/src/views/demo/table/index.tsx +++ b/src/views/demo/table/index.tsx @@ -17,7 +17,7 @@ import { NInput, NDatePicker, NSwitch, - NFlex, + NSpace, NPopover, NCard, } from 'naive-ui' @@ -74,7 +74,7 @@ const TableView = defineComponent({ title: 'Action', key: 'actions', render: (row: RowData) => ( - + 查看 - + ), }, ] @@ -155,7 +155,7 @@ const TableView = defineComponent({ }, render() { return ( - + 基于 NDataTable 封装,继承该组件所有 props 属性。查看 RTable props 文件即可查看该组件拓展项 @@ -201,12 +201,12 @@ const TableView = defineComponent({ + 标题插槽: (this.tableLoading = value)} > - + } data={this.tableData} v-model:columns={this.actionColumns} @@ -239,7 +239,7 @@ const TableView = defineComponent({ tableAction: () => '表格的操作区域内容插槽,有时候可能会用上', }} - + ) }, }) diff --git a/src/views/demo/template-hooks/index.tsx b/src/views/demo/template-hooks/index.tsx index bc9176a3..c299e135 100644 --- a/src/views/demo/template-hooks/index.tsx +++ b/src/views/demo/template-hooks/index.tsx @@ -9,7 +9,7 @@ * @remark 今天也是元气满满撸代码的一天 */ -import { NFlex, NCard, NButton, NInput } from 'naive-ui' +import { NSpace, NCard, NButton, NInput } from 'naive-ui' import { useAppNavigation, @@ -79,7 +79,7 @@ export default defineComponent({ } = this return ( - +

hooks/template 包存放模板专属 hook @@ -87,29 +87,29 @@ export default defineComponent({

- +

getAppTheme 获取当前主题色: {getAppTheme().themeLabel}

- + changeDarkTheme()}>切换暗黑主题 changeLightTheme()}>切换明亮主题 toggleTheme()}>切换主题 - -
+
+ - + { setWatermarkContent(val) }} /> - + showWatermark()}>显示水印 hiddenWatermark()}>隐藏水印 toggleWatermark()}>切换水印 - - + +

@@ -117,7 +117,7 @@ export default defineComponent({ vue 生命周期)。默认 800ms 延迟。


- + { reload() @@ -136,7 +136,7 @@ export default defineComponent({ > 触发加载动画(不强制刷新) - +

@@ -167,7 +167,7 @@ export default defineComponent({ 跳转至多级菜单 - + ) }, }) diff --git a/src/views/login/components/SSOSigning/index.tsx b/src/views/login/components/SSOSigning/index.tsx index 84c86e41..a460ad45 100644 --- a/src/views/login/components/SSOSigning/index.tsx +++ b/src/views/login/components/SSOSigning/index.tsx @@ -18,7 +18,7 @@ import './index.scss' -import { NFlex, NPopover } from 'naive-ui' +import { NSpace, NPopover } from 'naive-ui' import { RIcon } from '@/components' interface SSOSigningOptions { @@ -59,7 +59,7 @@ const SSOSigning = defineComponent({ }, render() { return ( - + {this.ssoSigningOptions.map((curr) => ( {{ @@ -75,7 +75,7 @@ const SSOSigning = defineComponent({ }} ))} - + ) }, }) diff --git a/src/views/login/index.scss b/src/views/login/index.scss index fa0ee0c3..ec5d0d0e 100644 --- a/src/views/login/index.scss +++ b/src/views/login/index.scss @@ -13,12 +13,26 @@ $positionY: 24px; position: relative; &::before { - content: ""; + content: ''; position: absolute; width: var(--login-height); height: 2px; - background: linear-gradient(135deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%), - linear-gradient(45deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%); + background: linear-gradient( + 135deg, + transparent, + transparent 75%, + #2080f0, + transparent 80%, + transparent 100% + ), + linear-gradient( + 45deg, + transparent, + transparent 75%, + #2080f0, + transparent 80%, + transparent 100% + ); background-size: 1em 1em; background-repeat: repeat-x, repeat-x; transform: rotate(90deg); diff --git a/src/views/login/index.tsx b/src/views/login/index.tsx index fdd3ca97..80406069 100644 --- a/src/views/login/index.tsx +++ b/src/views/login/index.tsx @@ -1,7 +1,7 @@ import './index.scss' import { - NFlex, + NSpace, NCard, NTabs, NTabPane, @@ -63,13 +63,13 @@ const Login = defineComponent({ ]} >
- - + - +