mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat(table): 支持type: index的序号列
This commit is contained in:
parent
6e2b5aea47
commit
6f2c6b151d
@ -8,7 +8,12 @@
|
|||||||
:prop="config.prop"
|
:prop="config.prop"
|
||||||
>
|
>
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<TMagicForm v-if="config.type && editState[scope.$index]" label-width="0" :model="editState[scope.$index]">
|
<div v-if="config.type === 'index'">
|
||||||
|
{{
|
||||||
|
config.pageIndex && config.pageSize ? config.pageIndex * config.pageSize + scope.$index + 1 : scope.$index + 1
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<TMagicForm v-else-if="config.type && editState[scope.$index]" label-width="0" :model="editState[scope.$index]">
|
||||||
<m-form-container
|
<m-form-container
|
||||||
:prop="config.prop"
|
:prop="config.prop"
|
||||||
:rules="config.rules"
|
:rules="config.rules"
|
||||||
|
@ -34,6 +34,8 @@ export interface ColumnActionConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ColumnConfig<T = any> {
|
export interface ColumnConfig<T = any> {
|
||||||
|
pageIndex?: number;
|
||||||
|
pageSize?: number;
|
||||||
form?: FormConfig;
|
form?: FormConfig;
|
||||||
rules?: any;
|
rules?: any;
|
||||||
values?: FormValue;
|
values?: FormValue;
|
||||||
@ -43,7 +45,7 @@ export interface ColumnConfig<T = any> {
|
|||||||
fixed?: 'left' | 'right' | boolean;
|
fixed?: 'left' | 'right' | boolean;
|
||||||
width?: number | string;
|
width?: number | string;
|
||||||
actions?: ColumnActionConfig[];
|
actions?: ColumnActionConfig[];
|
||||||
type?: 'popover' | 'expand' | 'component' | string | ((value: any, row: T) => string);
|
type?: 'popover' | 'expand' | 'component' | 'index' | string | ((value: any, row: T) => string);
|
||||||
text?: string;
|
text?: string;
|
||||||
prop?: string;
|
prop?: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user