fix: 取消保存后自动排序

pull/40/head
郑伟彬 2023-11-03 15:30:18 +08:00
parent 5f2884010f
commit 2d14c42c9c
2 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,7 @@
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "never"
"source.organizeImports": false
},
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },

View File

@ -1,10 +1,10 @@
import type { ButtonProps as AntdButtonProps } from '@/components/Button'
import type { TableActionType } from '@/components/Table/src/types/table'
import type { NamePath, RuleObject } from 'ant-design-vue/lib/form/interface'
import type { RowProps } from 'ant-design-vue/lib/grid/Row'
import type { CSSProperties, VNode } from 'vue'
import type { RowProps } from 'ant-design-vue/lib/grid/Row'
import type { FormItem } from './formItem'
import type { ColEx, ComponentType } from './index'
import type { ButtonProps as AntdButtonProps } from '@/components/Button'
import type { TableActionType } from '@/components/Table/src/types/table'
export type FieldMapToTime = [string, [string, string], (string | [string, string])?][]
@ -267,7 +267,7 @@ export interface HelpComponentProps {
export interface InputAttribute {
// 输入框默认输入的最大长度
maxlength?: number | string,
maxlength?: number
// 是否显示输入的最大长度
showCount?: boolean
}