v3.0.3,新增了表格组件一些功能,新增页底配置

This commit is contained in:
chuan_wuhao 2022-12-30 11:21:33 +08:00
parent adad70c811
commit a588be93ea
11 changed files with 117 additions and 22 deletions

9
cfg.ts
View File

@ -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',
/** /**
* *
* *

View File

@ -96,7 +96,7 @@ const TableSetting = defineComponent({
/** /**
* *
* @param idx * @param idx
* *
* @remark * @remark
*/ */

View File

@ -1,6 +1,12 @@
.ray-table__setting, .ray-table {
.ray-table-icon { & .ray-table__setting,
cursor: pointer; & .ray-table-icon {
outline: none; cursor: pointer;
border: none; outline: none;
border: none;
}
& .n-card-header .n-card-header__main {
padding-right: var(--ray-table-header-space);
}
} }

View File

@ -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>
) )

View File

@ -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

View File

@ -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;
}
} }

View File

@ -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>

View File

@ -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 =

View File

@ -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 = [

View File

@ -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}
/> />

View File

@ -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,