mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
v3.0.3,新增了表格组件一些功能,新增页底配置
This commit is contained in:
parent
adad70c811
commit
a588be93ea
9
cfg.ts
9
cfg.ts
@ -3,6 +3,7 @@ import path from 'node:path'
|
|||||||
import { HTMLTitlePlugin, buildOptions } from './vite-plugin/index'
|
import { HTMLTitlePlugin, buildOptions } from './vite-plugin/index'
|
||||||
|
|
||||||
import type { ServerOptions, BuildOptions, AliasOptions } from 'vite'
|
import type { ServerOptions, BuildOptions, AliasOptions } from 'vite'
|
||||||
|
import type { VNodeChild } from 'vue'
|
||||||
|
|
||||||
export interface HTMLTitle {
|
export interface HTMLTitle {
|
||||||
name: string
|
name: string
|
||||||
@ -14,9 +15,17 @@ export interface Config {
|
|||||||
buildOptions: (mode: string) => BuildOptions
|
buildOptions: (mode: string) => BuildOptions
|
||||||
alias: AliasOptions
|
alias: AliasOptions
|
||||||
title: HTMLTitle
|
title: HTMLTitle
|
||||||
|
copyright?: string | number | VNodeChild
|
||||||
}
|
}
|
||||||
|
|
||||||
const config: Config = {
|
const config: Config = {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 版权信息
|
||||||
|
*
|
||||||
|
* 也可以当作页底设置, 看实际业务需求
|
||||||
|
*/
|
||||||
|
copyright: 'Copyright © 2022-present Ray',
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* 浏览器标题
|
* 浏览器标题
|
||||||
|
@ -96,7 +96,7 @@ const TableSetting = defineComponent({
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param idx 索隐
|
* @param idx 索引
|
||||||
*
|
*
|
||||||
* @remark 动态设置列宽度
|
* @remark 动态设置列宽度
|
||||||
*/
|
*/
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
.ray-table__setting,
|
.ray-table {
|
||||||
.ray-table-icon {
|
& .ray-table__setting,
|
||||||
|
& .ray-table-icon {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: none;
|
outline: none;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& .n-card-header .n-card-header__main {
|
||||||
|
padding-right: var(--ray-table-header-space);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -44,6 +44,13 @@ const RayTable = defineComponent({
|
|||||||
showMenu: false,
|
showMenu: false,
|
||||||
})
|
})
|
||||||
let prevRightClickIndex = -1
|
let prevRightClickIndex = -1
|
||||||
|
const cssVars = computed(() => {
|
||||||
|
const cssVar = {
|
||||||
|
'--ray-table-header-space': props.tableHeaderSpace,
|
||||||
|
}
|
||||||
|
|
||||||
|
return cssVar
|
||||||
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -179,11 +186,12 @@ const RayTable = defineComponent({
|
|||||||
handleRightMenuSelect,
|
handleRightMenuSelect,
|
||||||
handleExportPositive,
|
handleExportPositive,
|
||||||
handlePrintPositive,
|
handlePrintPositive,
|
||||||
|
cssVars,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<NCard bordered={false}>
|
<NCard class="ray-table" bordered={this.bordered} style={[this.cssVars]}>
|
||||||
{{
|
{{
|
||||||
default: () => (
|
default: () => (
|
||||||
<>
|
<>
|
||||||
@ -220,7 +228,7 @@ const RayTable = defineComponent({
|
|||||||
<NSpace align="center">
|
<NSpace align="center">
|
||||||
{/* 打印输出操作 */}
|
{/* 打印输出操作 */}
|
||||||
<TableAction
|
<TableAction
|
||||||
icon="print"
|
icon={this.printIcon}
|
||||||
tooltip={this.printTooltip}
|
tooltip={this.printTooltip}
|
||||||
positiveText={this.printPositiveText}
|
positiveText={this.printPositiveText}
|
||||||
negativeText={this.printNegativeText}
|
negativeText={this.printNegativeText}
|
||||||
@ -228,7 +236,7 @@ const RayTable = defineComponent({
|
|||||||
/>
|
/>
|
||||||
{/* 输出为Excel表格 */}
|
{/* 输出为Excel表格 */}
|
||||||
<TableAction
|
<TableAction
|
||||||
icon="export_excel"
|
icon={this.exportExcelIcon}
|
||||||
tooltip={this.exportTooltip}
|
tooltip={this.exportTooltip}
|
||||||
positiveText={this.exportPositiveText}
|
positiveText={this.exportPositiveText}
|
||||||
negativeText={this.exportNegativeText}
|
negativeText={this.exportNegativeText}
|
||||||
@ -242,6 +250,7 @@ const RayTable = defineComponent({
|
|||||||
) : (
|
) : (
|
||||||
''
|
''
|
||||||
),
|
),
|
||||||
|
footer: () => this.$slots.tableFooter?.(),
|
||||||
}}
|
}}
|
||||||
</NCard>
|
</NCard>
|
||||||
)
|
)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
import { dataTableProps } from 'naive-ui'
|
import { dataTableProps } from 'naive-ui'
|
||||||
|
|
||||||
import type { PropType, VNode } from 'vue'
|
import type { PropType, VNode, VNodeChild } from 'vue'
|
||||||
import type { DropdownMixedOption } from './type'
|
import type { DropdownMixedOption } from './type'
|
||||||
import type PrintConfiguration from 'print-js'
|
import type PrintConfiguration from 'print-js'
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ const rayTableProps = {
|
|||||||
*
|
*
|
||||||
* 可以自定义渲染
|
* 可以自定义渲染
|
||||||
*/
|
*/
|
||||||
type: String,
|
type: [String, Object] as PropType<string | VNodeChild>,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
action: {
|
action: {
|
||||||
@ -167,6 +167,46 @@ const rayTableProps = {
|
|||||||
>,
|
>,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
},
|
},
|
||||||
|
printIcon: {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 打印按钮自定义图标名称
|
||||||
|
*
|
||||||
|
* 需要结合 `RayIcon` 组件使用
|
||||||
|
*
|
||||||
|
* 如果需要自定义图标, 则需要在 `src/icons` 中添加后使用
|
||||||
|
*/
|
||||||
|
type: String,
|
||||||
|
default: 'print',
|
||||||
|
},
|
||||||
|
exportExcelIcon: {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 导出为表格按钮自定义图标名称
|
||||||
|
*
|
||||||
|
* 需要结合 `RayIcon` 组件使用
|
||||||
|
*
|
||||||
|
* 如果需要自定义图标, 则需要在 `src/icons` 中添加后使用
|
||||||
|
*/
|
||||||
|
type: String,
|
||||||
|
default: 'export_excel',
|
||||||
|
},
|
||||||
|
tableHeaderSpace: {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 表格头部操作栏, 主要操作栏与额外操作栏之间间隔
|
||||||
|
*/
|
||||||
|
type: String,
|
||||||
|
default: '10px',
|
||||||
|
},
|
||||||
|
bordered: {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 表格边框
|
||||||
|
*/
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
} as const
|
} as const
|
||||||
|
|
||||||
export default rayTableProps
|
export default rayTableProps
|
||||||
|
@ -9,4 +9,9 @@
|
|||||||
height: var(--layout-content-height);
|
height: var(--layout-content-height);
|
||||||
padding: calc($layoutRouterViewContainer / 2);
|
padding: calc($layoutRouterViewContainer / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& .layout-footer {
|
||||||
|
padding: 24px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
import './index.scss'
|
import './index.scss'
|
||||||
import { NLayout, NLayoutContent } from 'naive-ui'
|
|
||||||
|
import { NLayout, NLayoutContent, NLayoutFooter } from 'naive-ui'
|
||||||
import RayTransitionComponent from '@/components/RayTransitionComponent/index.vue'
|
import RayTransitionComponent from '@/components/RayTransitionComponent/index.vue'
|
||||||
import LayoutMenu from './components/Menu/index'
|
import LayoutMenu from './components/Menu/index'
|
||||||
import SiderBar from './components/SiderBar/index'
|
import SiderBar from './components/SiderBar/index'
|
||||||
import MenuTag from './components/MenuTag/index'
|
import MenuTag from './components/MenuTag/index'
|
||||||
|
|
||||||
import { useSetting } from '@/store'
|
import { useSetting } from '@/store'
|
||||||
|
|
||||||
const Layout = defineComponent({
|
const Layout = defineComponent({
|
||||||
name: 'Layout',
|
name: 'Layout',
|
||||||
props: {},
|
|
||||||
setup() {
|
setup() {
|
||||||
const menuStore = useSetting()
|
const menuStore = useSetting()
|
||||||
const { height: windowHeight } = useWindowSize()
|
const { height: windowHeight } = useWindowSize()
|
||||||
@ -29,12 +30,16 @@ const Layout = defineComponent({
|
|||||||
|
|
||||||
return cssVar
|
return cssVar
|
||||||
})
|
})
|
||||||
|
const {
|
||||||
|
layout: { copyright },
|
||||||
|
} = __APP_CFG__
|
||||||
|
|
||||||
return {
|
return {
|
||||||
windowHeight,
|
windowHeight,
|
||||||
modelReloadRoute,
|
modelReloadRoute,
|
||||||
modelMenuTagSwitch,
|
modelMenuTagSwitch,
|
||||||
cssVarsRef,
|
cssVarsRef,
|
||||||
|
copyright,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
@ -53,6 +58,11 @@ const Layout = defineComponent({
|
|||||||
nativeScrollbar={false}
|
nativeScrollbar={false}
|
||||||
>
|
>
|
||||||
{this.modelReloadRoute ? <RayTransitionComponent /> : ''}
|
{this.modelReloadRoute ? <RayTransitionComponent /> : ''}
|
||||||
|
{this.copyright ? (
|
||||||
|
<div class="layout-footer">{this.copyright}</div>
|
||||||
|
) : (
|
||||||
|
''
|
||||||
|
)}
|
||||||
</NLayoutContent>
|
</NLayoutContent>
|
||||||
</NLayout>
|
</NLayout>
|
||||||
</NLayout>
|
</NLayout>
|
||||||
|
6
src/types/index.d.ts
vendored
6
src/types/index.d.ts
vendored
@ -11,17 +11,21 @@ import type {
|
|||||||
MenuGroupOption,
|
MenuGroupOption,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import type { ECharts } from 'echarts/core'
|
import type { ECharts } from 'echarts/core'
|
||||||
|
import type { VNodeChild } from 'vue'
|
||||||
|
|
||||||
export global {
|
export global {
|
||||||
declare type Recordable<T = unknown> = Record<string, T>
|
declare type Recordable<T = unknown> = Record<string, T>
|
||||||
|
|
||||||
declare const __APP_INFO__: {
|
declare const __APP_CFG__: {
|
||||||
pkg: {
|
pkg: {
|
||||||
name: string
|
name: string
|
||||||
version: string
|
version: string
|
||||||
dependencies: Recordable<string>
|
dependencies: Recordable<string>
|
||||||
devDependencies: Recordable<string>
|
devDependencies: Recordable<string>
|
||||||
}
|
}
|
||||||
|
layout: {
|
||||||
|
copyright: string | number | VNodeChild
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
declare type NaiveMenuOptions =
|
declare type NaiveMenuOptions =
|
||||||
|
@ -16,7 +16,7 @@ interface TemplateOptions {
|
|||||||
const RelyAbout = defineComponent({
|
const RelyAbout = defineComponent({
|
||||||
name: 'RelyAbout',
|
name: 'RelyAbout',
|
||||||
setup() {
|
setup() {
|
||||||
const { pkg } = __APP_INFO__
|
const { pkg } = __APP_CFG__
|
||||||
const { dependencies, devDependencies, name, version } = pkg
|
const { dependencies, devDependencies, name, version } = pkg
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
|
@ -218,11 +218,18 @@ const TableView = defineComponent({
|
|||||||
</NCard>
|
</NCard>
|
||||||
<NCard title="基础使用" style={['margin-top: 18px']}>
|
<NCard title="基础使用" style={['margin-top: 18px']}>
|
||||||
<RayTable
|
<RayTable
|
||||||
title="基础表格"
|
title="基础使用"
|
||||||
data={this.tableData}
|
data={this.tableData}
|
||||||
columns={this.baseColumns}
|
columns={this.baseColumns}
|
||||||
action={false}
|
action={false}
|
||||||
/>
|
pagination={{
|
||||||
|
pageSize: 10,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
tableFooter: () => '表格的底部内容区域,有时候你可能会用上',
|
||||||
|
}}
|
||||||
|
</RayTable>
|
||||||
</NCard>
|
</NCard>
|
||||||
<NCard style={['margin-top: 18px']}>
|
<NCard style={['margin-top: 18px']}>
|
||||||
{{
|
{{
|
||||||
@ -241,7 +248,10 @@ const TableView = defineComponent({
|
|||||||
),
|
),
|
||||||
default: () => (
|
default: () => (
|
||||||
<RayTable
|
<RayTable
|
||||||
title="带有拓展功能的表格"
|
title={h(NInput, {
|
||||||
|
placeholder: '请输入检索条件',
|
||||||
|
style: ['width: 200px'],
|
||||||
|
})}
|
||||||
data={this.tableData}
|
data={this.tableData}
|
||||||
v-model:columns={this.actionColumns}
|
v-model:columns={this.actionColumns}
|
||||||
/>
|
/>
|
||||||
|
@ -4,9 +4,13 @@ import config from './cfg'
|
|||||||
const pkg = require('./package.json')
|
const pkg = require('./package.json')
|
||||||
|
|
||||||
const { dependencies, devDependencies, name, version } = pkg
|
const { dependencies, devDependencies, name, version } = pkg
|
||||||
|
const { server, buildOptions, alias, title, copyright } = config
|
||||||
|
|
||||||
const __APP_INFO__ = {
|
const __APP_CFG__ = {
|
||||||
pkg: { dependencies, devDependencies, name, version },
|
pkg: { dependencies, devDependencies, name, version },
|
||||||
|
layout: {
|
||||||
|
copyright,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@ -28,11 +32,9 @@ import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
|||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig(async ({ mode }) => {
|
export default defineConfig(async ({ mode }) => {
|
||||||
const { server, buildOptions, alias, title } = config
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
define: {
|
define: {
|
||||||
__APP_INFO__: JSON.stringify(__APP_INFO__),
|
__APP_CFG__: JSON.stringify(__APP_CFG__),
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: alias,
|
alias: alias,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user